diff --git a/.gitignore b/.gitignore index d5b3e58..c50555e 100644 --- a/.gitignore +++ b/.gitignore @@ -88,3 +88,10 @@ DerivedDataCache/* /AIGC/AIGC/Include /AIGC/AIGC/Lib /AIGC/AIGC +/ProjectFish/ProjectFish.uproject.DotSettings.user +/ProjectFish/.idea +/ProjectFish/.vs +/ProjectFish/Binaries +/ProjectFish/DerivedDataCache +/ProjectFish/Intermediate +/ProjectFish/ProjectFish.sln diff --git a/ProjectFish/.vsconfig b/ProjectFish/.vsconfig new file mode 100644 index 0000000..b3c233d --- /dev/null +++ b/ProjectFish/.vsconfig @@ -0,0 +1,15 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.Net.Component.4.6.2.TargetingPack", + "Microsoft.VisualStudio.Component.Unreal.Workspace", + "Microsoft.VisualStudio.Component.VC.14.38.17.8.ATL", + "Microsoft.VisualStudio.Component.VC.14.38.17.8.x86.x64", + "Microsoft.VisualStudio.Component.VC.Tools.x86.x64", + "Microsoft.VisualStudio.Component.Windows11SDK.22621", + "Microsoft.VisualStudio.Workload.CoreEditor", + "Microsoft.VisualStudio.Workload.ManagedDesktop", + "Microsoft.VisualStudio.Workload.NativeDesktop", + "Microsoft.VisualStudio.Workload.NativeGame" + ] +} diff --git a/ProjectFish/Config/DefaultEditor.ini b/ProjectFish/Config/DefaultEditor.ini new file mode 100644 index 0000000..8a83989 --- /dev/null +++ b/ProjectFish/Config/DefaultEditor.ini @@ -0,0 +1,8 @@ +[UnrealEd.SimpleMap] +SimpleMapName=/Game/TopDown/Maps/TopDownExampleMap + +[EditoronlyBP] +bAllowClassAndBlueprintPinMatching=true +bReplaceBlueprintWithClass= true +bDontLoadBlueprintOutsideEditor= true +bBlueprintIsNotBlueprintType= true \ No newline at end of file diff --git a/ProjectFish/Config/DefaultEditorPerProjectUserSettings.ini b/ProjectFish/Config/DefaultEditorPerProjectUserSettings.ini new file mode 100644 index 0000000..fcdf97e --- /dev/null +++ b/ProjectFish/Config/DefaultEditorPerProjectUserSettings.ini @@ -0,0 +1,2 @@ +[ContentBrowser] +ContentBrowserTab1.SelectedPaths=/Game/TopDown \ No newline at end of file diff --git a/ProjectFish/Config/DefaultEngine.ini b/ProjectFish/Config/DefaultEngine.ini new file mode 100644 index 0000000..1113d63 --- /dev/null +++ b/ProjectFish/Config/DefaultEngine.ini @@ -0,0 +1,92 @@ +[/Script/EngineSettings.GameMapsSettings] +GameDefaultMap=/Game/TopDown/Maps/TopDownMap.TopDownMap +EditorStartupMap=/Game/Maps/Dabaza.Dabaza +GlobalDefaultGameMode="/Script/ProjectFish.ProjectFishGameMode" + +[/Script/Engine.RendererSettings] +r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=True +r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange=true +r.AllowStaticLighting=False + +r.GenerateMeshDistanceFields=True + +r.DynamicGlobalIlluminationMethod=1 + +r.ReflectionMethod=1 + +r.SkinCache.CompileShaders=True + +r.RayTracing=True + +r.Shadow.Virtual.Enable=1 + +r.DefaultFeature.LocalExposure.HighlightContrastScale=0.8 + +r.DefaultFeature.LocalExposure.ShadowContrastScale=0.8 + +[/Script/WindowsTargetPlatform.WindowsTargetSettings] +DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 +DefaultGraphicsRHI=DefaultGraphicsRHI_DX12 +-D3D12TargetedShaderFormats=PCD3D_SM5 ++D3D12TargetedShaderFormats=PCD3D_SM6 +-D3D11TargetedShaderFormats=PCD3D_SM5 ++D3D11TargetedShaderFormats=PCD3D_SM5 +Compiler=Default +AudioSampleRate=48000 +AudioCallbackBufferFrameSize=1024 +AudioNumBuffersToEnqueue=1 +AudioMaxChannels=0 +AudioNumSourceWorkers=4 +SpatializationPlugin= +SourceDataOverridePlugin= +ReverbPlugin= +OcclusionPlugin= +CompressionOverrides=(bOverrideCompressionTimes=False,DurationThreshold=5.000000,MaxNumRandomBranches=0,SoundCueQualityIndex=0) +CacheSizeKB=65536 +MaxChunkSizeOverrideKB=0 +bResampleForDevice=False +MaxSampleRate=48000.000000 +HighSampleRate=32000.000000 +MedSampleRate=24000.000000 +LowSampleRate=12000.000000 +MinSampleRate=8000.000000 +CompressionQualityModifier=1.000000 +AutoStreamingThreshold=0.000000 +SoundCueCookQualityIndex=-1 + +[/Script/LinuxTargetPlatform.LinuxTargetSettings] +-TargetedRHIs=SF_VULKAN_SM5 ++TargetedRHIs=SF_VULKAN_SM6 + +[/Script/HardwareTargeting.HardwareTargetingSettings] +TargetedHardwareClass=Desktop +AppliedTargetedHardwareClass=Desktop +DefaultGraphicsPerformance=Maximum +AppliedDefaultGraphicsPerformance=Maximum + +[/Script/Engine.Engine] ++ActiveGameNameRedirects=(OldGameName="TP_TopDown",NewGameName="/Script/ProjectFish") ++ActiveGameNameRedirects=(OldGameName="/Script/TP_TopDown",NewGameName="/Script/ProjectFish") ++ActiveClassRedirects=(OldClassName="TP_TopDownPlayerController",NewClassName="ProjectFishPlayerController") ++ActiveClassRedirects=(OldClassName="TP_TopDownGameMode",NewClassName="ProjectFishGameMode") ++ActiveClassRedirects=(OldClassName="TP_TopDownCharacter",NewClassName="ProjectFishCharacter") + +[/Script/AndroidFileServerEditor.AndroidFileServerRuntimeSettings] +bEnablePlugin=True +bAllowNetworkConnection=True +SecurityToken=880B6F2D496AEE229F7ED78E8D42E517 +bIncludeInShipping=False +bAllowExternalStartInShipping=False +bCompileAFSProject=False +bUseCompression=False +bLogFiles=False +bReportStats=False +ConnectionType=USBOnly +bUseManualIPAddress=False +ManualIPAddress= + + +[CoreRedirects] ++ClassRedirects=(OldName="/Script/ProjectFish.Skill_Pull",NewName="/Script/ProjectFish.SkillEffect_Damage") ++ClassRedirects=(OldName="/Script/ProjectFish.SkillEffect_Pull",NewName="/Script/ProjectFish.SkillEffect_Damage") + diff --git a/ProjectFish/Config/DefaultGame.ini b/ProjectFish/Config/DefaultGame.ini new file mode 100644 index 0000000..acf0bda --- /dev/null +++ b/ProjectFish/Config/DefaultGame.ini @@ -0,0 +1,7 @@ +[/Script/EngineSettings.GeneralProjectSettings] +ProjectID=DB09F3F6471150D5B10B4D9901A6E3BB +ProjectName=Top Down Game Template + +[/Script/ProjectFish.ProjectFishCharacter] +FixedCameraPitch=-45.0 +FixedCameraDistance=1500.0 diff --git a/ProjectFish/Config/DefaultGameplayTags.ini b/ProjectFish/Config/DefaultGameplayTags.ini new file mode 100644 index 0000000..a501148 --- /dev/null +++ b/ProjectFish/Config/DefaultGameplayTags.ini @@ -0,0 +1,14 @@ +[/Script/GameplayTags.GameplayTagsSettings] +ImportTagsFromConfig=True +WarnOnInvalidTags=True +ClearInvalidTags=False +AllowEditorTagUnloading=True +AllowGameTagUnloading=False +FastReplication=False +bDynamicReplication=False +InvalidTagCharacters="\"\'," ++GameplayTagRedirects=(OldTagName="Skill.PoserPull",NewTagName="Skill.PowerPull") +NumBitsForContainerSize=6 +NetIndexFirstBitSegment=16 ++GameplayTagList=(Tag="Skill.PowerPull",DevComment="") + diff --git a/ProjectFish/Config/DefaultInput.ini b/ProjectFish/Config/DefaultInput.ini new file mode 100644 index 0000000..e9f5815 --- /dev/null +++ b/ProjectFish/Config/DefaultInput.ini @@ -0,0 +1,84 @@ +[/Script/Engine.InputSettings] +-AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) +-AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) +-AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) +-AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.25,Exponent=1.f,Sensitivity=1.f)) +-AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) +-AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) +-AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.f,Exponent=1.f,Sensitivity=0.07f)) ++AxisConfig=(AxisKeyName="Mouse2D",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_LeftX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_LeftY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_RightX",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_RightY",AxisProperties=(DeadZone=0.250000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MouseX",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MouseY",AxisProperties=(DeadZone=0.000000,Sensitivity=0.070000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MouseWheelAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_LeftTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_RightTriggerAxis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_Special_Left_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Gamepad_Special_Left_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="Vive_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="MixedReality_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="OculusTouch_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Left_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Grip_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Trigger_Axis",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Thumbstick_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_X",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Y",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) ++AxisConfig=(AxisKeyName="ValveIndex_Right_Trackpad_Force",AxisProperties=(DeadZone=0.000000,Sensitivity=1.000000,Exponent=1.000000,bInvert=False)) +bAltEnterTogglesFullscreen=True +bF11TogglesFullscreen=True +bUseMouseForTouch=False +bEnableMouseSmoothing=True +bEnableFOVScaling=True +bCaptureMouseOnLaunch=True +bEnableLegacyInputScales=True +bEnableMotionControls=True +bFilterInputByPlatformUser=False +bShouldFlushPressedKeysOnViewportFocusLost=True +bAlwaysShowTouchInterface=False +bShowConsoleOnFourFingerTap=True +bEnableGestureRecognizer=False +bUseAutocorrect=False +DefaultViewportMouseCaptureMode=CapturePermanently_IncludingInitialMouseDown +DefaultViewportMouseLockMode=LockOnCapture +FOVScale=0.011110 +DoubleClickTime=0.200000 +DefaultPlayerInputClass=/Script/EnhancedInput.EnhancedPlayerInput +DefaultInputComponentClass=/Script/EnhancedInput.EnhancedInputComponent +DefaultTouchInterface=None +-ConsoleKeys=Tilde ++ConsoleKeys=Tilde + diff --git a/ProjectFish/Content/Characters/BP_Dabaza_Pawn.uasset b/ProjectFish/Content/Characters/BP_Dabaza_Pawn.uasset new file mode 100644 index 0000000..957108a Binary files /dev/null and b/ProjectFish/Content/Characters/BP_Dabaza_Pawn.uasset differ diff --git a/ProjectFish/Content/Characters/BP_DeepFish.uasset b/ProjectFish/Content/Characters/BP_DeepFish.uasset new file mode 100644 index 0000000..876ede7 Binary files /dev/null and b/ProjectFish/Content/Characters/BP_DeepFish.uasset differ diff --git a/ProjectFish/Content/Characters/BP_PawnEntity.uasset b/ProjectFish/Content/Characters/BP_PawnEntity.uasset new file mode 100644 index 0000000..7c9a264 Binary files /dev/null and b/ProjectFish/Content/Characters/BP_PawnEntity.uasset differ diff --git a/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset b/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset new file mode 100644 index 0000000..94ab600 Binary files /dev/null and b/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Animations/Jog_Fwd.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Animations/Jog_Fwd.uasset new file mode 100644 index 0000000..8b159a0 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Animations/Jog_Fwd.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_Latex_Black.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_Latex_Black.uasset new file mode 100644 index 0000000..cd2963d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_Latex_Black.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige.uasset new file mode 100644 index 0000000..0995271 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige_Logo.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige_Logo.uasset new file mode 100644 index 0000000..2817aa2 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_ShinyPlastic_Beige_Logo.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_SoftMetal.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_SoftMetal.uasset new file mode 100644 index 0000000..54f9425 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/Layers/ML_SoftMetal.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_Body.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_Body.uasset new file mode 100644 index 0000000..d679443 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_Body.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_ChestLogo.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_ChestLogo.uasset new file mode 100644 index 0000000..6fde6ec Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Materials/M_MannequinUE4_ChestLogo.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin.uasset new file mode 100644 index 0000000..57ad946 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_PhysicsAsset.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_PhysicsAsset.uasset new file mode 100644 index 0000000..fe1f573 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_PhysicsAsset.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_Skeleton.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_Skeleton.uasset new file mode 100644 index 0000000..c0bf391 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Meshes/SK_Mannequin_Skeleton.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/IK_UE4_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/IK_UE4_Mannequin.uasset new file mode 100644 index 0000000..ad3a37d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/IK_UE4_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE4Manny_UE5Manny.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE4Manny_UE5Manny.uasset new file mode 100644 index 0000000..daf7a99 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE4Manny_UE5Manny.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE5Manny_UE4Manny.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE5Manny_UE4Manny.uasset new file mode 100644 index 0000000..2358b70 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Rigs/RTG_UE5Manny_UE4Manny.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01.uasset new file mode 100644 index 0000000..f941b70 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01_N.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01_N.uasset new file mode 100644 index 0000000..c129c35 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Aluminum01_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_D.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_D.uasset new file mode 100644 index 0000000..64b4d0e Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_D.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_N.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_N.uasset new file mode 100644 index 0000000..2be4b1d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_ML_Rubber_Blue_01_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin_MAT_MASKA.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin_MAT_MASKA.uasset new file mode 100644 index 0000000..e8d10e4 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin_MAT_MASKA.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin__normals.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin__normals.uasset new file mode 100644 index 0000000..b26f9bf Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UE4_Mannequin__normals.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_Mask.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_Mask.uasset new file mode 100644 index 0000000..e28a02b Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_Mask.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_N_TGA.uasset b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_N_TGA.uasset new file mode 100644 index 0000000..3704f5c Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequin_UE4/Textures/T_UELogo_N_TGA.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Manny.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Manny.uasset new file mode 100644 index 0000000..a5c81fe Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Manny.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Quinn.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Quinn.uasset new file mode 100644 index 0000000..98ff9f3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/ABP_Quinn.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/BS_MM_WalkRun.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/BS_MM_WalkRun.uasset new file mode 100644 index 0000000..8eb2b05 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/BS_MM_WalkRun.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Fall_Loop.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Fall_Loop.uasset new file mode 100644 index 0000000..c25a795 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Fall_Loop.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Idle.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Idle.uasset new file mode 100644 index 0000000..a288053 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Idle.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Jump.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Jump.uasset new file mode 100644 index 0000000..d9b4b38 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Jump.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Land.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Land.uasset new file mode 100644 index 0000000..0075b05 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Land.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Run_Fwd.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Run_Fwd.uasset new file mode 100644 index 0000000..9f7df17 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Run_Fwd.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_T_Pose.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_T_Pose.uasset new file mode 100644 index 0000000..5580f59 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_T_Pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_Fwd.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_Fwd.uasset new file mode 100644 index 0000000..ab754d9 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_Fwd.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_InPlace.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_InPlace.uasset new file mode 100644 index 0000000..dd9cb4a Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Manny/MM_Walk_InPlace.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/BS_MF_Unarmed_WalkRun.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/BS_MF_Unarmed_WalkRun.uasset new file mode 100644 index 0000000..0f36a97 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/BS_MF_Unarmed_WalkRun.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Idle.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Idle.uasset new file mode 100644 index 0000000..44c15db Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Idle.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Run_Fwd.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Run_Fwd.uasset new file mode 100644 index 0000000..510126d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Run_Fwd.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Walk_Fwd.uasset b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Walk_Fwd.uasset new file mode 100644 index 0000000..2c4a8e7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Animations/Quinn/MF_Walk_Fwd.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Functions/CA_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/CA_Mannequin.uasset new file mode 100644 index 0000000..18a90f8 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/CA_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ChromaticCurve.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ChromaticCurve.uasset new file mode 100644 index 0000000..7eabed7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ChromaticCurve.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_Diffraction.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_Diffraction.uasset new file mode 100644 index 0000000..658b578 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_Diffraction.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_logo3layers.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_logo3layers.uasset new file mode 100644 index 0000000..28c8267 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/MF_logo3layers.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ML_BaseColorFallOff.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ML_BaseColorFallOff.uasset new file mode 100644 index 0000000..a8905ed Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Functions/ML_BaseColorFallOff.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_01.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_01.uasset new file mode 100644 index 0000000..0c797f9 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_01.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_02.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_02.uasset new file mode 100644 index 0000000..d83936b Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Manny/MI_Manny_02.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_01.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_01.uasset new file mode 100644 index 0000000..5ff72a5 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_01.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_02.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_02.uasset new file mode 100644 index 0000000..edcc292 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/Instances/Quinn/MI_Quinn_02.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Materials/M_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Materials/M_Mannequin.uasset new file mode 100644 index 0000000..9ae96ec Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Materials/M_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/Mannequin_LODSettings.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/Mannequin_LODSettings.uasset new file mode 100644 index 0000000..5d82e00 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/Mannequin_LODSettings.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny.uasset new file mode 100644 index 0000000..48d74be Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny_Simple.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny_Simple.uasset new file mode 100644 index 0000000..2525a43 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Manny_Simple.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn.uasset new file mode 100644 index 0000000..1a330bc Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn_Simple.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn_Simple.uasset new file mode 100644 index 0000000..8bdf2e0 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/SKM_Quinn_Simple.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Meshes/SK_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Meshes/SK_Mannequin.uasset new file mode 100644 index 0000000..5e06618 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Meshes/SK_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Manny_PostProcess.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Manny_PostProcess.uasset new file mode 100644 index 0000000..60a8181 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Manny_PostProcess.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Quinn_PostProcess.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Quinn_PostProcess.uasset new file mode 100644 index 0000000..89edb4c Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/ABP_Quinn_PostProcess.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_BasicFootIK.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_BasicFootIK.uasset new file mode 100644 index 0000000..6fc28a9 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_BasicFootIK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Body.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Body.uasset new file mode 100644 index 0000000..a66c665 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Body.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Procedural.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Procedural.uasset new file mode 100644 index 0000000..ecf2b04 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/CR_Mannequin_Procedural.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/IK_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/IK_Mannequin.uasset new file mode 100644 index 0000000..de5f411 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/IK_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/PA_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/PA_Mannequin.uasset new file mode 100644 index 0000000..30d19d7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/PA_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_anim.uasset new file mode 100644 index 0000000..b9daf8a Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_pose.uasset new file mode 100644 index 0000000..d9143da Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_anim.uasset new file mode 100644 index 0000000..e3ad612 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_pose.uasset new file mode 100644 index 0000000..bb87fbd Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_calf_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_anim.uasset new file mode 100644 index 0000000..248303a Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_pose.uasset new file mode 100644 index 0000000..ff54c12 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_anim.uasset new file mode 100644 index 0000000..4c9173e Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_pose.uasset new file mode 100644 index 0000000..c8120a2 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_clavicle_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_anim.uasset new file mode 100644 index 0000000..b0db2b3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_pose.uasset new file mode 100644 index 0000000..6861ec7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_anim.uasset new file mode 100644 index 0000000..6f7b836 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_pose.uasset new file mode 100644 index 0000000..cb7301f Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_foot_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_anim.uasset new file mode 100644 index 0000000..08003a1 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_pose.uasset new file mode 100644 index 0000000..e3c6583 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_anim.uasset new file mode 100644 index 0000000..2967fed Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_pose.uasset new file mode 100644 index 0000000..eb64b4a Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_hand_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_anim.uasset new file mode 100644 index 0000000..61b71ac Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_pose.uasset new file mode 100644 index 0000000..00ac326 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_anim.uasset new file mode 100644 index 0000000..9f83f7e Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_pose.uasset new file mode 100644 index 0000000..2d472be Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_lowerarm_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_anim.uasset new file mode 100644 index 0000000..f1f66de Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_pose.uasset new file mode 100644 index 0000000..116157f Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_anim.uasset new file mode 100644 index 0000000..65ef30d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_pose.uasset new file mode 100644 index 0000000..2233d7e Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_thigh_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_anim.uasset new file mode 100644 index 0000000..f7c9bd8 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_pose.uasset new file mode 100644 index 0000000..71944b4 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_anim.uasset new file mode 100644 index 0000000..e542f68 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_pose.uasset new file mode 100644 index 0000000..1a19e07 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Manny/Manny_upperarm_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_anim.uasset new file mode 100644 index 0000000..3afe5d3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_pose.uasset new file mode 100644 index 0000000..ac48576 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_anim.uasset new file mode 100644 index 0000000..91cbdfe Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_pose.uasset new file mode 100644 index 0000000..840ef95 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_calf_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_anim.uasset new file mode 100644 index 0000000..7ed962c Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_pose.uasset new file mode 100644 index 0000000..56ab7ae Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_anim.uasset new file mode 100644 index 0000000..9c29f27 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_pose.uasset new file mode 100644 index 0000000..9ae54c3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_clavicle_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_anim.uasset new file mode 100644 index 0000000..3abe558 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_pose.uasset new file mode 100644 index 0000000..a08fa53 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_anim.uasset new file mode 100644 index 0000000..5522a14 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_pose.uasset new file mode 100644 index 0000000..59b34b1 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_foot_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_anim.uasset new file mode 100644 index 0000000..1a04a03 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_pose.uasset new file mode 100644 index 0000000..ec1b72c Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_anim.uasset new file mode 100644 index 0000000..c1fd355 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_pose.uasset new file mode 100644 index 0000000..aa0b6cf Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_hand_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_anim.uasset new file mode 100644 index 0000000..e63e32e Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_pose.uasset new file mode 100644 index 0000000..5f8d5ef Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_anim.uasset new file mode 100644 index 0000000..f3492ce Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_pose.uasset new file mode 100644 index 0000000..b04f7e3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_lowerarm_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_anim.uasset new file mode 100644 index 0000000..1209be8 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_pose.uasset new file mode 100644 index 0000000..82ccbd3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_anim.uasset new file mode 100644 index 0000000..48a756b Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_pose.uasset new file mode 100644 index 0000000..e034a03 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_thigh_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_anim.uasset new file mode 100644 index 0000000..35195f7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_pose.uasset new file mode 100644 index 0000000..b12e384 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_l_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_anim.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_anim.uasset new file mode 100644 index 0000000..e1c9ed3 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_anim.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_pose.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_pose.uasset new file mode 100644 index 0000000..0e0c116 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/Poses/Quinn/Quinn_upperarm_r_pose.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Rigs/RTG_Mannequin.uasset b/ProjectFish/Content/Characters/Mannequins/Rigs/RTG_Mannequin.uasset new file mode 100644 index 0000000..018d503 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Rigs/RTG_Mannequin.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset new file mode 100644 index 0000000..2807d27 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_ASAOPMASK_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_BN.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_BN.uasset new file mode 100644 index 0000000..270ab26 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_BN.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset new file mode 100644 index 0000000..a148038 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_CCRCCPlastic_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_D.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_D.uasset new file mode 100644 index 0000000..ec6af7d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_D.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_MSR_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_MSR_MSK.uasset new file mode 100644 index 0000000..0c7c051 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_MSR_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_N.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_N.uasset new file mode 100644 index 0000000..e4bf9d7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_Tan.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_Tan.uasset new file mode 100644 index 0000000..e936aeb Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_01_Tan.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset new file mode 100644 index 0000000..7574c0f Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_ASAOPMASK_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_BN.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_BN.uasset new file mode 100644 index 0000000..d5c7560 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_BN.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset new file mode 100644 index 0000000..d92db8b Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_CCRCCPlastic_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_D.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_D.uasset new file mode 100644 index 0000000..8f73b0b Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_D.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_MSR_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_MSR_MSK.uasset new file mode 100644 index 0000000..e847d53 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_MSR_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_N.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_N.uasset new file mode 100644 index 0000000..da95dd9 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_Tan.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_Tan.uasset new file mode 100644 index 0000000..76dec67 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Manny/T_Manny_02_Tan.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_BN.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_BN.uasset new file mode 100644 index 0000000..80a7b3d Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_BN.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_D.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_D.uasset new file mode 100644 index 0000000..3c308a7 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_D.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset new file mode 100644 index 0000000..83f3bba Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_MSR_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_N.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_N.uasset new file mode 100644 index 0000000..56edd5f Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_Tan.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_Tan.uasset new file mode 100644 index 0000000..30d96fd Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01ID_Tan.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset new file mode 100644 index 0000000..d2bfe5c Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_ASAOMASK_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset new file mode 100644 index 0000000..b989620 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_01_CCRCCPlastic_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_BN.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_BN.uasset new file mode 100644 index 0000000..d690622 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_BN.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_D.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_D.uasset new file mode 100644 index 0000000..acc6a70 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_D.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset new file mode 100644 index 0000000..4e43572 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_MSR_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_N.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_N.uasset new file mode 100644 index 0000000..d3476ba Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_N.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_Tan.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_Tan.uasset new file mode 100644 index 0000000..3a61bee Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02ID_Tan.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset new file mode 100644 index 0000000..b57c447 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_ASAOMASK_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset new file mode 100644 index 0000000..e050b4a Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Quinn/T_Quinn_02_CCRCCPlastic_MSK.uasset differ diff --git a/ProjectFish/Content/Characters/Mannequins/Textures/Shared/T_UE_Logo_M.uasset b/ProjectFish/Content/Characters/Mannequins/Textures/Shared/T_UE_Logo_M.uasset new file mode 100644 index 0000000..ef37240 Binary files /dev/null and b/ProjectFish/Content/Characters/Mannequins/Textures/Shared/T_UE_Logo_M.uasset differ diff --git a/ProjectFish/Content/Cursor/FX_Cursor.uasset b/ProjectFish/Content/Cursor/FX_Cursor.uasset new file mode 100644 index 0000000..be220c5 Binary files /dev/null and b/ProjectFish/Content/Cursor/FX_Cursor.uasset differ diff --git a/ProjectFish/Content/Cursor/M_Cursor.uasset b/ProjectFish/Content/Cursor/M_Cursor.uasset new file mode 100644 index 0000000..3382654 Binary files /dev/null and b/ProjectFish/Content/Cursor/M_Cursor.uasset differ diff --git a/ProjectFish/Content/Cursor/SM_CursorMesh.uasset b/ProjectFish/Content/Cursor/SM_CursorMesh.uasset new file mode 100644 index 0000000..fe27047 Binary files /dev/null and b/ProjectFish/Content/Cursor/SM_CursorMesh.uasset differ diff --git a/ProjectFish/Content/Cursor/T_Arrow.uasset b/ProjectFish/Content/Cursor/T_Arrow.uasset new file mode 100644 index 0000000..25f9caf Binary files /dev/null and b/ProjectFish/Content/Cursor/T_Arrow.uasset differ diff --git a/ProjectFish/Content/DataTable/PawnSkills.uasset b/ProjectFish/Content/DataTable/PawnSkills.uasset new file mode 100644 index 0000000..edec28a Binary files /dev/null and b/ProjectFish/Content/DataTable/PawnSkills.uasset differ diff --git a/ProjectFish/Content/DataTable/Skills.uasset b/ProjectFish/Content/DataTable/Skills.uasset new file mode 100644 index 0000000..ba16fb3 Binary files /dev/null and b/ProjectFish/Content/DataTable/Skills.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Attack.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Attack.uasset new file mode 100644 index 0000000..4ff1a6c Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Attack.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Death.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Death.uasset new file mode 100644 index 0000000..973430e Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_Death.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim.uasset new file mode 100644 index 0000000..5161e40 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Down.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Down.uasset new file mode 100644 index 0000000..dba728b Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Down.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Fast.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Fast.uasset new file mode 100644 index 0000000..8f021d3 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Fast.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Left.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Left.uasset new file mode 100644 index 0000000..c3a57b6 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Left.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Right.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Right.uasset new file mode 100644 index 0000000..1b0de23 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Right.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Up.uasset b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Up.uasset new file mode 100644 index 0000000..751966b Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Anims/Anim_Deep_hunter_swim_Up.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Character/PA_Deep_hunter_Physics.uasset b/ProjectFish/Content/Deep_Hunter/Character/PA_Deep_hunter_Physics.uasset new file mode 100644 index 0000000..b93563b Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Character/PA_Deep_hunter_Physics.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Character/SKM_Deep_hunter.uasset b/ProjectFish/Content/Deep_Hunter/Character/SKM_Deep_hunter.uasset new file mode 100644 index 0000000..10f38a6 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Character/SKM_Deep_hunter.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Character/SK_Deep_hunter_Skeleton.uasset b/ProjectFish/Content/Deep_Hunter/Character/SK_Deep_hunter_Skeleton.uasset new file mode 100644 index 0000000..d065688 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Character/SK_Deep_hunter_Skeleton.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Map/Showcase.umap b/ProjectFish/Content/Deep_Hunter/Map/Showcase.umap new file mode 100644 index 0000000..0fd1028 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Map/Showcase.umap differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_1.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_1.uasset new file mode 100644 index 0000000..28ff89c Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_1.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_2.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_2.uasset new file mode 100644 index 0000000..00e5a52 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_2.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_3.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_3.uasset new file mode 100644 index 0000000..f9b053f Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_3.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_4.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_4.uasset new file mode 100644 index 0000000..99679ea Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_4.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_5.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_5.uasset new file mode 100644 index 0000000..ebc1a33 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_5.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_6.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_6.uasset new file mode 100644 index 0000000..126a5d6 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_6.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_7.uasset b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_7.uasset new file mode 100644 index 0000000..09fec8a Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/MI_Body_7.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Materials/M_Base.uasset b/ProjectFish/Content/Deep_Hunter/Materials/M_Base.uasset new file mode 100644 index 0000000..2cda4e4 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Materials/M_Base.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..cebb824 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..7c50c9b Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..f8b76f8 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..1e2f536 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_1_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..0e218d0 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..5790780 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..f6af003 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..938df33 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_2_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..ea71f26 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..27462cf Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..37323f0 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..3e9a424 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_3_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..fbcadeb Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..d60b86d Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..9a23d88 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..adfca7e Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_4_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..05f534c Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..fb60c52 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..2fa4343 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..c76bb98 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_5_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..c162fc5 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..111f731 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..c60d734 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..b14a4eb Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_6_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_BaseColor.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_BaseColor.uasset new file mode 100644 index 0000000..a814700 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_BaseColor.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Metallic.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Metallic.uasset new file mode 100644 index 0000000..6c7e803 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Metallic.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Normal.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Normal.uasset new file mode 100644 index 0000000..d6cd38d Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Normal.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Roughness.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Roughness.uasset new file mode 100644 index 0000000..4b902a2 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_7_Deep_hunter_DefaultMaterial_Roughness.uasset differ diff --git a/ProjectFish/Content/Deep_Hunter/Textures/T_Ems_Color.uasset b/ProjectFish/Content/Deep_Hunter/Textures/T_Ems_Color.uasset new file mode 100644 index 0000000..fa1e915 Binary files /dev/null and b/ProjectFish/Content/Deep_Hunter/Textures/T_Ems_Color.uasset differ diff --git a/ProjectFish/Content/FIsh/NewBlueprint.uasset b/ProjectFish/Content/FIsh/NewBlueprint.uasset new file mode 100644 index 0000000..b3f8ef2 Binary files /dev/null and b/ProjectFish/Content/FIsh/NewBlueprint.uasset differ diff --git a/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset b/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset new file mode 100644 index 0000000..071abf5 Binary files /dev/null and b/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset differ diff --git a/ProjectFish/Content/Gameplay/BP_Ready_GameMode.uasset b/ProjectFish/Content/Gameplay/BP_Ready_GameMode.uasset new file mode 100644 index 0000000..26e615d Binary files /dev/null and b/ProjectFish/Content/Gameplay/BP_Ready_GameMode.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset new file mode 100644 index 0000000..84dde04 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MF_ProcGrid.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset new file mode 100644 index 0000000..4605682 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray1.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray1.uasset new file mode 100644 index 0000000..7edf9da Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray1.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset new file mode 100644 index 0000000..2accd35 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray_02.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset new file mode 100644 index 0000000..bc39915 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_TopDark.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset b/ProjectFish/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset new file mode 100644 index 0000000..7b7ad88 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/MI_Solid_Blue.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset b/ProjectFish/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset new file mode 100644 index 0000000..f61487d Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/M_PrototypeGrid.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Materials/M_Solid.uasset b/ProjectFish/Content/LevelPrototyping/Materials/M_Solid.uasset new file mode 100644 index 0000000..37a29b9 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Materials/M_Solid.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset b/ProjectFish/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset new file mode 100644 index 0000000..fe6da62 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Meshes/SM_ChamferCube.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cube.uasset b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cube.uasset new file mode 100644 index 0000000..0e7d2a3 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cube.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset new file mode 100644 index 0000000..2dc5fab Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Cylinder.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset b/ProjectFish/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset new file mode 100644 index 0000000..cbd952c Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Meshes/SM_QuarterCylinder.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Meshes/SM_Ramp.uasset b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Ramp.uasset new file mode 100644 index 0000000..f1f05c6 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Meshes/SM_Ramp.uasset differ diff --git a/ProjectFish/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset b/ProjectFish/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset new file mode 100644 index 0000000..e901d24 Binary files /dev/null and b/ProjectFish/Content/LevelPrototyping/Textures/T_GridChecker_A.uasset differ diff --git a/ProjectFish/Content/Maps/Dabaza.umap b/ProjectFish/Content/Maps/Dabaza.umap new file mode 100644 index 0000000..7ccaa24 Binary files /dev/null and b/ProjectFish/Content/Maps/Dabaza.umap differ diff --git a/ProjectFish/Content/Maps/TopDownMap.umap b/ProjectFish/Content/Maps/TopDownMap.umap new file mode 100644 index 0000000..906dc6c Binary files /dev/null and b/ProjectFish/Content/Maps/TopDownMap.umap differ diff --git a/ProjectFish/Content/Textures/Skill/ArmoredLine.uasset b/ProjectFish/Content/Textures/Skill/ArmoredLine.uasset new file mode 100644 index 0000000..adbaa6e Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/ArmoredLine.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/EnduranceMend.uasset b/ProjectFish/Content/Textures/Skill/EnduranceMend.uasset new file mode 100644 index 0000000..0613ecd Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/EnduranceMend.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/FrostSlow.uasset b/ProjectFish/Content/Textures/Skill/FrostSlow.uasset new file mode 100644 index 0000000..3b20e5f Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/FrostSlow.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/LivingWater.uasset b/ProjectFish/Content/Textures/Skill/LivingWater.uasset new file mode 100644 index 0000000..9e65ce2 Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/LivingWater.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/PowerPull.uasset b/ProjectFish/Content/Textures/Skill/PowerPull.uasset new file mode 100644 index 0000000..4189d6c Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/PowerPull.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/PrecisionBait.uasset b/ProjectFish/Content/Textures/Skill/PrecisionBait.uasset new file mode 100644 index 0000000..d1d470a Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/PrecisionBait.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/RapidCharge.uasset b/ProjectFish/Content/Textures/Skill/RapidCharge.uasset new file mode 100644 index 0000000..2861ed7 Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/RapidCharge.uasset differ diff --git a/ProjectFish/Content/Textures/Skill/VortexDisturbance.uasset b/ProjectFish/Content/Textures/Skill/VortexDisturbance.uasset new file mode 100644 index 0000000..47aa8da Binary files /dev/null and b/ProjectFish/Content/Textures/Skill/VortexDisturbance.uasset differ diff --git a/ProjectFish/Content/TopDown/Blueprints/BP_TopDownCharacter.uasset b/ProjectFish/Content/TopDown/Blueprints/BP_TopDownCharacter.uasset new file mode 100644 index 0000000..5176c30 Binary files /dev/null and b/ProjectFish/Content/TopDown/Blueprints/BP_TopDownCharacter.uasset differ diff --git a/ProjectFish/Content/TopDown/Blueprints/BP_TopDownPlayerController.uasset b/ProjectFish/Content/TopDown/Blueprints/BP_TopDownPlayerController.uasset new file mode 100644 index 0000000..c572432 Binary files /dev/null and b/ProjectFish/Content/TopDown/Blueprints/BP_TopDownPlayerController.uasset differ diff --git a/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Click.uasset b/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Click.uasset new file mode 100644 index 0000000..907814d Binary files /dev/null and b/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Click.uasset differ diff --git a/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Touch.uasset b/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Touch.uasset new file mode 100644 index 0000000..3ff4655 Binary files /dev/null and b/ProjectFish/Content/TopDown/Input/Actions/IA_SetDestination_Touch.uasset differ diff --git a/ProjectFish/Content/TopDown/Input/IMC_Default.uasset b/ProjectFish/Content/TopDown/Input/IMC_Default.uasset new file mode 100644 index 0000000..cc12d67 Binary files /dev/null and b/ProjectFish/Content/TopDown/Input/IMC_Default.uasset differ diff --git a/ProjectFish/Content/TopDown/Maps/TopDownMap.umap b/ProjectFish/Content/TopDown/Maps/TopDownMap.umap new file mode 100644 index 0000000..c03d22c Binary files /dev/null and b/ProjectFish/Content/TopDown/Maps/TopDownMap.umap differ diff --git a/ProjectFish/Content/UI/Mats/M_SkillCard.uasset b/ProjectFish/Content/UI/Mats/M_SkillCard.uasset new file mode 100644 index 0000000..adb3e4a Binary files /dev/null and b/ProjectFish/Content/UI/Mats/M_SkillCard.uasset differ diff --git a/ProjectFish/Content/UI/WBP_EnduranceBar.uasset b/ProjectFish/Content/UI/WBP_EnduranceBar.uasset new file mode 100644 index 0000000..2573cd3 Binary files /dev/null and b/ProjectFish/Content/UI/WBP_EnduranceBar.uasset differ diff --git a/ProjectFish/Content/UI/WBP_GameEnd.uasset b/ProjectFish/Content/UI/WBP_GameEnd.uasset new file mode 100644 index 0000000..65376ff Binary files /dev/null and b/ProjectFish/Content/UI/WBP_GameEnd.uasset differ diff --git a/ProjectFish/Content/UI/WBP_SkillCard.uasset b/ProjectFish/Content/UI/WBP_SkillCard.uasset new file mode 100644 index 0000000..7f3380d Binary files /dev/null and b/ProjectFish/Content/UI/WBP_SkillCard.uasset differ diff --git a/ProjectFish/Content/UI/WBP_SkillContainer.uasset b/ProjectFish/Content/UI/WBP_SkillContainer.uasset new file mode 100644 index 0000000..ed2da62 Binary files /dev/null and b/ProjectFish/Content/UI/WBP_SkillContainer.uasset differ diff --git a/ProjectFish/Content/UI/WBP_SkillEffect.uasset b/ProjectFish/Content/UI/WBP_SkillEffect.uasset new file mode 100644 index 0000000..c8399d1 Binary files /dev/null and b/ProjectFish/Content/UI/WBP_SkillEffect.uasset differ diff --git a/ProjectFish/Content/UI/WBP_SkillEffectText.uasset b/ProjectFish/Content/UI/WBP_SkillEffectText.uasset new file mode 100644 index 0000000..b440273 Binary files /dev/null and b/ProjectFish/Content/UI/WBP_SkillEffectText.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL.uasset new file mode 100644 index 0000000..5fd2c43 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/71/2X87XDDC2TTHX5M2097RWT.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/71/2X87XDDC2TTHX5M2097RWT.uasset new file mode 100644 index 0000000..735c11a Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/71/2X87XDDC2TTHX5M2097RWT.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC.uasset new file mode 100644 index 0000000..84daf06 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7.uasset new file mode 100644 index 0000000..172071d Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR.uasset new file mode 100644 index 0000000..5ab75b9 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY.uasset new file mode 100644 index 0000000..b307538 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N.uasset new file mode 100644 index 0000000..5d00d35 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT.uasset new file mode 100644 index 0000000..b4698eb Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH.uasset new file mode 100644 index 0000000..804139f Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I.uasset new file mode 100644 index 0000000..af4f588 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R.uasset new file mode 100644 index 0000000..58c540e Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ.uasset new file mode 100644 index 0000000..ce45709 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4.uasset new file mode 100644 index 0000000..a8526d7 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH.uasset new file mode 100644 index 0000000..62b9e1c Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W.uasset new file mode 100644 index 0000000..af8abf0 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54.uasset new file mode 100644 index 0000000..a3abe68 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset new file mode 100644 index 0000000..651eddb Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB.uasset new file mode 100644 index 0000000..24bc123 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4.uasset new file mode 100644 index 0000000..55fbeef Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N.uasset new file mode 100644 index 0000000..ae5dedc Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4.uasset b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4.uasset new file mode 100644 index 0000000..3601f6a Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C.uasset new file mode 100644 index 0000000..c4ad94f Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F.uasset new file mode 100644 index 0000000..5276a5b Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/OO/140BILQMIOX14WW57NR52V.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/OO/140BILQMIOX14WW57NR52V.uasset new file mode 100644 index 0000000..5b46f69 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/OO/140BILQMIOX14WW57NR52V.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO.uasset new file mode 100644 index 0000000..67a3ed8 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04.uasset new file mode 100644 index 0000000..1b13e7f Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S.uasset new file mode 100644 index 0000000..0044cad Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ.uasset new file mode 100644 index 0000000..041a52b Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE.uasset new file mode 100644 index 0000000..37c2aa8 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1.uasset new file mode 100644 index 0000000..0a74eac Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO.uasset new file mode 100644 index 0000000..dde9991 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/YS/FOXTUL6MPN05XEWRDRZ58J.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/YS/FOXTUL6MPN05XEWRDRZ58J.uasset new file mode 100644 index 0000000..e878b0f Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/YS/FOXTUL6MPN05XEWRDRZ58J.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG.uasset new file mode 100644 index 0000000..994758a Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD.uasset new file mode 100644 index 0000000..fa5d091 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7.uasset new file mode 100644 index 0000000..180517d Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV.uasset new file mode 100644 index 0000000..fab1e3c Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D.uasset new file mode 100644 index 0000000..580ea7b Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE.uasset new file mode 100644 index 0000000..d572978 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N.uasset new file mode 100644 index 0000000..37f2d61 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW.uasset new file mode 100644 index 0000000..5ffc7de Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW.uasset differ diff --git a/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO.uasset b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO.uasset new file mode 100644 index 0000000..ee83a04 Binary files /dev/null and b/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO.uasset differ diff --git a/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/8/AJ/X2E3Q1FHIRQBYURHER1BUJ.uasset b/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/8/AJ/X2E3Q1FHIRQBYURHER1BUJ.uasset new file mode 100644 index 0000000..0eb0445 Binary files /dev/null and b/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/8/AJ/X2E3Q1FHIRQBYURHER1BUJ.uasset differ diff --git a/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/D/K5/SN7K2XPUUGF6M3W8BM3PCO.uasset b/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/D/K5/SN7K2XPUUGF6M3W8BM3PCO.uasset new file mode 100644 index 0000000..6706afd Binary files /dev/null and b/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/D/K5/SN7K2XPUUGF6M3W8BM3PCO.uasset differ diff --git a/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/7/DJ/L93A9ROLR8G18PECTHQYXO.uasset b/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/7/DJ/L93A9ROLR8G18PECTHQYXO.uasset new file mode 100644 index 0000000..6a31acc Binary files /dev/null and b/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/7/DJ/L93A9ROLR8G18PECTHQYXO.uasset differ diff --git a/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/C/WJ/1QDXSIZ1B1FX2WSR16OSS0.uasset b/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/C/WJ/1QDXSIZ1B1FX2WSR16OSS0.uasset new file mode 100644 index 0000000..854f83b Binary files /dev/null and b/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/C/WJ/1QDXSIZ1B1FX2WSR16OSS0.uasset differ diff --git a/ProjectFish/ProjectFish.uproject b/ProjectFish/ProjectFish.uproject new file mode 100644 index 0000000..984b23e --- /dev/null +++ b/ProjectFish/ProjectFish.uproject @@ -0,0 +1,22 @@ +{ + "FileVersion": 3, + "EngineAssociation": "5.5", + "Category": "", + "Description": "", + "Modules": [ + { + "Name": "ProjectFish", + "Type": "Runtime", + "LoadingPhase": "Default" + } + ], + "Plugins": [ + { + "Name": "ModelingToolsEditorMode", + "Enabled": true, + "TargetAllowList": [ + "Editor" + ] + } + ] +} \ No newline at end of file diff --git a/ProjectFish/Saved/AutoScreenshot.png b/ProjectFish/Saved/AutoScreenshot.png new file mode 100644 index 0000000..76a2d98 Binary files /dev/null and b/ProjectFish/Saved/AutoScreenshot.png differ diff --git a/ProjectFish/Saved/Autosaves/Game/Characters/BP_Dabaza_Pawn_Auto3.uasset b/ProjectFish/Saved/Autosaves/Game/Characters/BP_Dabaza_Pawn_Auto3.uasset new file mode 100644 index 0000000..91ec67e Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Characters/BP_Dabaza_Pawn_Auto3.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Characters/BP_DeepFish_Auto3.uasset b/ProjectFish/Saved/Autosaves/Game/Characters/BP_DeepFish_Auto3.uasset new file mode 100644 index 0000000..746c2c3 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Characters/BP_DeepFish_Auto3.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Auto3.uasset b/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Auto3.uasset new file mode 100644 index 0000000..4fff9d2 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Auto3.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Child_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Child_Auto1.uasset new file mode 100644 index 0000000..aeff9bb Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Characters/BP_PawnEntity_Child_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1.uasset new file mode 100644 index 0000000..7dc7e59 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/DataTable/PawnSkills_Auto2.uasset b/ProjectFish/Saved/Autosaves/Game/DataTable/PawnSkills_Auto2.uasset new file mode 100644 index 0000000..ed363eb Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/DataTable/PawnSkills_Auto2.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset new file mode 100644 index 0000000..d143c5c Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto2.uasset b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto2.uasset new file mode 100644 index 0000000..adb3d3d Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto2.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto4.uasset b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto4.uasset new file mode 100644 index 0000000..b46c569 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto4.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/Maps/Dabaza_Auto1.umap b/ProjectFish/Saved/Autosaves/Game/Maps/Dabaza_Auto1.umap new file mode 100644 index 0000000..6b917bb Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/Maps/Dabaza_Auto1.umap differ diff --git a/ProjectFish/Saved/Autosaves/Game/TopDown/Maps/TopDownMap_Auto1.umap b/ProjectFish/Saved/Autosaves/Game/TopDown/Maps/TopDownMap_Auto1.umap new file mode 100644 index 0000000..8ec7057 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/TopDown/Maps/TopDownMap_Auto1.umap differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto1.uasset new file mode 100644 index 0000000..c54a643 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto2.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto2.uasset new file mode 100644 index 0000000..bd845cf Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto2.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto1.uasset new file mode 100644 index 0000000..626a58e Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto2.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto2.uasset new file mode 100644 index 0000000..09b8037 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto2.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto3.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto3.uasset new file mode 100644 index 0000000..b8d4ec7 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto3.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto4.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto4.uasset new file mode 100644 index 0000000..7e1766a Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto4.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto5.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto5.uasset new file mode 100644 index 0000000..f27adc1 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto5.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffectText_Auto2.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffectText_Auto2.uasset new file mode 100644 index 0000000..2192c25 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffectText_Auto2.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffect_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffect_Auto1.uasset new file mode 100644 index 0000000..42ad275 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffect_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/8/QJ/ORE2IXNYEVG5MP8RL7E0VD_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/8/QJ/ORE2IXNYEVG5MP8RL7E0VD_Auto1.uasset new file mode 100644 index 0000000..e0d115a Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/8/QJ/ORE2IXNYEVG5MP8RL7E0VD_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926_Auto1.uasset b/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926_Auto1.uasset new file mode 100644 index 0000000..9fcbf6c Binary files /dev/null and b/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926_Auto1.uasset differ diff --git a/ProjectFish/Saved/Autosaves/PackageRestoreData.json b/ProjectFish/Saved/Autosaves/PackageRestoreData.json new file mode 100644 index 0000000..59996c2 Binary files /dev/null and b/ProjectFish/Saved/Autosaves/PackageRestoreData.json differ diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-02EBFF3F448A72904F57C18D226B2C6E/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-02EBFF3F448A72904F57C18D226B2C6E/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-02EBFF3F448A72904F57C18D226B2C6E/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-0EFA6EEF439FE2557AB1A68DB70BD868/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-0EFA6EEF439FE2557AB1A68DB70BD868/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-0EFA6EEF439FE2557AB1A68DB70BD868/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-3595CB4B47853C2D400D99B51F6C2DBE/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-3595CB4B47853C2D400D99B51F6C2DBE/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-3595CB4B47853C2D400D99B51F6C2DBE/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-594C20F2417D706D4BFCB3BEB8B7ABE5/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-594C20F2417D706D4BFCB3BEB8B7ABE5/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-594C20F2417D706D4BFCB3BEB8B7ABE5/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-942CEC8847F1D8D38DDEC4AAB581A843/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-942CEC8847F1D8D38DDEC4AAB581A843/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-942CEC8847F1D8D38DDEC4AAB581A843/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-C5EB2FE047229200DF52CEBC0C0078CC/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-C5EB2FE047229200DF52CEBC0C0078CC/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-C5EB2FE047229200DF52CEBC0C0078CC/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-CBF1110747B06C68558D5D8177E49994/CrashReportClient.ini b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-CBF1110747B06C68558D5D8177E49994/CrashReportClient.ini new file mode 100644 index 0000000..e6a72c5 --- /dev/null +++ b/ProjectFish/Saved/Config/CrashReportClient/UECC-Windows-CBF1110747B06C68558D5D8177E49994/CrashReportClient.ini @@ -0,0 +1,7 @@ +[CrashReportClient] +bHideLogFilesOption=false +bIsAllowedToCloseWithoutSending=true +CrashConfigPurgeDays=2 +Stall.RecordDump=false +Ensure.RecordDump=true + diff --git a/ProjectFish/Saved/Config/WindowsEditor/Editor.ini b/ProjectFish/Saved/Config/WindowsEditor/Editor.ini new file mode 100644 index 0000000..21b9f88 --- /dev/null +++ b/ProjectFish/Saved/Config/WindowsEditor/Editor.ini @@ -0,0 +1,4 @@ +;METADATA=(Diff=true, UseCommands=true) +[/Script/UnrealEd.UnrealEdOptions] +UsingXGE=False + diff --git a/ProjectFish/Saved/Config/WindowsEditor/EditorPerProjectUserSettings.ini b/ProjectFish/Saved/Config/WindowsEditor/EditorPerProjectUserSettings.ini new file mode 100644 index 0000000..9f5e5a5 --- /dev/null +++ b/ProjectFish/Saved/Config/WindowsEditor/EditorPerProjectUserSettings.ini @@ -0,0 +1,3767 @@ +;METADATA=(Diff=true, UseCommands=true) +[/Script/UnrealEd.EditorPerProjectUserSettings] +bDisplayDocumentationLink=False +bDisplayActionListItemRefIds=False +bAlwaysGatherBehaviorTreeDebuggerData=False +bDisplayBlackboardKeysInAlphabeticalOrder=False +bUseSimplygonSwarm=False +SimplygonServerIP=127.0.0.1 +bEnableSwarmDebugging=False +SimplygonSwarmDelay=5000 +SwarmNumOfConcurrentJobs=16 +SwarmMaxUploadChunkSizeInMB=100 +SwarmIntermediateFolder=G:/TestForNPCAI/ProjectFish/ProjectFish/Intermediate/Simplygon/ +bShowCompilerLogOnCompileError=False +DataSourceFolder=(Path="") +bAnimationReimportWarnings=False +bConfirmEditorClose=False +bSCSEditorShowFloor=False +bAlwaysBuildUAT=True +SCSViewportCameraSpeed=4 +bShowSelectionSubcomponents=True +AssetViewerProfileName= +PreviewFeatureLevel=4 +PreviewPlatformName=None +PreviewShaderFormatName=None +PreviewShaderPlatformName=None +bPreviewFeatureLevelActive=False +bPreviewFeatureLevelWasDefault=True +PreviewDeviceProfileName=None + +[/Script/UnrealEd.EditorStyleSettings] +ApplicationScale=1.000000 +bColorVisionDeficiencyCorrection=False +bColorVisionDeficiencyCorrectionPreviewWithDeficiency=False +SelectionColor=(R=0.828000,G=0.364000,B=0.003000,A=1.000000) +AdditionalSelectionColors[0]=(R=0.019382,G=0.496933,B=1.000000,A=1.000000) +AdditionalSelectionColors[1]=(R=0.356400,G=0.040915,B=0.520996,A=1.000000) +AdditionalSelectionColors[2]=(R=1.000000,G=0.168269,B=0.332452,A=1.000000) +AdditionalSelectionColors[3]=(R=1.000000,G=0.051269,B=0.051269,A=1.000000) +AdditionalSelectionColors[4]=(R=1.000000,G=0.715693,B=0.010330,A=1.000000) +AdditionalSelectionColors[5]=(R=0.258183,G=0.539479,B=0.068478,A=1.000000) +ViewportToolOverlayColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000) +bEnableEditorWindowBackgroundColor=False +EditorWindowBackgroundColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000) +MenuSearchFieldVisibilityThreshold=10 +bUseGrid=True +RegularColor=(R=0.024000,G=0.024000,B=0.024000,A=1.000000) +RuleColor=(R=0.010000,G=0.010000,B=0.010000,A=1.000000) +CenterColor=(R=0.005000,G=0.005000,B=0.005000,A=1.000000) +GridSnapSize=16 +GraphBackgroundBrush=(TintColor=(SpecifiedColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000),ColorUseRule=UseColor_Specified),DrawAs=Image,Tiling=NoTile,Mirroring=NoMirror,ImageType=NoImage,ImageSize=(X=32.000000,Y=32.000000),Margin=(Left=0.000000,Top=0.000000,Right=0.000000,Bottom=0.000000),ResourceObject=None,OutlineSettings=(CornerRadii=(X=0.000000,Y=0.000000,Z=0.000000,W=0.000000),Color=(SpecifiedColor=(R=0.000000,G=0.000000,B=0.000000,A=0.000000),ColorUseRule=UseColor_Specified),Width=0.000000,RoundingType=HalfHeightRadius,bUseBrushTransparency=False),UVRegion=(Min=(X=0.000000,Y=0.000000),Max=(X=0.000000,Y=0.000000),bIsValid=False),bIsDynamicallyLoaded=False,ResourceName="") +bShowNativeComponentNames=True +AssetEditorOpenLocation=Default +bEnableColorizedEditorTabs=True +CurrentAppliedTheme=134380265FBB4A9CA00A1DC9770217B8 + +[/Script/UnrealEd.LevelEditorPlaySettings] +LaptopScreenResolutions=(Description="Apple MacBook Air 11",Width=1366,Height=768,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Apple MacBook Air 13\"",Width=1440,Height=900,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Apple MacBook Pro 13\"",Width=1280,Height=800,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Apple MacBook Pro 13\" (Retina)",Width=2560,Height=1600,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Apple MacBook Pro 15\"",Width=1440,Height=900,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Apple MacBook Pro 15\" (Retina)",Width=2880,Height=1800,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +LaptopScreenResolutions=(Description="Generic 14-15.6\" Notebook",Width=1366,Height=768,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +MonitorScreenResolutions=(Description="19\" monitor",Width=1440,Height=900,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +MonitorScreenResolutions=(Description="20\" monitor",Width=1600,Height=900,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +MonitorScreenResolutions=(Description="22\" monitor",Width=1680,Height=1050,AspectRatio="16:10",bCanSwapAspectRatio=True,ProfileName="") +MonitorScreenResolutions=(Description="21.5-24\" monitor",Width=1920,Height=1080,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +MonitorScreenResolutions=(Description="27\" monitor",Width=2560,Height=1440,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +TabletScreenResolutions=(Description="iPad Pro 12.9-inch (3rd gen.)",Width=1024,Height=1366,AspectRatio="~3:4",bCanSwapAspectRatio=True,ProfileName="iPadPro3_129") +TabletScreenResolutions=(Description="iPad Pro 12.9-inch (2nd gen.)",Width=1024,Height=1366,AspectRatio="~3:4",bCanSwapAspectRatio=True,ProfileName="iPadPro2_129") +TabletScreenResolutions=(Description="iPad Pro 11-inch",Width=834,Height=1194,AspectRatio="5:7",bCanSwapAspectRatio=True,ProfileName="iPadPro11") +TabletScreenResolutions=(Description="iPad Pro 10.5-inch",Width=834,Height=1112,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadPro105") +TabletScreenResolutions=(Description="iPad Pro 12.9-inch",Width=1024,Height=1366,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadPro129") +TabletScreenResolutions=(Description="iPad Pro 9.7-inch",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadPro97") +TabletScreenResolutions=(Description="iPad (6th gen.)",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPad6") +TabletScreenResolutions=(Description="iPad (5th gen.)",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPad5") +TabletScreenResolutions=(Description="iPad Air 3",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadAir3") +TabletScreenResolutions=(Description="iPad Air 2",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadAir2") +TabletScreenResolutions=(Description="iPad Mini 5",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadMini5") +TabletScreenResolutions=(Description="iPad Mini 4",Width=768,Height=1024,AspectRatio="3:4",bCanSwapAspectRatio=True,ProfileName="iPadMini4") +TabletScreenResolutions=(Description="LG G Pad X 8.0",Width=768,Height=1366,AspectRatio="9:16",bCanSwapAspectRatio=True,ProfileName="") +TabletScreenResolutions=(Description="Asus Zenpad 3s 10",Width=768,Height=1366,AspectRatio="9:16",bCanSwapAspectRatio=True,ProfileName="") +TabletScreenResolutions=(Description="Huawei MediaPad M3",Width=768,Height=1366,AspectRatio="9:16",bCanSwapAspectRatio=True,ProfileName="") +TabletScreenResolutions=(Description="Microsoft Surface RT",Width=768,Height=1366,AspectRatio="9:16",bCanSwapAspectRatio=True,ProfileName="") +TabletScreenResolutions=(Description="Microsoft Surface Pro",Width=1080,Height=1920,AspectRatio="9:16",bCanSwapAspectRatio=True,ProfileName="") +TelevisionScreenResolutions=(Description="720p (HDTV, Blu-ray)",Width=1280,Height=720,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +TelevisionScreenResolutions=(Description="1080i, 1080p (HDTV, Blu-ray)",Width=1920,Height=1080,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +TelevisionScreenResolutions=(Description="4K Ultra HD",Width=3840,Height=2160,AspectRatio="16:9",bCanSwapAspectRatio=True,ProfileName="") +TelevisionScreenResolutions=(Description="4K Digital Cinema",Width=4096,Height=2160,AspectRatio="1.90:1",bCanSwapAspectRatio=True,ProfileName="") +GameGetsMouseControl=False +UseMouseForTouch=False +MouseControlLabelPosition=LabelAnchorMode_TopLeft +ViewportGetsHMDControl=False +bShouldMinimizeEditorOnNonVRPIE=False +bEmulateStereo=False +SoloAudioInFirstPIEClient=False +EnablePIEEnterAndExitSounds=False +PlayInEditorSoundQualityLevel=0 +bUseNonRealtimeAudioDevice=False +bPreferToStreamLevelsInPIE=False +bPromoteOutputLogWarningsDuringPIE=False +NewWindowPosition=(X=-1,Y=-1) +PIEAlwaysOnTop=False +DisableStandaloneSound=False +AdditionalLaunchParameters= +BuildGameBeforeLaunch=PlayOnBuild_Default +LaunchConfiguration=LaunchConfig_Default +PackFilesForLaunch=NoPak +bAutoCompileBlueprintsOnLaunch=True +bLaunchSeparateServer=False +PlayNetMode=PIE_Standalone +RunUnderOneProcess=True +PlayNumberOfClients=1 +PrimaryPIEClientIndex=0 +ServerPort=17777 +ClientWindowWidth=640 +RouteGamepadToSecondWindow=False +CreateAudioDeviceForEveryPlayer=False +ClientWindowHeight=480 +ServerMapNameOverride= +AdditionalServerGameOptions= +bShowServerDebugDrawingByDefault=True +ServerDebugDrawingColorTintStrength=0.000000 +ServerDebugDrawingColorTint=(R=0.000000,G=0.000000,B=0.000000,A=1.000000) +bHMDForPrimaryProcessOnly=True +AdditionalServerLaunchParameters= +ServerFixedFPS=0 +NetworkEmulationSettings=(bIsNetworkEmulationEnabled=False,EmulationTarget=Server,CurrentProfile="Custom",OutPackets=(MinLatency=0,MaxLatency=0,PacketLossPercentage=0),InPackets=(MinLatency=0,MaxLatency=0,PacketLossPercentage=0)) +LastSize=(X=0,Y=0) +LastExecutedLaunchDevice=Windows@T +LastExecutedLaunchName=T +LastExecutedPIEPreviewDevice= +DeviceToEmulate= +PIESafeZoneOverride=(Left=0.000000,Top=0.000000,Right=0.000000,Bottom=0.000000) + +[/Script/UnrealEd.LevelEditorViewportSettings] +GridEnabled=False +RotGridEnabled=False +SnapScaleEnabled=False +FlightCameraControlExperimentalNavigation=False +MinimumOrthographicZoom=250.000000 +bAllowArcballRotate=False +bAllowScreenRotate=False +bShowActorEditorContext=True +bAllowEditWidgetAxisDisplay=True +bUseLegacyCameraMovementNotifications=False +SnapToSurface=(bEnabled=False,SnapOffsetExtent=0.000000,bSnapRotation=True) +bEnableLayerSnap=False +ActiveSnapLayerIndex=0 +PreserveNonUniformScale=True +PreviewMeshes=/Engine/EditorMeshes/ColorCalibrator/SM_ColorCalibrator.SM_ColorCalibrator +BillboardScale=1.000000 +TransformWidgetSizeAdjustment=0 +bSaveEngineStats=False +MeasuringToolUnits=MeasureUnits_Centimeters +SelectedSplinePointSizeAdjustment=0.000000 +SplineLineThicknessAdjustment=0.000000 +SplineTangentHandleSizeAdjustment=0.000000 +SplineTangentScale=0.500000 +LastInViewportMenuLocation=(X=0.000000,Y=0.000000) +MaterialForDroppedTextures=None +MaterialParamsForDroppedTextures=() +EditorViews=(("/Game/TopDown/Maps/TopDownMap.TopDownMap", (LevelViewportsInfo=((CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=1082.043297,Y=1732.825317,Z=764.994657),CamRotation=(Pitch=-68.000001,Yaw=2.000000,Roll=0.000000)),(CamUpdated=True),(CamUpdated=True),(CamUpdated=True),(CamUpdated=True)))),("/Game/Maps/Dabaza.Dabaza", (LevelViewportsInfo=((CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=-713.296964,Y=1712.363160,Z=847.279222),CamOrthoZoom=60847.566406),(CamPosition=(X=1082.043297,Y=1732.825317,Z=764.994657),CamRotation=(Pitch=-68.000001,Yaw=2.000000,Roll=0.000000)),(CamUpdated=True),(CamUpdated=True),(CamUpdated=True),(CamUpdated=True))))) +PropertyColorationColorForMatchingObjects=(B=0,G=0,R=255,A=255) +PerInstanceSettings=(ConfigName="FourPanes2x2.Viewport 1.Viewport0",ConfigSettings=(ViewportType=LVT_OrthoYZ,PerspViewModeIndex=VMI_Lit,OrthoViewModeIndex=VMI_BrushWireframe,EditorShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=0,CompositeEditorPrimitives=1,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=0,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=1,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=1,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=1,BSPTriangles=0,LargeVertices=0,Grid=1,Snap=0,MeshEdges=0,Cover=0,Splines=1,Selection=1,VisualizeLevelInstanceEditing=1,ModeWidgets=1,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=1,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=1,Fog=1,Volumes=1,Game=0,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=1,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",GameShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=1,CompositeEditorPrimitives=0,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=1,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=0,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=0,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=0,BSPTriangles=0,LargeVertices=0,Grid=0,Snap=0,MeshEdges=0,Cover=0,Splines=0,Selection=0,VisualizeLevelInstanceEditing=1,ModeWidgets=0,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=0,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=0,Fog=1,Volumes=0,Game=1,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=0,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",BufferVisualizationMode="",NaniteVisualizationMode="",LumenVisualizationMode="",SubstrateVisualizationMode="",GroomVisualizationMode="",VirtualShadowMapVisualizationMode="",RayTracingDebugVisualizationMode="",GPUSkinCacheVisualizationMode="",ExposureSettings=(FixedEV100=1.000000,bFixed=False),FOVAngle=90.000000,FarViewPlane=0.000000,bIsRealtime=False,bShowOnScreenStats=True,EnabledStats=,bShowFullToolbar=True,bAllowCinematicControl=True)) +PerInstanceSettings=(ConfigName="FourPanes2x2.Viewport 1.Viewport1",ConfigSettings=(ViewportType=LVT_Perspective,PerspViewModeIndex=VMI_Lit,OrthoViewModeIndex=VMI_BrushWireframe,EditorShowFlagsString="PostProcessing=1,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=0,CompositeEditorPrimitives=1,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=0,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=1,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=1,ForceFeedbackRadius=1,BSPSplit=0,Brushes=0,Lighting=1,DeferredLighting=1,Editor=1,BSPTriangles=1,LargeVertices=0,Grid=1,Snap=0,MeshEdges=0,Cover=0,Splines=1,Selection=1,VisualizeLevelInstanceEditing=1,ModeWidgets=1,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=1,ShadowFrustums=0,Wireframe=0,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=1,Fog=1,Volumes=1,Game=0,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=1,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",GameShowFlagsString="PostProcessing=1,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=1,CompositeEditorPrimitives=0,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=1,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=0,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=0,ForceFeedbackRadius=1,BSPSplit=0,Brushes=0,Lighting=1,DeferredLighting=1,Editor=0,BSPTriangles=1,LargeVertices=0,Grid=0,Snap=0,MeshEdges=0,Cover=0,Splines=0,Selection=0,VisualizeLevelInstanceEditing=1,ModeWidgets=0,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=0,ShadowFrustums=0,Wireframe=0,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=0,Fog=1,Volumes=0,Game=1,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=0,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",BufferVisualizationMode="",NaniteVisualizationMode="",LumenVisualizationMode="",SubstrateVisualizationMode="",GroomVisualizationMode="",VirtualShadowMapVisualizationMode="",RayTracingDebugVisualizationMode="",GPUSkinCacheVisualizationMode="",ExposureSettings=(FixedEV100=1.000000,bFixed=False),FOVAngle=90.000000,FarViewPlane=0.000000,bIsRealtime=True,bShowOnScreenStats=False,EnabledStats=,bShowFullToolbar=True,bAllowCinematicControl=True)) +PerInstanceSettings=(ConfigName="FourPanes2x2.Viewport 1.Viewport2",ConfigSettings=(ViewportType=LVT_OrthoXZ,PerspViewModeIndex=VMI_Lit,OrthoViewModeIndex=VMI_BrushWireframe,EditorShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=0,CompositeEditorPrimitives=1,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=0,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=1,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=1,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=1,BSPTriangles=0,LargeVertices=0,Grid=1,Snap=0,MeshEdges=0,Cover=0,Splines=1,Selection=1,VisualizeLevelInstanceEditing=1,ModeWidgets=1,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=1,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=1,Fog=1,Volumes=1,Game=0,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=1,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",GameShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=1,CompositeEditorPrimitives=0,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=1,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=0,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=0,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=0,BSPTriangles=0,LargeVertices=0,Grid=0,Snap=0,MeshEdges=0,Cover=0,Splines=0,Selection=0,VisualizeLevelInstanceEditing=1,ModeWidgets=0,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=0,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=0,Fog=1,Volumes=0,Game=1,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=0,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",BufferVisualizationMode="",NaniteVisualizationMode="",LumenVisualizationMode="",SubstrateVisualizationMode="",GroomVisualizationMode="",VirtualShadowMapVisualizationMode="",RayTracingDebugVisualizationMode="",GPUSkinCacheVisualizationMode="",ExposureSettings=(FixedEV100=1.000000,bFixed=False),FOVAngle=90.000000,FarViewPlane=0.000000,bIsRealtime=False,bShowOnScreenStats=True,EnabledStats=,bShowFullToolbar=True,bAllowCinematicControl=True)) +PerInstanceSettings=(ConfigName="FourPanes2x2.Viewport 1.Viewport3",ConfigSettings=(ViewportType=LVT_OrthoXY,PerspViewModeIndex=VMI_Lit,OrthoViewModeIndex=VMI_BrushWireframe,EditorShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=0,CompositeEditorPrimitives=1,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=0,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=1,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=1,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=1,BSPTriangles=0,LargeVertices=0,Grid=1,Snap=0,MeshEdges=0,Cover=0,Splines=1,Selection=1,VisualizeLevelInstanceEditing=1,ModeWidgets=1,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=1,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=1,Fog=1,Volumes=1,Game=0,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=1,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",GameShowFlagsString="PostProcessing=0,Bloom=1,LocalExposure=1,Tonemapper=1,AntiAliasing=1,TemporalAA=1,AmbientCubemap=1,EyeAdaptation=1,VisualizeHDR=0,VisualizeSkyLightIlluminance=0,VisualizeLocalExposure=0,LensFlares=1,LensDistortion=1,GlobalIllumination=1,Vignette=1,Grain=1,AmbientOcclusion=1,Decals=1,CameraImperfections=1,OnScreenDebug=1,OverrideDiffuseAndSpecular=0,LightingOnlyOverride=0,ReflectionOverride=0,VisualizeBuffer=0,VisualizeNanite=0,VisualizeLumen=0,VisualizeSubstrate=0,VisualizeGroom=0,VisualizeVirtualShadowMap=0,DirectLighting=1,DirectionalLights=1,PointLights=1,SpotLights=1,RectLights=1,ColorGrading=1,VectorFields=0,DepthOfField=1,GBufferHints=0,MotionBlur=1,CompositeEditorPrimitives=0,OpaqueCompositeEditorPrimitives=0,TestImage=0,VisualizeDOF=0,VertexColors=0,PhysicalMaterialMasks=0,Refraction=1,CameraInterpolation=1,SceneColorFringe=1,ToneCurve=1,SeparateTranslucency=1,ScreenPercentage=1,VisualizeMotionBlur=0,VisualizeMotionVectors=0,VisualizeReprojection=0,VisualizeTemporalUpscaler=0,VisualizeTSR=0,MegaLights=1,ReflectionEnvironment=1,VisualizeOutOfBoundsPixels=0,Diffuse=1,Specular=1,SelectionOutline=0,ScreenSpaceReflections=1,LumenReflections=1,ContactShadows=1,RayTracedDistanceFieldShadows=1,CapsuleShadows=1,SubsurfaceScattering=1,VisualizeSSS=0,VolumetricLightmap=1,IndirectLightingCache=1,DebugAI=0,VisLog=1,Navigation=0,GameplayDebug=1,TexturedLightProfiles=1,LightFunctions=1,InstancedStaticMeshes=1,InstancedFoliage=1,HISMCOcclusionBounds=0,HISMCClusterTree=0,VisualizeInstanceUpdates=0,InstancedGrass=1,DynamicShadows=1,Particles=1,Niagara=1,HeterogeneousVolumes=1,SkeletalMeshes=1,BuilderBrush=1,Translucency=1,BillboardSprites=1,LOD=1,LightComplexity=0,ShaderComplexity=0,StationaryLightOverlap=0,LightMapDensity=0,StreamingBounds=0,Constraints=0,MassProperties=0,CameraFrustums=0,AudioRadius=0,ForceFeedbackRadius=1,BSPSplit=0,Brushes=1,Lighting=1,DeferredLighting=1,Editor=0,BSPTriangles=0,LargeVertices=0,Grid=0,Snap=0,MeshEdges=0,Cover=0,Splines=0,Selection=0,VisualizeLevelInstanceEditing=1,ModeWidgets=0,Bounds=0,HitProxies=0,LightInfluences=0,Pivot=0,ShadowFrustums=0,Wireframe=1,Materials=1,StaticMeshes=1,Landscape=1,LightRadius=0,Fog=1,Volumes=0,Game=1,BSP=1,Collision=0,CollisionVisibility=0,CollisionPawn=0,LightShafts=1,PostProcessMaterial=1,Atmosphere=1,Cloud=1,CameraAspectRatioBars=0,CameraSafeFrames=0,TextRender=1,Rendering=1,HMDDistortion=0,StereoRendering=0,DistanceCulledPrimitives=0,VisualizeLightCulling=0,PrecomputedVisibility=1,SkyLighting=1,PreviewShadowsIndicator=1,PrecomputedVisibilityCells=0,VisualizeVolumetricLightmap=0,VolumeLightingSamples=0,Paper2DSprites=1,VisualizeDistanceFieldAO=0,VisualizeMeshDistanceFields=0,PhysicsField=0,VisualizeGlobalDistanceField=0,VisualizeLightingOnProbes=0,ScreenSpaceAO=1,DistanceFieldAO=1,LumenGlobalIllumination=1,VolumetricFog=1,VisualizeSSR=0,VisualizeShadingModels=0,VisualizeSenses=1,LODColoration=0,HLODColoration=0,QuadOverdraw=0,ShaderComplexityWithQuadOverdraw=0,PrimitiveDistanceAccuracy=0,MeshUVDensityAccuracy=0,MaterialTextureScaleAccuracy=0,OutputMaterialTextureScales=0,RequiredTextureResolution=0,VirtualTexturePendingMips=0,WidgetComponents=1,Bones=0,ServerDrawDebug=0,MediaPlanes=1,VREditing=0,OcclusionMeshes=0,VisualizeInstanceOcclusionQueries=0,DisableOcclusionQueries=0,PathTracing=0,RayTracingDebug=0,VisualizeSkyAtmosphere=0,VisualizeLightFunctionAtlas=0,VisualizeCalibrationColor=0,VisualizeCalibrationGrayscale=0,VisualizeCalibrationCustom=0,VisualizePostProcessStack=0,VirtualTexturePrimitives=0,VisualizeVolumetricCloudConservativeDensity=0,VisualizeVolumetricCloudEmptySpaceSkipping=0,VirtualShadowMapPersistentData=1,DebugDrawDistantVirtualSMLights=0,VirtualTextureResidency=1,InputDebugVisualizer=1,LumenScreenTraces=1,LumenDetailTraces=1,LumenGlobalTraces=1,LumenFarFieldTraces=1,LumenSecondaryBounces=1,LumenShortRangeAmbientOcclusion=1,NaniteMeshes=1,NaniteStreamingGeometry=1,VisualizeGPUSkinCache=0,VisualizeLWCComplexity=0,ShaderPrint=1,SceneCaptureCopySceneDepth=1,Cameras=1,Hair=1",BufferVisualizationMode="",NaniteVisualizationMode="",LumenVisualizationMode="",SubstrateVisualizationMode="",GroomVisualizationMode="",VirtualShadowMapVisualizationMode="",RayTracingDebugVisualizationMode="",GPUSkinCacheVisualizationMode="",ExposureSettings=(FixedEV100=1.000000,bFixed=False),FOVAngle=90.000000,FarViewPlane=0.000000,bIsRealtime=False,bShowOnScreenStats=True,EnabledStats=,bShowFullToolbar=True,bAllowCinematicControl=True)) + +[MRU] +MRUItem0=/Game/Maps/Dabaza +MRUItem1=/Game/TopDown/Maps/TopDownMap +MRUItem2=/Game/Maps/TopDownMap + +[/Script/UnrealEd.MaterialEditorOptions] +bRealtimeMaterialViewport=False +bHideUnrelatedNodes=False +bUseUnsortedMenus=False + +[/Script/UnrealEd.PersonaOptions] +bAutoAlignFloorToMesh=True +bAlwaysOpenAnimationAssetsInNewTab=False +bMuteAudio=False +DefaultLocalAxesSelection=2 +DefaultBoneDrawSelection=1 +bShowBoneColors=False +DefaultBoneColor=(R=0.000000,G=0.000000,B=0.025000,A=1.000000) +SelectedBoneColor=(R=0.200000,G=1.000000,B=0.200000,A=1.000000) +AffectedBoneColor=(R=1.000000,G=1.000000,B=1.000000,A=1.000000) +DisabledBoneColor=(R=0.400000,G=0.400000,B=0.400000,A=1.000000) +ParentOfSelectedBoneColor=(R=0.850000,G=0.450000,B=0.120000,A=1.000000) +VirtualBoneColor=(R=0.400000,G=0.400000,B=1.000000,A=1.000000) +SectionTimingNodeColor=(R=0.390000,G=0.390000,B=1.000000,A=0.750000) +NotifyTimingNodeColor=(R=0.800000,G=0.100000,B=0.100000,A=1.000000) +BranchingPointTimingNodeColor=(R=0.500000,G=1.000000,B=1.000000,A=1.000000) +bPauseAnimationOnCameraMove=False +bUseInlineSocketEditor=False +bFlattenSkeletonHierarchyWhenFiltering=False +bHideParentsWhenFiltering=False +bShowBoneIndexes=False +bExpandTreeOnSelection=True +bAllowPreviewMeshCollectionsToSelectFromDifferentSkeletons=True +bAllowPreviewMeshCollectionsToUseCustomAnimBP=False +bAllowMeshSectionSelection=False +NumFolderFiltersInAssetBrowser=2 +AssetEditorOptions=(Context="SkeletonEditor",ViewportConfigs[0]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[1]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[2]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[3]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName="")) +AssetEditorOptions=(Context="SkeletalMeshEditor",ViewportConfigs[0]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[1]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[2]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[3]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName="")) +AssetEditorOptions=(Context="AnimationEditor",ViewportConfigs[0]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[1]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[2]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[3]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName="")) +AssetEditorOptions=(Context="AnimationBlueprintEditor",ViewportConfigs[0]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[1]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[2]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[3]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName="")) +AssetEditorOptions=(Context="PhysicsAssetEditor",ViewportConfigs[0]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[1]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[2]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName=""),ViewportConfigs[3]=(ViewModeIndex=VMI_Lit,ViewFOV=53.430000,CameraSpeedSetting=4,CameraSpeedScalar=1.000000,CameraFollowMode=None,CameraFollowBoneName="")) +CurveEditorSnapInterval=0.010000 +TimelineScrubSnapValue=1000 +TimelineDisplayFormat=Frames +bTimelineDisplayPercentage=True +bTimelineDisplayFormatSecondary=True +bTimelineDisplayCurveKeys=False +TimelineEnabledSnaps=CompositeSegment +TimelineEnabledSnaps=MontageSection +bAllowIncompatibleSkeletonSelection=False +bUseTreeViewForAnimationCurves=False +AnimationCurveGroupingDelimiters="._/|\\" + +[WidgetTemplatesExpanded] +Common=False +Audio=False +AudioMaterial=False +Editor=False +Input=False +Lists=False +Misc=False +Optimization=False +Panel=False +Primitive=False +Special Effects=False +Synth=False +Uncategorized=False +User Created=False +Advanced=False + +[DetailCustomWidgetExpansion] +WorldSettings=WorldSettings.WorldPartitionSetup.RuntimeHash,WorldSettings.GameMode.SelectedGameModeDetails +WorldPartitionRuntimeHashSet= +MaterialEditorInstanceConstant=MaterialEditorInstanceConstant.ParameterGroups.Global Scalar Parameter Values,MaterialEditorInstanceConstant.ParameterGroups.Grid Properties,MaterialEditorInstanceConstant.ParameterGroups.Surface Properties +MaterialInstanceConstant=MaterialEditorInstanceConstant.ParameterGroups.Global Scalar Parameter Values,MaterialEditorInstanceConstant.ParameterGroups.Grid Properties,MaterialEditorInstanceConstant.ParameterGroups.Surface Properties +GeneralProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +CryptoKeysSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GameplayTagsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GameMapsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MoviePlayerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ProjectPackagingSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +HardwareTargetingSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AssetManagerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AssetToolsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +SlateRHIRendererSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +WidgetStateSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AISystem=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AnimationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AnimationModifierSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AudioSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ChaosSolverSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +CineCameraSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +CollisionProfile=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ConsoleSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ControlRigSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +CookerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +CrowdManager=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DataDrivenConsoleVariableSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DebugCameraControllerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +OptimusSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +EnhancedInputDeveloperSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +InputModifierSmoothDelta= +InputModifierDeadZone= +InputModifierResponseCurveExponential= +InputModifierFOVScaling= +InputTriggerDown= +InputTriggerPressed= +InputTriggerReleased= +InputTriggerHold= +InputTriggerHoldAndRelease= +InputTriggerTap= +InputTriggerPulse= +EnhancedInputEditorProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MegascansMaterialParentSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +InterchangeFbxSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GameplayDebuggerConfig=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GarbageCollectionSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +Engine=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GLTFPipelineSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +HierarchicalLODSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +InputSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +InterchangeProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LandscapeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LevelSequenceProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MassSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MaterialXPipelineSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MeshBudgetProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MeshDrawCommandStatsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MetaSoundSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +RecastNavMesh=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NavigationSystemV1=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NetworkSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ObjectMixerEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +PhysicsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +RendererSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +RendererOverrideSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +SlateSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +StateTreeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +StreamingSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +TextureEncodingProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +UsdProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +UserInterfaceSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +VirtualTexturePoolConfig=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +WorldPartitionSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LevelEditor2DSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +EditorProjectAppearanceSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +EditorProjectAssetSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +BlueprintEditorProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ClassViewerProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ContentBrowserCollectionProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DataValidationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DDCProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DocumentationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +EditorUtilityWidgetProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ProxyLODMeshSimplificationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LevelEditorProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LevelInstanceEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MovieSceneToolsProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MeshSimplificationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +PaperImporterSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +EditorPerformanceProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +SourceControlPreferences=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +RigVMProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +SkeletalMeshSimplificationSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +PlasticSourceControlProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +StructViewerProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +TextureImportSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +UMGEditorProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AndroidRuntimeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ShaderPlatformQualitySettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AndroidSDKSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +IOSRuntimeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LinuxTargetSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MacTargetSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +WindowsTargetSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +XcodeProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AndroidFileServerRuntimeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +AvfMediaSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +DataflowSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +FractureModeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GameplayCamerasSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GameplayCamerasEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GeometryCacheStreamerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GooglePADRuntimeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +GroomPluginSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +HoldoutCompositeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ImgMediaSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ToolPresetProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LevelSequenceEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LiveLinkSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LiveLinkComponentSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +LiveLinkSequencerSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MetaHumanSDKSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ModelingToolsEditorModeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ModelingComponentsSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NiagaraSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NiagaraEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NNEDenoiserSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +NNERuntimeORTSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +PaperRuntimeSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +PythonScriptPluginSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +RenderDocPluginSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +ResonanceAudioSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +TakeRecorderProjectSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +MovieSceneTakeSettings= +TakeRecorderMicrophoneAudioSourceSettings= +TakeRecorderMicrophoneAudioManager= +MovieSceneAnimationTrackRecorderEditorSettings= +TakeRecorderWorldSourceSettings= +TcpMessagingSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +TemplateSequenceEditorSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +UdpMessagingSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +WmfMediaSettings=EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierSmoothDelta,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierDeadZone,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierResponseCurveExponential,EnhancedInputDeveloperSettings.Modifier Default Values.InputModifierFOVScaling,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerDown,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPressed,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerPulse,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerReleased,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHold,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerHoldAndRelease,EnhancedInputDeveloperSettings.Trigger Default Values.InputTriggerTap +InputMappingContext=InputMappingContext.Mappings.ActionMappings,InputMappingContext.Mappings.ActionMappings./Game/TopDown/Input/Actions/IA_SetDestination_Click.IA_SetDestination_Click,InputMappingContext.Mappings.ActionMappings./Game/TopDown/Input/Actions/IA_SetDestination_Touch.IA_SetDestination_Touch +InputAction= +CameraComponent=CameraComponent.PostProcess.Lens,CameraComponent.PostProcess.Lens +PropertyWrapper=PropertyWrapper.DefaultValueCategory.SkillArrays +BP_PawnEntity_C=PropertyWrapper.DefaultValueCategory.SkillArrays +CreateSkillsForPawn=PropertyWrapper.DefaultValueCategory.SkillArrays +K2Node_VariableGet=PropertyWrapper.DefaultValueCategory.SkillArrays +CreateSkillsForPawn_8=PropertyWrapper.DefaultValueCategory.SkillArrays +WBP_SkillContainer_C=PropertyWrapper.DefaultValueCategory.SkillArrays +K2Node_MacroInstance=PropertyWrapper.DefaultValueCategory.SkillArrays +WBP_SkillCard_C=PropertyWrapper.DefaultValueCategory.SkillArrays +BP_Dabaza_GameMode_C= +EdGraph=PropertyWrapper.DefaultValueCategory.SkillArrays +AddSkillUI=PropertyWrapper.DefaultValueCategory.SkillArrays +AddSkillUI_4=PropertyWrapper.DefaultValueCategory.SkillArrays +K2Node_VariableSet=PropertyWrapper.DefaultValueCategory.SkillArrays +GridSlot=PropertyWrapper.DefaultValueCategory.SkillArrays +Skill=PropertyWrapper.DefaultValueCategory.SkillArrays +GridPanel=PropertyWrapper.DefaultValueCategory.SkillArrays +K2Node_FunctionEntry=PropertyWrapper.DefaultValueCategory.SkillArrays +BP_DeepFish_C= + +[/Script/LiveCoding.LiveCodingSettings] +bEnabled=False +bPreloadEngineModules=False +bPreloadEnginePluginModules=False +bPreloadProjectModules=True +bPreloadProjectPluginModules=True + +[/Script/AssetManagerEditor.ReferenceViewerSettings] +bIsShowSearchableNames=True +bEnableCollectionFilter=False +bEnablePluginFilter=False +EditorOnlyReferenceFilterType=Game +bIsShowExternalReferencers=False +bFindPathEnabled=False + +[ContentBrowser] +ContentBrowserTab1.SelectedPaths=/Game/Gameplay +ContentBrowserTab1.PluginFilters= +ContentBrowserTab1.SourcesExpanded=True +ContentBrowserTab1.IsLocked=False +ContentBrowserTab1.FavoritesAreaExpanded=False +ContentBrowserTab1.PathAreaExpanded=True +ContentBrowserTab1.CollectionAreaExpanded=False +ContentBrowserTab1.FavoritesSearchAreaExpanded=False +ContentBrowserTab1.PathSearchAreaExpanded=False +ContentBrowserTab1.CollectionSearchAreaExpanded=False +ContentBrowserTab1.VerticalSplitter.FixedSlotSize0=150 +ContentBrowserTab1.VerticalSplitter.SlotSize1=0.75 +ContentBrowserTab1.FavoriteSplitter.SlotSize0=0.200000003 +ContentBrowserTab1.FavoriteSplitter.SlotSize1=0.800000012 +ContentBrowserTab1.FavoriteSplitter.SlotSize2=0.400000006 +ContentBrowserTab1.Favorites.SelectedPaths= +FavoritePaths= +ContentBrowserTab1.SelectedCollections= +ContentBrowserTab1.ExpandedCollections= +ContentBrowserTab1.ThumbnailSize=2 +ContentBrowserTab1.CurrentViewType=1 +ContentBrowserTab1.ZoomScale=0 +AssetPropertyPicker.ThumbnailSize=2 +AssetPropertyPicker.CurrentViewType=0 +AssetPropertyPicker.ZoomScale=0 +ContentBrowserTab1.JumpMRU=/All/Game/Gameplay +ContentBrowserTab1.JumpMRU=/All/Game/Maps +ContentBrowserTab1.JumpMRU=/All/Game/TopDown/Input +ContentBrowserTab1.JumpMRU=/All/Game/TopDown/Maps +ContentBrowserTab1.JumpMRU=/All/Game/TopDown +ContentBrowserTab1.JumpMRU=/All/Game/Textures +ContentBrowserTab1.JumpMRU=/All/Game/DataTable +ContentBrowserTab1.JumpMRU=/All/Game/Deep_Hunter +ContentBrowserTab1.JumpMRU=/All/Game/UI +ContentBrowserTab1.JumpMRU=/All/Game +ContentBrowserTab1.JumpMRU=/All/Game/Characters +ContentBrowserTab1.JumpMRU=/All/Game/LevelPrototyping +ContentBrowserTab1.JumpMRU=/All/Game/UI/Mats +ContentBrowserTab1.JumpMRU=/All/Game/Textures/Skill +ContentBrowserTab1.JumpMRU=/All/Game/TopDown/Input/Actions +ToolbarOpenBPClass.ThumbnailSize=2 +ToolbarOpenBPClass.CurrentViewType=0 +ToolbarOpenBPClass.ZoomScale=0 +GlobalAssetPicker.ThumbnailSize=2 +GlobalAssetPicker.CurrentViewType=0 +GlobalAssetPicker.ZoomScale=0 + +[EditorStartup] +LastLevel=/Game/Maps/Dabaza + +[ModuleFileTracking] +ProjectFish.TimeStamp=2025.06.17-22.57.01 +ProjectFish.LastCompileMethod=External +StorageServerClient.TimeStamp=2025.05.21-04.22.07 +StorageServerClient.LastCompileMethod=Unknown +CookOnTheFly.TimeStamp=2025.05.21-04.21.59 +CookOnTheFly.LastCompileMethod=Unknown +StreamingFile.TimeStamp=2025.05.21-04.22.07 +StreamingFile.LastCompileMethod=Unknown +NetworkFile.TimeStamp=2025.05.21-04.22.04 +NetworkFile.LastCompileMethod=Unknown +PakFile.TimeStamp=2025.05.21-04.22.04 +PakFile.LastCompileMethod=Unknown +RSA.TimeStamp=2025.05.21-04.22.05 +RSA.LastCompileMethod=Unknown +SandboxFile.TimeStamp=2025.05.21-04.22.05 +SandboxFile.LastCompileMethod=Unknown +CoreUObject.TimeStamp=2025.05.21-04.21.59 +CoreUObject.LastCompileMethod=Unknown +Engine.TimeStamp=2025.05.21-04.22.02 +Engine.LastCompileMethod=Unknown +UniversalObjectLocator.TimeStamp=2025.05.21-04.22.07 +UniversalObjectLocator.LastCompileMethod=Unknown +Renderer.TimeStamp=2025.05.21-04.22.05 +Renderer.LastCompileMethod=Unknown +AnimGraphRuntime.TimeStamp=2025.05.21-04.21.57 +AnimGraphRuntime.LastCompileMethod=Unknown +SlateRHIRenderer.TimeStamp=2025.05.21-04.22.07 +SlateRHIRenderer.LastCompileMethod=Unknown +Landscape.TimeStamp=2025.05.21-04.22.03 +Landscape.LastCompileMethod=Unknown +RHICore.TimeStamp=2025.05.21-04.22.05 +RHICore.LastCompileMethod=Unknown +RenderCore.TimeStamp=2025.05.21-04.22.04 +RenderCore.LastCompileMethod=Unknown +TextureCompressor.TimeStamp=2025.05.21-04.22.07 +TextureCompressor.LastCompileMethod=Unknown +OpenColorIOWrapper.TimeStamp=2025.05.21-04.22.04 +OpenColorIOWrapper.LastCompileMethod=Unknown +Virtualization.TimeStamp=2025.05.21-04.22.08 +Virtualization.LastCompileMethod=Unknown +MessageLog.TimeStamp=2025.05.21-04.22.04 +MessageLog.LastCompileMethod=Unknown +AudioEditor.TimeStamp=2025.05.21-04.21.58 +AudioEditor.LastCompileMethod=Unknown +PropertyEditor.TimeStamp=2025.05.21-04.22.04 +PropertyEditor.LastCompileMethod=Unknown +AnimationModifiers.TimeStamp=2025.05.21-04.21.57 +AnimationModifiers.LastCompileMethod=Unknown +IoStoreOnDemand.TimeStamp=2025.05.21-04.22.03 +IoStoreOnDemand.LastCompileMethod=Unknown +OpusAudioDecoder.TimeStamp=2025.05.21-04.22.04 +OpusAudioDecoder.LastCompileMethod=Unknown +VorbisAudioDecoder.TimeStamp=2025.05.21-04.22.08 +VorbisAudioDecoder.LastCompileMethod=Unknown +AdpcmAudioDecoder.TimeStamp=2025.05.21-04.21.57 +AdpcmAudioDecoder.LastCompileMethod=Unknown +BinkAudioDecoder.TimeStamp=2025.05.21-04.21.58 +BinkAudioDecoder.LastCompileMethod=Unknown +RadAudioDecoder.TimeStamp=2025.05.21-04.22.04 +RadAudioDecoder.LastCompileMethod=Unknown +FastBuildController.TimeStamp=2025.05.21-04.27.25 +FastBuildController.LastCompileMethod=Unknown +UbaController.TimeStamp=2025.05.21-04.29.24 +UbaController.LastCompileMethod=Unknown +XGEController.TimeStamp=2025.05.21-04.29.38 +XGEController.LastCompileMethod=Unknown +PerforceSourceControl.TimeStamp=2025.05.21-04.25.30 +PerforceSourceControl.LastCompileMethod=Unknown +SourceControl.TimeStamp=2025.05.21-04.22.07 +SourceControl.LastCompileMethod=Unknown +PlasticSourceControl.TimeStamp=2025.05.21-04.25.30 +PlasticSourceControl.LastCompileMethod=Unknown +PlatformCrypto.TimeStamp=2025.05.21-04.26.54 +PlatformCrypto.LastCompileMethod=Unknown +PlatformCryptoTypes.TimeStamp=2025.05.21-04.26.54 +PlatformCryptoTypes.LastCompileMethod=Unknown +PlatformCryptoOpenSSL.TimeStamp=2025.05.21-04.26.54 +PlatformCryptoOpenSSL.LastCompileMethod=Unknown +PythonScriptPluginPreload.TimeStamp=2025.05.21-04.26.54 +PythonScriptPluginPreload.LastCompileMethod=Unknown +DesktopPlatform.TimeStamp=2025.05.21-04.21.59 +DesktopPlatform.LastCompileMethod=Unknown +ChaosCloth.TimeStamp=2025.05.21-04.25.22 +ChaosCloth.LastCompileMethod=Unknown +RenderDocPlugin.TimeStamp=2025.05.21-04.25.30 +RenderDocPlugin.LastCompileMethod=Unknown +PixWinPlugin.TimeStamp=2025.05.21-04.25.30 +PixWinPlugin.LastCompileMethod=Unknown +DatasmithContent.TimeStamp=2025.05.21-04.25.42 +DatasmithContent.LastCompileMethod=Unknown +GLTFExporter.TimeStamp=2025.05.21-04.25.47 +GLTFExporter.LastCompileMethod=Unknown +VariantManagerContent.TimeStamp=2025.05.21-04.25.47 +VariantManagerContent.LastCompileMethod=Unknown +NiagaraShader.TimeStamp=2025.05.21-04.27.25 +NiagaraShader.LastCompileMethod=Unknown +NiagaraVertexFactories.TimeStamp=2025.05.21-04.27.25 +NiagaraVertexFactories.LastCompileMethod=Unknown +ExrReaderGpu.TimeStamp=2025.05.21-04.27.43 +ExrReaderGpu.LastCompileMethod=Unknown +NNEDenoiserShaders.TimeStamp=2025.05.21-04.27.53 +NNEDenoiserShaders.LastCompileMethod=Unknown +LauncherChunkInstaller.TimeStamp=2025.05.21-04.28.03 +LauncherChunkInstaller.LastCompileMethod=Unknown +WmfMedia.TimeStamp=2025.05.21-04.27.50 +WmfMedia.LastCompileMethod=Unknown +Media.TimeStamp=2025.05.21-04.22.04 +Media.LastCompileMethod=Unknown +EditorTelemetry.TimeStamp=2025.05.21-04.26.20 +EditorTelemetry.LastCompileMethod=Unknown +EditorPerformance.TimeStamp=2025.05.21-04.26.20 +EditorPerformance.LastCompileMethod=Unknown +NFORDenoise.TimeStamp=2025.05.21-04.26.40 +NFORDenoise.LastCompileMethod=Unknown +AnalyticsLog.TimeStamp=2025.05.21-04.26.57 +AnalyticsLog.LastCompileMethod=Unknown +AnalyticsHorde.TimeStamp=2025.05.21-04.26.57 +AnalyticsHorde.LastCompileMethod=Unknown +StudioTelemetry.TimeStamp=2025.05.21-04.26.57 +StudioTelemetry.LastCompileMethod=Unknown +Analytics.TimeStamp=2025.05.21-04.21.57 +Analytics.LastCompileMethod=Unknown +TelemetryUtils.TimeStamp=2025.05.21-04.22.07 +TelemetryUtils.LastCompileMethod=Unknown +ChunkDownloader.TimeStamp=2025.05.21-04.28.04 +ChunkDownloader.LastCompileMethod=Unknown +ComputeFramework.TimeStamp=2025.05.21-04.28.04 +ComputeFramework.LastCompileMethod=Unknown +ExampleDeviceProfileSelector.TimeStamp=2025.05.21-04.28.07 +ExampleDeviceProfileSelector.LastCompileMethod=Unknown +HairStrandsCore.TimeStamp=2025.05.21-04.28.25 +HairStrandsCore.LastCompileMethod=Unknown +WindowsDeviceProfileSelector.TimeStamp=2025.05.21-04.29.23 +WindowsDeviceProfileSelector.LastCompileMethod=Unknown +AISupportModule.TimeStamp=2025.05.21-04.25.09 +AISupportModule.LastCompileMethod=Unknown +ACLPlugin.TimeStamp=2025.05.21-04.25.10 +ACLPlugin.LastCompileMethod=Unknown +OptimusSettings.TimeStamp=2025.05.21-04.25.17 +OptimusSettings.LastCompileMethod=Unknown +EOSShared.TimeStamp=2025.05.21-04.27.55 +EOSShared.LastCompileMethod=Unknown +OnlineServicesInterface.TimeStamp=2025.05.21-04.27.55 +OnlineServicesInterface.LastCompileMethod=Unknown +OnlineServicesCommon.TimeStamp=2025.05.21-04.27.55 +OnlineServicesCommon.LastCompileMethod=Unknown +OnlineServicesCommonEngineUtils.TimeStamp=2025.05.21-04.27.55 +OnlineServicesCommonEngineUtils.LastCompileMethod=Unknown +OnlineSubsystem.TimeStamp=2025.05.21-04.27.57 +OnlineSubsystem.LastCompileMethod=Unknown +HTTP.TimeStamp=2025.05.21-04.22.03 +HTTP.LastCompileMethod=Unknown +SSL.TimeStamp=2025.05.21-04.22.07 +SSL.LastCompileMethod=Unknown +XMPP.TimeStamp=2025.05.21-04.22.08 +XMPP.LastCompileMethod=Unknown +WebSockets.TimeStamp=2025.05.21-04.22.08 +WebSockets.LastCompileMethod=Unknown +OnlineSubsystemNULL.TimeStamp=2025.05.21-04.27.58 +OnlineSubsystemNULL.LastCompileMethod=Unknown +Sockets.TimeStamp=2025.05.21-04.22.07 +Sockets.LastCompileMethod=Unknown +OnlineSubsystemUtils.TimeStamp=2025.05.21-04.27.58 +OnlineSubsystemUtils.LastCompileMethod=Unknown +OnlineBlueprintSupport.TimeStamp=2025.05.21-04.27.58 +OnlineBlueprintSupport.LastCompileMethod=Unknown +HoldoutComposite.TimeStamp=2025.05.21-04.26.19 +HoldoutComposite.LastCompileMethod=Unknown +D3D12RHI.TimeStamp=2025.05.21-04.21.59 +D3D12RHI.LastCompileMethod=Unknown +WindowsPlatformFeatures.TimeStamp=2025.05.21-04.22.08 +WindowsPlatformFeatures.LastCompileMethod=Unknown +GameplayMediaEncoder.TimeStamp=2025.05.21-04.22.02 +GameplayMediaEncoder.LastCompileMethod=Unknown +AVEncoder.TimeStamp=2025.05.21-04.21.58 +AVEncoder.LastCompileMethod=Unknown +Chaos.TimeStamp=2025.05.21-04.21.58 +Chaos.LastCompileMethod=Unknown +GeometryCore.TimeStamp=2025.05.21-04.22.02 +GeometryCore.LastCompileMethod=Unknown +ChaosSolverEngine.TimeStamp=2025.05.21-04.21.58 +ChaosSolverEngine.LastCompileMethod=Unknown +ChaosVDRuntime.TimeStamp=2025.05.21-04.21.58 +ChaosVDRuntime.LastCompileMethod=Unknown +DirectoryWatcher.TimeStamp=2025.05.21-04.22.00 +DirectoryWatcher.LastCompileMethod=Unknown +Settings.TimeStamp=2025.05.21-04.22.05 +Settings.LastCompileMethod=Unknown +InputCore.TimeStamp=2025.05.21-04.22.03 +InputCore.LastCompileMethod=Unknown +TargetPlatform.TimeStamp=2025.05.21-04.22.07 +TargetPlatform.LastCompileMethod=Unknown +TurnkeySupport.TimeStamp=2025.05.21-04.22.07 +TurnkeySupport.LastCompileMethod=Unknown +TextureFormat.TimeStamp=2025.05.21-04.22.07 +TextureFormat.LastCompileMethod=Unknown +TextureFormatASTC.TimeStamp=2025.05.21-04.22.07 +TextureFormatASTC.LastCompileMethod=Unknown +TextureFormatDXT.TimeStamp=2025.05.21-04.22.07 +TextureFormatDXT.LastCompileMethod=Unknown +TextureFormatETC2.TimeStamp=2025.05.21-04.22.07 +TextureFormatETC2.LastCompileMethod=Unknown +TextureFormatIntelISPCTexComp.TimeStamp=2025.05.21-04.22.07 +TextureFormatIntelISPCTexComp.LastCompileMethod=Unknown +TextureFormatUncompressed.TimeStamp=2025.05.21-04.22.07 +TextureFormatUncompressed.LastCompileMethod=Unknown +TextureFormatOodle.TimeStamp=2025.05.21-04.25.30 +TextureFormatOodle.LastCompileMethod=Unknown +ImageWrapper.TimeStamp=2025.05.21-04.22.03 +ImageWrapper.LastCompileMethod=Unknown +AndroidTargetPlatform.TimeStamp=2025.05.21-04.21.41 +AndroidTargetPlatform.LastCompileMethod=Unknown +AndroidTargetPlatformSettings.TimeStamp=2025.05.21-04.21.41 +AndroidTargetPlatformSettings.LastCompileMethod=Unknown +AndroidTargetPlatformControls.TimeStamp=2025.05.21-04.21.41 +AndroidTargetPlatformControls.LastCompileMethod=Unknown +IOSTargetPlatform.TimeStamp=2025.05.21-04.21.47 +IOSTargetPlatform.LastCompileMethod=Unknown +IOSTargetPlatformSettings.TimeStamp=2025.05.21-04.21.47 +IOSTargetPlatformSettings.LastCompileMethod=Unknown +IOSTargetPlatformControls.TimeStamp=2025.05.21-04.21.47 +IOSTargetPlatformControls.LastCompileMethod=Unknown +LinuxTargetPlatform.TimeStamp=2025.05.21-04.21.47 +LinuxTargetPlatform.LastCompileMethod=Unknown +LinuxTargetPlatformSettings.TimeStamp=2025.05.21-04.21.47 +LinuxTargetPlatformSettings.LastCompileMethod=Unknown +LinuxTargetPlatformControls.TimeStamp=2025.05.21-04.21.47 +LinuxTargetPlatformControls.LastCompileMethod=Unknown +LinuxArm64TargetPlatform.TimeStamp=2025.05.21-04.21.48 +LinuxArm64TargetPlatform.LastCompileMethod=Unknown +LinuxArm64TargetPlatformSettings.TimeStamp=2025.05.21-04.21.48 +LinuxArm64TargetPlatformSettings.LastCompileMethod=Unknown +LinuxArm64TargetPlatformControls.TimeStamp=2025.05.21-04.21.48 +LinuxArm64TargetPlatformControls.LastCompileMethod=Unknown +MacTargetPlatform.TimeStamp=2025.05.21-04.22.03 +MacTargetPlatform.LastCompileMethod=Unknown +MacTargetPlatformSettings.TimeStamp=2025.05.21-04.22.03 +MacTargetPlatformSettings.LastCompileMethod=Unknown +MacTargetPlatformControls.TimeStamp=2025.05.21-04.22.03 +MacTargetPlatformControls.LastCompileMethod=Unknown +TVOSTargetPlatform.TimeStamp=2025.05.21-04.21.47 +TVOSTargetPlatform.LastCompileMethod=Unknown +TVOSTargetPlatformSettings.TimeStamp=2025.05.21-04.21.47 +TVOSTargetPlatformSettings.LastCompileMethod=Unknown +TVOSTargetPlatformControls.TimeStamp=2025.05.21-04.21.47 +TVOSTargetPlatformControls.LastCompileMethod=Unknown +WindowsTargetPlatform.TimeStamp=2025.05.21-04.22.08 +WindowsTargetPlatform.LastCompileMethod=Unknown +WindowsTargetPlatformSettings.TimeStamp=2025.05.21-04.22.08 +WindowsTargetPlatformSettings.LastCompileMethod=Unknown +WindowsTargetPlatformControls.TimeStamp=2025.05.21-04.22.08 +WindowsTargetPlatformControls.LastCompileMethod=Unknown +AudioFormatOPUS.TimeStamp=2025.05.21-04.21.58 +AudioFormatOPUS.LastCompileMethod=Unknown +AudioFormatOGG.TimeStamp=2025.05.21-04.21.58 +AudioFormatOGG.LastCompileMethod=Unknown +AudioFormatADPCM.TimeStamp=2025.05.21-04.21.58 +AudioFormatADPCM.LastCompileMethod=Unknown +AudioFormatBINK.TimeStamp=2025.05.21-04.21.58 +AudioFormatBINK.LastCompileMethod=Unknown +AudioFormatRAD.TimeStamp=2025.05.21-04.21.58 +AudioFormatRAD.LastCompileMethod=Unknown +ShaderFormatVectorVM.TimeStamp=2025.05.21-04.22.05 +ShaderFormatVectorVM.LastCompileMethod=Unknown +ShaderFormatD3D.TimeStamp=2025.05.21-04.22.05 +ShaderFormatD3D.LastCompileMethod=Unknown +ShaderFormatOpenGL.TimeStamp=2025.05.21-04.22.05 +ShaderFormatOpenGL.LastCompileMethod=Unknown +VulkanShaderFormat.TimeStamp=2025.05.21-04.22.08 +VulkanShaderFormat.LastCompileMethod=Unknown +MetalShaderFormat.TimeStamp=2025.05.21-04.22.04 +MetalShaderFormat.LastCompileMethod=Unknown +DerivedDataCache.TimeStamp=2025.05.21-04.21.59 +DerivedDataCache.LastCompileMethod=Unknown +ShaderPreprocessor.TimeStamp=2025.05.21-04.22.05 +ShaderPreprocessor.LastCompileMethod=Unknown +NullInstallBundleManager.TimeStamp=2025.05.21-04.22.04 +NullInstallBundleManager.LastCompileMethod=Unknown +AssetRegistry.TimeStamp=2025.05.21-04.21.57 +AssetRegistry.LastCompileMethod=Unknown +TargetDeviceServices.TimeStamp=2025.05.21-04.22.07 +TargetDeviceServices.LastCompileMethod=Unknown +MeshUtilities.TimeStamp=2025.05.21-04.22.04 +MeshUtilities.LastCompileMethod=Unknown +MaterialBaking.TimeStamp=2025.05.21-04.22.04 +MaterialBaking.LastCompileMethod=Unknown +MeshMergeUtilities.TimeStamp=2025.05.21-04.22.04 +MeshMergeUtilities.LastCompileMethod=Unknown +MeshReductionInterface.TimeStamp=2025.05.21-04.22.04 +MeshReductionInterface.LastCompileMethod=Unknown +QuadricMeshReduction.TimeStamp=2025.05.21-04.22.04 +QuadricMeshReduction.LastCompileMethod=Unknown +ProxyLODMeshReduction.TimeStamp=2025.05.21-04.25.30 +ProxyLODMeshReduction.LastCompileMethod=Unknown +SkeletalMeshReduction.TimeStamp=2025.05.21-04.26.54 +SkeletalMeshReduction.LastCompileMethod=Unknown +MeshBoneReduction.TimeStamp=2025.05.21-04.22.04 +MeshBoneReduction.LastCompileMethod=Unknown +StaticMeshDescription.TimeStamp=2025.05.21-04.22.07 +StaticMeshDescription.LastCompileMethod=Unknown +GeometryProcessingInterfaces.TimeStamp=2025.05.21-04.22.02 +GeometryProcessingInterfaces.LastCompileMethod=Unknown +NaniteBuilder.TimeStamp=2025.05.21-04.22.04 +NaniteBuilder.LastCompileMethod=Unknown +MeshBuilder.TimeStamp=2025.05.21-04.22.04 +MeshBuilder.LastCompileMethod=Unknown +KismetCompiler.TimeStamp=2025.05.21-04.22.03 +KismetCompiler.LastCompileMethod=Unknown +MovieSceneTools.TimeStamp=2025.05.21-04.22.04 +MovieSceneTools.LastCompileMethod=Unknown +Sequencer.TimeStamp=2025.05.21-04.22.05 +Sequencer.LastCompileMethod=Unknown +CurveEditor.TimeStamp=2025.05.21-04.21.59 +CurveEditor.LastCompileMethod=Unknown +AssetDefinition.TimeStamp=2025.05.21-04.21.57 +AssetDefinition.LastCompileMethod=Unknown +Core.TimeStamp=2025.05.21-04.21.59 +Core.LastCompileMethod=Unknown +Networking.TimeStamp=2025.05.21-04.22.04 +Networking.LastCompileMethod=Unknown +LiveCoding.TimeStamp=2025.05.21-04.22.03 +LiveCoding.LastCompileMethod=Unknown +HeadMountedDisplay.TimeStamp=2025.05.21-04.22.02 +HeadMountedDisplay.LastCompileMethod=Unknown +SourceCodeAccess.TimeStamp=2025.05.21-04.22.07 +SourceCodeAccess.LastCompileMethod=Unknown +Messaging.TimeStamp=2025.05.21-04.22.04 +Messaging.LastCompileMethod=Unknown +MRMesh.TimeStamp=2025.05.21-04.22.04 +MRMesh.LastCompileMethod=Unknown +UnrealEd.TimeStamp=2025.05.21-04.22.07 +UnrealEd.LastCompileMethod=Unknown +LandscapeEditorUtilities.TimeStamp=2025.05.21-04.22.03 +LandscapeEditorUtilities.LastCompileMethod=Unknown +SubobjectDataInterface.TimeStamp=2025.05.21-04.22.07 +SubobjectDataInterface.LastCompileMethod=Unknown +SlateCore.TimeStamp=2025.05.21-04.22.07 +SlateCore.LastCompileMethod=Unknown +Slate.TimeStamp=2025.05.21-04.22.07 +Slate.LastCompileMethod=Unknown +SlateReflector.TimeStamp=2025.05.21-04.22.07 +SlateReflector.LastCompileMethod=Unknown +EditorStyle.TimeStamp=2025.05.21-04.22.00 +EditorStyle.LastCompileMethod=Unknown +UMG.TimeStamp=2025.05.21-04.22.07 +UMG.LastCompileMethod=Unknown +UMGEditor.TimeStamp=2025.05.21-04.22.07 +UMGEditor.LastCompileMethod=Unknown +AssetTools.TimeStamp=2025.05.21-04.21.58 +AssetTools.LastCompileMethod=Unknown +ScriptableEditorWidgets.TimeStamp=2025.05.21-04.22.05 +ScriptableEditorWidgets.LastCompileMethod=Unknown +CollisionAnalyzer.TimeStamp=2025.05.21-04.21.58 +CollisionAnalyzer.LastCompileMethod=Unknown +WorkspaceMenuStructure.TimeStamp=2025.05.21-04.22.08 +WorkspaceMenuStructure.LastCompileMethod=Unknown +FunctionalTesting.TimeStamp=2025.05.21-04.22.02 +FunctionalTesting.LastCompileMethod=Unknown +BehaviorTreeEditor.TimeStamp=2025.05.21-04.21.58 +BehaviorTreeEditor.LastCompileMethod=Unknown +GameplayTasksEditor.TimeStamp=2025.05.21-04.22.02 +GameplayTasksEditor.LastCompileMethod=Unknown +StringTableEditor.TimeStamp=2025.05.21-04.22.07 +StringTableEditor.LastCompileMethod=Unknown +VREditor.TimeStamp=2025.05.21-04.22.08 +VREditor.LastCompileMethod=Unknown +Overlay.TimeStamp=2025.05.21-04.22.04 +Overlay.LastCompileMethod=Unknown +OverlayEditor.TimeStamp=2025.05.21-04.22.04 +OverlayEditor.LastCompileMethod=Unknown +MediaAssets.TimeStamp=2025.05.21-04.22.04 +MediaAssets.LastCompileMethod=Unknown +ClothingSystemRuntimeNv.TimeStamp=2025.05.21-04.21.58 +ClothingSystemRuntimeNv.LastCompileMethod=Unknown +ClothingSystemEditor.TimeStamp=2025.05.21-04.21.58 +ClothingSystemEditor.LastCompileMethod=Unknown +AnimationDataController.TimeStamp=2025.05.21-04.21.57 +AnimationDataController.LastCompileMethod=Unknown +TimeManagement.TimeStamp=2025.05.21-04.22.07 +TimeManagement.LastCompileMethod=Unknown +AnimGraph.TimeStamp=2025.05.21-04.21.57 +AnimGraph.LastCompileMethod=Unknown +WorldPartitionEditor.TimeStamp=2025.05.21-04.22.08 +WorldPartitionEditor.LastCompileMethod=Unknown +PacketHandler.TimeStamp=2025.05.21-04.22.04 +PacketHandler.LastCompileMethod=Unknown +NetworkReplayStreaming.TimeStamp=2025.05.21-04.22.04 +NetworkReplayStreaming.LastCompileMethod=Unknown +MassEntity.TimeStamp=2025.05.21-04.22.03 +MassEntity.LastCompileMethod=Unknown +MassEntityTestSuite.TimeStamp=2025.05.21-04.22.04 +MassEntityTestSuite.LastCompileMethod=Unknown +AndroidFileServer.TimeStamp=2025.05.21-04.28.03 +AndroidFileServer.LastCompileMethod=Unknown +WindowsMoviePlayer.TimeStamp=2025.05.21-04.29.23 +WindowsMoviePlayer.LastCompileMethod=Unknown +WebMMoviePlayer.TimeStamp=2025.05.21-04.29.23 +WebMMoviePlayer.LastCompileMethod=Unknown +EnhancedInput.TimeStamp=2025.05.21-04.25.36 +EnhancedInput.LastCompileMethod=Unknown +InputBlueprintNodes.TimeStamp=2025.05.21-04.25.36 +InputBlueprintNodes.LastCompileMethod=Unknown +BlueprintGraph.TimeStamp=2025.05.21-04.21.58 +BlueprintGraph.LastCompileMethod=Unknown +EngineCameras.TimeStamp=2025.05.21-04.25.22 +EngineCameras.LastCompileMethod=Unknown +GameplayCameras.TimeStamp=2025.05.21-04.25.22 +GameplayCameras.LastCompileMethod=Unknown +AnimationSharing.TimeStamp=2025.05.21-04.25.25 +AnimationSharing.LastCompileMethod=Unknown +PropertyAccessNode.TimeStamp=2025.05.21-04.25.30 +PropertyAccessNode.LastCompileMethod=Unknown +NiagaraCore.TimeStamp=2025.05.21-04.27.25 +NiagaraCore.LastCompileMethod=Unknown +Niagara.TimeStamp=2025.05.21-04.27.25 +Niagara.LastCompileMethod=Unknown +NiagaraEditor.TimeStamp=2025.05.21-04.27.25 +NiagaraEditor.LastCompileMethod=Unknown +ContentBrowser.TimeStamp=2025.05.21-04.21.58 +ContentBrowser.LastCompileMethod=Unknown +ContentBrowserData.TimeStamp=2025.05.21-04.21.58 +ContentBrowserData.LastCompileMethod=Unknown +ToolMenus.TimeStamp=2025.05.21-04.22.07 +ToolMenus.LastCompileMethod=Unknown +LevelSequence.TimeStamp=2025.05.21-04.22.03 +LevelSequence.LastCompileMethod=Unknown +SignalProcessing.TimeStamp=2025.05.21-04.22.05 +SignalProcessing.LastCompileMethod=Unknown +NiagaraAnimNotifies.TimeStamp=2025.05.21-04.27.25 +NiagaraAnimNotifies.LastCompileMethod=Unknown +NiagaraSimCaching.TimeStamp=2025.05.21-04.27.38 +NiagaraSimCaching.LastCompileMethod=Unknown +NiagaraSimCachingEditor.TimeStamp=2025.05.21-04.27.38 +NiagaraSimCachingEditor.LastCompileMethod=Unknown +ImgMediaEngine.TimeStamp=2025.05.21-04.27.43 +ImgMediaEngine.LastCompileMethod=Unknown +NNERuntimeORT.TimeStamp=2025.05.21-04.27.54 +NNERuntimeORT.LastCompileMethod=Unknown +NNEEditor.TimeStamp=2025.05.21-04.22.04 +NNEEditor.LastCompileMethod=Unknown +AssetManagerEditor.TimeStamp=2025.05.21-04.25.30 +AssetManagerEditor.LastCompileMethod=Unknown +TreeMap.TimeStamp=2025.05.21-04.22.07 +TreeMap.LastCompileMethod=Unknown +LevelEditor.TimeStamp=2025.05.21-04.22.03 +LevelEditor.LastCompileMethod=Unknown +MainFrame.TimeStamp=2025.05.21-04.22.03 +MainFrame.LastCompileMethod=Unknown +HotReload.TimeStamp=2025.05.21-04.22.03 +HotReload.LastCompileMethod=Unknown +CommonMenuExtensions.TimeStamp=2025.05.21-04.21.58 +CommonMenuExtensions.LastCompileMethod=Unknown +PixelInspectorModule.TimeStamp=2025.05.21-04.22.04 +PixelInspectorModule.LastCompileMethod=Unknown +DataValidation.TimeStamp=2025.05.21-04.25.30 +DataValidation.LastCompileMethod=Unknown +GameplayTagsEditor.TimeStamp=2025.05.21-04.25.30 +GameplayTagsEditor.LastCompileMethod=Unknown +FacialAnimation.TimeStamp=2025.05.21-04.25.30 +FacialAnimation.LastCompileMethod=Unknown +FacialAnimationEditor.TimeStamp=2025.05.21-04.25.30 +FacialAnimationEditor.LastCompileMethod=Unknown +ChaosCaching.TimeStamp=2025.05.21-04.25.58 +ChaosCaching.LastCompileMethod=Unknown +ChaosCachingEditor.TimeStamp=2025.05.21-04.25.59 +ChaosCachingEditor.LastCompileMethod=Unknown +TakeRecorder.TimeStamp=2025.05.21-04.29.32 +TakeRecorder.LastCompileMethod=Unknown +FullBodyIK.TimeStamp=2025.05.21-04.26.21 +FullBodyIK.LastCompileMethod=Unknown +PBIK.TimeStamp=2025.05.21-04.26.21 +PBIK.LastCompileMethod=Unknown +PythonScriptPlugin.TimeStamp=2025.05.21-04.26.54 +PythonScriptPlugin.LastCompileMethod=Unknown +InterchangeNodes.TimeStamp=2025.05.21-04.27.38 +InterchangeNodes.LastCompileMethod=Unknown +InterchangeFactoryNodes.TimeStamp=2025.05.21-04.27.38 +InterchangeFactoryNodes.LastCompileMethod=Unknown +InterchangeImport.TimeStamp=2025.05.21-04.27.38 +InterchangeImport.LastCompileMethod=Unknown +InterchangePipelines.TimeStamp=2025.05.21-04.27.38 +InterchangePipelines.LastCompileMethod=Unknown +AudioSynesthesiaCore.TimeStamp=2025.05.21-04.28.04 +AudioSynesthesiaCore.LastCompileMethod=Unknown +AudioSynesthesia.TimeStamp=2025.05.21-04.28.04 +AudioSynesthesia.LastCompileMethod=Unknown +AudioAnalyzer.TimeStamp=2025.05.21-04.21.58 +AudioAnalyzer.LastCompileMethod=Unknown +CustomMeshComponent.TimeStamp=2025.05.21-04.28.04 +CustomMeshComponent.LastCompileMethod=Unknown +CableComponent.TimeStamp=2025.05.21-04.28.04 +CableComponent.LastCompileMethod=Unknown +LocationServicesBPLibrary.TimeStamp=2025.05.21-04.28.41 +LocationServicesBPLibrary.LastCompileMethod=Unknown +MetasoundGraphCore.TimeStamp=2025.05.21-04.28.41 +MetasoundGraphCore.LastCompileMethod=Unknown +MetasoundGenerator.TimeStamp=2025.05.21-04.28.41 +MetasoundGenerator.LastCompileMethod=Unknown +MetasoundFrontend.TimeStamp=2025.05.21-04.28.41 +MetasoundFrontend.LastCompileMethod=Unknown +MetasoundStandardNodes.TimeStamp=2025.05.21-04.28.41 +MetasoundStandardNodes.LastCompileMethod=Unknown +MetasoundEngine.TimeStamp=2025.05.21-04.28.41 +MetasoundEngine.LastCompileMethod=Unknown +WaveTable.TimeStamp=2025.05.21-04.29.23 +WaveTable.LastCompileMethod=Unknown +MetasoundEngineTest.TimeStamp=2025.05.21-04.28.41 +MetasoundEngineTest.LastCompileMethod=Unknown +MetasoundEditor.TimeStamp=2025.05.21-04.28.41 +MetasoundEditor.LastCompileMethod=Unknown +AudioWidgets.TimeStamp=2025.05.21-04.28.04 +AudioWidgets.LastCompileMethod=Unknown +AdvancedWidgets.TimeStamp=2025.05.21-04.21.57 +AdvancedWidgets.LastCompileMethod=Unknown +MsQuicRuntime.TimeStamp=2025.05.21-04.28.45 +MsQuicRuntime.LastCompileMethod=Unknown +ProceduralMeshComponent.TimeStamp=2025.05.21-04.29.04 +ProceduralMeshComponent.LastCompileMethod=Unknown +PropertyAccessEditor.TimeStamp=2025.05.21-04.29.04 +PropertyAccessEditor.LastCompileMethod=Unknown +ResonanceAudio.TimeStamp=2025.05.21-04.29.04 +ResonanceAudio.LastCompileMethod=Unknown +RigVM.TimeStamp=2025.05.21-04.29.05 +RigVM.LastCompileMethod=Unknown +RigVMDeveloper.TimeStamp=2025.05.21-04.29.05 +RigVMDeveloper.LastCompileMethod=Unknown +SignificanceManager.TimeStamp=2025.05.21-04.29.07 +SignificanceManager.LastCompileMethod=Unknown +SoundFields.TimeStamp=2025.05.21-04.29.07 +SoundFields.LastCompileMethod=Unknown +ActorSequence.TimeStamp=2025.05.21-04.27.53 +ActorSequence.LastCompileMethod=Unknown +Synthesis.TimeStamp=2025.05.21-04.29.08 +Synthesis.LastCompileMethod=Unknown +StateTreeModule.TimeStamp=2025.05.21-04.29.07 +StateTreeModule.LastCompileMethod=Unknown +TraceServices.TimeStamp=2025.05.21-04.22.07 +TraceServices.LastCompileMethod=Unknown +TraceAnalysis.TimeStamp=2025.05.21-04.22.07 +TraceAnalysis.LastCompileMethod=Unknown +StateTreeTestSuite.TimeStamp=2025.05.21-04.29.07 +StateTreeTestSuite.LastCompileMethod=Unknown +Paper2D.TimeStamp=2025.05.21-04.25.08 +Paper2D.LastCompileMethod=Unknown +EnvironmentQueryEditor.TimeStamp=2025.05.21-04.25.09 +EnvironmentQueryEditor.LastCompileMethod=Unknown +AnimationData.TimeStamp=2025.05.21-04.25.10 +AnimationData.LastCompileMethod=Unknown +TcpMessaging.TimeStamp=2025.05.21-04.27.53 +TcpMessaging.LastCompileMethod=Unknown +OptimusCore.TimeStamp=2025.05.21-04.25.15 +OptimusCore.LastCompileMethod=Unknown +OptimusDeveloper.TimeStamp=2025.05.21-04.25.15 +OptimusDeveloper.LastCompileMethod=Unknown +IKRig.TimeStamp=2025.05.21-04.25.22 +IKRig.LastCompileMethod=Unknown +IKRigDeveloper.TimeStamp=2025.05.21-04.25.22 +IKRigDeveloper.LastCompileMethod=Unknown +UdpMessaging.TimeStamp=2025.05.21-04.27.53 +UdpMessaging.LastCompileMethod=Unknown +ControlRig.TimeStamp=2025.05.21-04.25.10 +ControlRig.LastCompileMethod=Unknown +Constraints.TimeStamp=2025.05.21-04.21.58 +Constraints.LastCompileMethod=Unknown +ControlRigDeveloper.TimeStamp=2025.05.21-04.25.10 +ControlRigDeveloper.LastCompileMethod=Unknown +RigLogicLib.TimeStamp=2025.05.21-04.25.22 +RigLogicLib.LastCompileMethod=Unknown +RigLogicLibTest.TimeStamp=2025.05.21-04.25.22 +RigLogicLibTest.LastCompileMethod=Unknown +RigLogicDeveloper.TimeStamp=2025.05.21-04.25.22 +RigLogicDeveloper.LastCompileMethod=Unknown +Concert.TimeStamp=2025.05.21-04.25.25 +Concert.LastCompileMethod=Unknown +ConcertClient.TimeStamp=2025.05.21-04.25.25 +ConcertClient.LastCompileMethod=Unknown +ConcertTransport.TimeStamp=2025.05.21-04.25.25 +ConcertTransport.LastCompileMethod=Unknown +ConcertServer.TimeStamp=2025.05.21-04.25.25 +ConcertServer.LastCompileMethod=Unknown +RD.TimeStamp=2025.05.21-05.40.47 +RD.LastCompileMethod=Unknown +RiderLink.TimeStamp=2025.05.21-05.41.05 +RiderLink.LastCompileMethod=Unknown +RiderLogging.TimeStamp=2025.05.21-05.41.16 +RiderLogging.LastCompileMethod=Unknown +RiderDebuggerSupport.TimeStamp=2025.05.21-05.41.08 +RiderDebuggerSupport.LastCompileMethod=Unknown +SQLiteCore.TimeStamp=2025.05.21-04.28.07 +SQLiteCore.LastCompileMethod=Unknown +ConcertSyncCore.TimeStamp=2025.05.21-04.25.30 +ConcertSyncCore.LastCompileMethod=Unknown +ClassViewer.TimeStamp=2025.05.21-04.21.58 +ClassViewer.LastCompileMethod=Unknown +ChaosClothEditor.TimeStamp=2025.05.21-04.25.22 +ChaosClothEditor.LastCompileMethod=Unknown +ChaosVD.TimeStamp=2025.05.21-04.25.23 +ChaosVD.LastCompileMethod=Unknown +ChaosVDBlueprint.TimeStamp=2025.05.21-04.25.23 +ChaosVDBlueprint.LastCompileMethod=Unknown +InputEditor.TimeStamp=2025.05.21-04.25.36 +InputEditor.LastCompileMethod=Unknown +MeshPaintEditorMode.TimeStamp=2025.05.21-04.27.53 +MeshPaintEditorMode.LastCompileMethod=Unknown +MeshPaintingToolset.TimeStamp=2025.05.21-04.27.53 +MeshPaintingToolset.LastCompileMethod=Unknown +RenderGraphInsights.TimeStamp=2025.05.21-04.28.03 +RenderGraphInsights.LastCompileMethod=Unknown +TraceUtilities.TimeStamp=2025.05.21-04.29.24 +TraceUtilities.LastCompileMethod=Unknown +EditorTraceUtilities.TimeStamp=2025.05.21-04.29.24 +EditorTraceUtilities.LastCompileMethod=Unknown +TraceTools.TimeStamp=2025.05.21-04.22.07 +TraceTools.LastCompileMethod=Unknown +WorldMetricsCore.TimeStamp=2025.05.21-04.29.38 +WorldMetricsCore.LastCompileMethod=Unknown +WorldMetricsTest.TimeStamp=2025.05.21-04.29.38 +WorldMetricsTest.LastCompileMethod=Unknown +CsvMetrics.TimeStamp=2025.05.21-04.29.38 +CsvMetrics.LastCompileMethod=Unknown +GameplayCamerasUncookedOnly.TimeStamp=2025.05.21-04.25.22 +GameplayCamerasUncookedOnly.LastCompileMethod=Unknown +AnimationSharingEd.TimeStamp=2025.05.21-04.25.25 +AnimationSharingEd.LastCompileMethod=Unknown +CLionSourceCodeAccess.TimeStamp=2025.05.21-04.25.25 +CLionSourceCodeAccess.LastCompileMethod=Unknown +DumpGPUServices.TimeStamp=2025.05.21-04.25.30 +DumpGPUServices.LastCompileMethod=Unknown +GitSourceControl.TimeStamp=2025.05.21-04.25.30 +GitSourceControl.LastCompileMethod=Unknown +N10XSourceCodeAccess.TimeStamp=2025.05.21-04.25.30 +N10XSourceCodeAccess.LastCompileMethod=Unknown +PluginUtils.TimeStamp=2025.05.21-04.25.30 +PluginUtils.LastCompileMethod=Unknown +RiderSourceCodeAccess.TimeStamp=2025.05.21-04.25.30 +RiderSourceCodeAccess.LastCompileMethod=Unknown +SubversionSourceControl.TimeStamp=2025.05.21-04.25.30 +SubversionSourceControl.LastCompileMethod=Unknown +UObjectPlugin.TimeStamp=2025.05.21-04.25.30 +UObjectPlugin.LastCompileMethod=Unknown +VisualStudioCodeSourceCodeAccess.TimeStamp=2025.05.21-04.25.30 +VisualStudioCodeSourceCodeAccess.LastCompileMethod=Unknown +VisualStudioSourceCodeAccess.TimeStamp=2025.05.21-04.25.30 +VisualStudioSourceCodeAccess.LastCompileMethod=Unknown +DatasmithContentEditor.TimeStamp=2025.05.21-04.25.42 +DatasmithContentEditor.LastCompileMethod=Unknown +VariantManager.TimeStamp=2025.05.21-04.25.47 +VariantManager.LastCompileMethod=Unknown +VariantManagerContentEditor.TimeStamp=2025.05.21-04.25.47 +VariantManagerContentEditor.LastCompileMethod=Unknown +NiagaraBlueprintNodes.TimeStamp=2025.05.21-04.27.25 +NiagaraBlueprintNodes.LastCompileMethod=Unknown +NiagaraEditorWidgets.TimeStamp=2025.05.21-04.27.25 +NiagaraEditorWidgets.LastCompileMethod=Unknown +ImgMedia.TimeStamp=2025.05.21-04.27.43 +ImgMedia.LastCompileMethod=Unknown +MediaCompositing.TimeStamp=2025.05.21-04.27.43 +MediaCompositing.LastCompileMethod=Unknown +MediaPlate.TimeStamp=2025.05.21-04.27.44 +MediaPlate.LastCompileMethod=Unknown +MediaPlateEditor.TimeStamp=2025.05.21-04.27.44 +MediaPlateEditor.LastCompileMethod=Unknown +NNEDenoiser.TimeStamp=2025.05.21-04.27.53 +NNEDenoiser.LastCompileMethod=Unknown +BlueprintHeaderView.TimeStamp=2025.05.21-04.25.30 +BlueprintHeaderView.LastCompileMethod=Unknown +ChangelistReview.TimeStamp=2025.05.21-04.25.30 +ChangelistReview.LastCompileMethod=Unknown +ColorGradingEditor.TimeStamp=2025.05.21-04.25.30 +ColorGradingEditor.LastCompileMethod=Unknown +CryptoKeys.TimeStamp=2025.05.21-04.25.30 +CryptoKeys.LastCompileMethod=Unknown +CryptoKeysOpenSSL.TimeStamp=2025.05.21-04.25.30 +CryptoKeysOpenSSL.LastCompileMethod=Unknown +CurveEditorTools.TimeStamp=2025.05.21-04.25.30 +CurveEditorTools.LastCompileMethod=Unknown +EditorDebugTools.TimeStamp=2025.05.21-04.25.30 +EditorDebugTools.LastCompileMethod=Unknown +EditorScriptingUtilities.TimeStamp=2025.05.21-04.25.30 +EditorScriptingUtilities.LastCompileMethod=Unknown +MaterialAnalyzer.TimeStamp=2025.05.21-04.25.30 +MaterialAnalyzer.LastCompileMethod=Unknown +MeshLODToolset.TimeStamp=2025.05.21-04.25.30 +MeshLODToolset.LastCompileMethod=Unknown +MobileLauncherProfileWizard.TimeStamp=2025.05.21-04.25.30 +MobileLauncherProfileWizard.LastCompileMethod=Unknown +ModelingToolsEditorMode.TimeStamp=2025.05.21-04.25.30 +ModelingToolsEditorMode.LastCompileMethod=Unknown +PluginBrowser.TimeStamp=2025.05.21-04.25.30 +PluginBrowser.LastCompileMethod=Unknown +AdvancedRenamer.TimeStamp=2025.05.21-04.25.47 +AdvancedRenamer.LastCompileMethod=Unknown +SequencerAnimTools.TimeStamp=2025.05.21-04.25.31 +SequencerAnimTools.LastCompileMethod=Unknown +SpeedTreeImporter.TimeStamp=2025.05.21-04.25.31 +SpeedTreeImporter.LastCompileMethod=Unknown +UVEditor.TimeStamp=2025.05.21-04.25.31 +UVEditor.LastCompileMethod=Unknown +UVEditorTools.TimeStamp=2025.05.21-04.25.31 +UVEditorTools.LastCompileMethod=Unknown +UVEditorToolsEditorOnly.TimeStamp=2025.05.21-04.25.31 +UVEditorToolsEditorOnly.LastCompileMethod=Unknown +UMGWidgetPreview.TimeStamp=2025.05.21-04.25.31 +UMGWidgetPreview.LastCompileMethod=Unknown +StylusInput.TimeStamp=2025.05.21-04.25.31 +StylusInput.LastCompileMethod=Unknown +StylusInputDebugWidget.TimeStamp=2025.05.21-04.25.31 +StylusInputDebugWidget.LastCompileMethod=Unknown +WorldPartitionHLODUtilities.TimeStamp=2025.05.21-04.25.36 +WorldPartitionHLODUtilities.LastCompileMethod=Unknown +AutomationUtils.TimeStamp=2025.05.21-04.25.52 +AutomationUtils.LastCompileMethod=Unknown +AutomationUtilsEditor.TimeStamp=2025.05.21-04.25.52 +AutomationUtilsEditor.LastCompileMethod=Unknown +BackChannel.TimeStamp=2025.05.21-04.25.58 +BackChannel.LastCompileMethod=Unknown +ChaosNiagara.TimeStamp=2025.05.21-04.26.17 +ChaosNiagara.LastCompileMethod=Unknown +FractureEditor.TimeStamp=2025.05.21-04.25.59 +FractureEditor.LastCompileMethod=Unknown +ChaosSolverEditor.TimeStamp=2025.05.21-04.26.17 +ChaosSolverEditor.LastCompileMethod=Unknown +ChaosUserDataPT.TimeStamp=2025.05.21-04.26.17 +ChaosUserDataPT.LastCompileMethod=Unknown +DataflowAssetTools.TimeStamp=2025.05.21-04.26.19 +DataflowAssetTools.LastCompileMethod=Unknown +DataflowEnginePlugin.TimeStamp=2025.05.21-04.26.19 +DataflowEnginePlugin.LastCompileMethod=Unknown +DataflowSimulation.TimeStamp=2025.05.21-04.21.59 +DataflowSimulation.LastCompileMethod=Unknown +DataflowNodes.TimeStamp=2025.05.21-04.26.19 +DataflowNodes.LastCompileMethod=Unknown +TedsCore.TimeStamp=2025.05.21-04.26.20 +TedsCore.LastCompileMethod=Unknown +TypedElementFramework.TimeStamp=2025.05.21-04.22.07 +TypedElementFramework.LastCompileMethod=Unknown +MassEntityEditor.TimeStamp=2025.05.21-04.22.04 +MassEntityEditor.LastCompileMethod=Unknown +MassEntityDebugger.TimeStamp=2025.05.21-04.22.04 +MassEntityDebugger.LastCompileMethod=Unknown +TedsUI.TimeStamp=2025.05.21-04.26.20 +TedsUI.LastCompileMethod=Unknown +GeometryCollectionEditor.TimeStamp=2025.05.21-04.26.21 +GeometryCollectionEditor.LastCompileMethod=Unknown +GeometryCollectionTracks.TimeStamp=2025.05.21-04.26.21 +GeometryCollectionTracks.LastCompileMethod=Unknown +GeometryCollectionSequencer.TimeStamp=2025.05.21-04.26.21 +GeometryCollectionSequencer.LastCompileMethod=Unknown +GeometryCollectionEngine.TimeStamp=2025.05.21-04.22.02 +GeometryCollectionEngine.LastCompileMethod=Unknown +GeometryCollectionNodes.TimeStamp=2025.05.21-04.26.21 +GeometryCollectionNodes.LastCompileMethod=Unknown +GeometryCollectionDepNodes.TimeStamp=2025.05.21-04.26.21 +GeometryCollectionDepNodes.LastCompileMethod=Unknown +GeometryFlowCore.TimeStamp=2025.05.21-04.26.21 +GeometryFlowCore.LastCompileMethod=Unknown +GeometryFlowMeshProcessing.TimeStamp=2025.05.21-04.26.21 +GeometryFlowMeshProcessing.LastCompileMethod=Unknown +GeometryFlowMeshProcessingEditor.TimeStamp=2025.05.21-04.26.21 +GeometryFlowMeshProcessingEditor.LastCompileMethod=Unknown +MeshModelingToolsExp.TimeStamp=2025.05.21-04.26.25 +MeshModelingToolsExp.LastCompileMethod=Unknown +MeshModelingToolsEditorOnlyExp.TimeStamp=2025.05.21-04.26.25 +MeshModelingToolsEditorOnlyExp.LastCompileMethod=Unknown +GeometryProcessingAdapters.TimeStamp=2025.05.21-04.26.25 +GeometryProcessingAdapters.LastCompileMethod=Unknown +ModelingEditorUI.TimeStamp=2025.05.21-04.26.25 +ModelingEditorUI.LastCompileMethod=Unknown +ModelingUI.TimeStamp=2025.05.21-04.26.25 +ModelingUI.LastCompileMethod=Unknown +SkeletalMeshModifiers.TimeStamp=2025.05.21-04.26.25 +SkeletalMeshModifiers.LastCompileMethod=Unknown +LocalizableMessage.TimeStamp=2025.05.21-04.26.25 +LocalizableMessage.LastCompileMethod=Unknown +LocalizableMessageBlueprint.TimeStamp=2025.05.21-04.26.25 +LocalizableMessageBlueprint.LastCompileMethod=Unknown +ToolPresetAsset.TimeStamp=2025.05.21-04.27.11 +ToolPresetAsset.LastCompileMethod=Unknown +ToolPresetEditor.TimeStamp=2025.05.21-04.27.11 +ToolPresetEditor.LastCompileMethod=Unknown +InterchangeEditor.TimeStamp=2025.05.21-04.27.38 +InterchangeEditor.LastCompileMethod=Unknown +InterchangeEditorPipelines.TimeStamp=2025.05.21-04.27.38 +InterchangeEditorPipelines.LastCompileMethod=Unknown +InterchangeEditorUtilities.TimeStamp=2025.05.21-04.27.38 +InterchangeEditorUtilities.LastCompileMethod=Unknown +GLTFCore.TimeStamp=2025.05.21-04.27.38 +GLTFCore.LastCompileMethod=Unknown +InterchangeMessages.TimeStamp=2025.05.21-04.27.38 +InterchangeMessages.LastCompileMethod=Unknown +InterchangeExport.TimeStamp=2025.05.21-04.27.38 +InterchangeExport.LastCompileMethod=Unknown +InterchangeDispatcher.TimeStamp=2025.05.21-04.27.38 +InterchangeDispatcher.LastCompileMethod=Unknown +InterchangeCommon.TimeStamp=2025.05.21-04.27.38 +InterchangeCommon.LastCompileMethod=Unknown +InterchangeCommonParser.TimeStamp=2025.05.21-04.27.38 +InterchangeCommonParser.LastCompileMethod=Unknown +InterchangeFbxParser.TimeStamp=2025.05.21-04.27.38 +InterchangeFbxParser.LastCompileMethod=Unknown +TakeMovieScene.TimeStamp=2025.05.21-04.29.32 +TakeMovieScene.LastCompileMethod=Unknown +TakeSequencer.TimeStamp=2025.05.21-04.29.32 +TakeSequencer.LastCompileMethod=Unknown +ActorLayerUtilities.TimeStamp=2025.05.21-04.28.03 +ActorLayerUtilities.LastCompileMethod=Unknown +ActorLayerUtilitiesEditor.TimeStamp=2025.05.21-04.28.03 +ActorLayerUtilitiesEditor.LastCompileMethod=Unknown +AndroidPermission.TimeStamp=2025.05.21-04.28.03 +AndroidPermission.LastCompileMethod=Unknown +AppleImageUtils.TimeStamp=2025.05.21-04.28.03 +AppleImageUtils.LastCompileMethod=Unknown +AppleImageUtilsBlueprintSupport.TimeStamp=2025.05.21-04.28.03 +AppleImageUtilsBlueprintSupport.LastCompileMethod=Unknown +AudioCapture.TimeStamp=2025.05.21-04.28.04 +AudioCapture.LastCompileMethod=Unknown +AudioCaptureWasapi.TimeStamp=2025.05.21-04.21.58 +AudioCaptureWasapi.LastCompileMethod=Unknown +AssetTags.TimeStamp=2025.05.21-04.28.04 +AssetTags.LastCompileMethod=Unknown +ArchVisCharacter.TimeStamp=2025.05.21-04.28.03 +ArchVisCharacter.LastCompileMethod=Unknown +AudioWidgetsEditor.TimeStamp=2025.05.21-04.28.04 +AudioWidgetsEditor.LastCompileMethod=Unknown +ComputeFrameworkEditor.TimeStamp=2025.05.21-04.28.04 +ComputeFrameworkEditor.LastCompileMethod=Unknown +GeometryCacheEd.TimeStamp=2025.05.21-04.28.07 +GeometryCacheEd.LastCompileMethod=Unknown +GeometryCacheSequencer.TimeStamp=2025.05.21-04.28.07 +GeometryCacheSequencer.LastCompileMethod=Unknown +GeometryCacheStreamer.TimeStamp=2025.05.21-04.28.07 +GeometryCacheStreamer.LastCompileMethod=Unknown +GeometryCache.TimeStamp=2025.05.21-04.28.07 +GeometryCache.LastCompileMethod=Unknown +GeometryCacheTracks.TimeStamp=2025.05.21-04.28.07 +GeometryCacheTracks.LastCompileMethod=Unknown +GooglePAD.TimeStamp=2025.05.21-04.28.22 +GooglePAD.LastCompileMethod=Unknown +GeometryAlgorithms.TimeStamp=2025.05.21-04.28.07 +GeometryAlgorithms.LastCompileMethod=Unknown +DynamicMesh.TimeStamp=2025.05.21-04.28.07 +DynamicMesh.LastCompileMethod=Unknown +MeshFileUtils.TimeStamp=2025.05.21-04.28.07 +MeshFileUtils.LastCompileMethod=Unknown +InputDebugging.TimeStamp=2025.05.21-04.28.41 +InputDebugging.LastCompileMethod=Unknown +InputDebuggingEditor.TimeStamp=2025.05.21-04.28.41 +InputDebuggingEditor.LastCompileMethod=Unknown +HairStrandsDeformer.TimeStamp=2025.05.21-04.28.25 +HairStrandsDeformer.LastCompileMethod=Unknown +HairStrandsRuntime.TimeStamp=2025.05.21-04.28.25 +HairStrandsRuntime.LastCompileMethod=Unknown +HairStrandsEditor.TimeStamp=2025.05.21-04.28.25 +HairStrandsEditor.LastCompileMethod=Unknown +HairCardGeneratorFramework.TimeStamp=2025.05.21-04.28.25 +HairCardGeneratorFramework.LastCompileMethod=Unknown +MobilePatchingUtils.TimeStamp=2025.05.21-04.28.45 +MobilePatchingUtils.LastCompileMethod=Unknown +MeshModelingTools.TimeStamp=2025.05.21-04.28.41 +MeshModelingTools.LastCompileMethod=Unknown +MeshModelingToolsEditorOnly.TimeStamp=2025.05.21-04.28.41 +MeshModelingToolsEditorOnly.LastCompileMethod=Unknown +ModelingComponents.TimeStamp=2025.05.21-04.28.41 +ModelingComponents.LastCompileMethod=Unknown +GeometryFramework.TimeStamp=2025.05.21-04.22.02 +GeometryFramework.LastCompileMethod=Unknown +ModelingComponentsEditorOnly.TimeStamp=2025.05.21-04.28.41 +ModelingComponentsEditorOnly.LastCompileMethod=Unknown +ModelingOperators.TimeStamp=2025.05.21-04.28.41 +ModelingOperators.LastCompileMethod=Unknown +ModelingOperatorsEditorOnly.TimeStamp=2025.05.21-04.28.41 +ModelingOperatorsEditorOnly.LastCompileMethod=Unknown +ProceduralMeshComponentEditor.TimeStamp=2025.05.21-04.29.04 +ProceduralMeshComponentEditor.LastCompileMethod=Unknown +UnrealUSDWrapper.TimeStamp=2025.05.21-04.29.08 +UnrealUSDWrapper.LastCompileMethod=Unknown +USDUtilities.TimeStamp=2025.05.21-04.29.08 +USDUtilities.LastCompileMethod=Unknown +USDClasses.TimeStamp=2025.05.21-04.29.08 +USDClasses.LastCompileMethod=Unknown +SynthesisEditor.TimeStamp=2025.05.21-04.29.08 +SynthesisEditor.LastCompileMethod=Unknown +StateTreeEditorModule.TimeStamp=2025.05.21-04.29.07 +StateTreeEditorModule.LastCompileMethod=Unknown +SequencerScripting.TimeStamp=2025.05.21-04.27.53 +SequencerScripting.LastCompileMethod=Unknown +SequencerScriptingEditor.TimeStamp=2025.05.21-04.27.53 +SequencerScriptingEditor.LastCompileMethod=Unknown +TemplateSequence.TimeStamp=2025.05.21-04.27.53 +TemplateSequence.LastCompileMethod=Unknown +Paper2DEditor.TimeStamp=2025.05.21-04.25.09 +Paper2DEditor.LastCompileMethod=Unknown +PaperSpriteSheetImporter.TimeStamp=2025.05.21-04.25.09 +PaperSpriteSheetImporter.LastCompileMethod=Unknown +PaperTiledImporter.TimeStamp=2025.05.21-04.25.09 +PaperTiledImporter.LastCompileMethod=Unknown +InterchangeTests.TimeStamp=2025.05.21-04.29.24 +InterchangeTests.LastCompileMethod=Unknown +InterchangeTestEditor.TimeStamp=2025.05.21-04.29.24 +InterchangeTestEditor.LastCompileMethod=Unknown +ACLPluginEditor.TimeStamp=2025.05.21-04.25.10 +ACLPluginEditor.LastCompileMethod=Unknown +AnimationModifierLibrary.TimeStamp=2025.05.21-04.25.10 +AnimationModifierLibrary.LastCompileMethod=Unknown +OodleNetworkHandlerComponent.TimeStamp=2025.05.21-04.25.25 +OodleNetworkHandlerComponent.LastCompileMethod=Unknown +AlembicImporter.TimeStamp=2025.05.21-04.27.38 +AlembicImporter.LastCompileMethod=Unknown +AlembicLibrary.TimeStamp=2025.05.21-04.27.38 +AlembicLibrary.LastCompileMethod=Unknown +ControlRigSpline.TimeStamp=2025.05.21-04.25.15 +ControlRigSpline.LastCompileMethod=Unknown +BlendSpaceMotionAnalysis.TimeStamp=2025.05.21-04.25.10 +BlendSpaceMotionAnalysis.LastCompileMethod=Unknown +LiveLink.TimeStamp=2025.05.21-04.25.22 +LiveLink.LastCompileMethod=Unknown +LiveLinkComponents.TimeStamp=2025.05.21-04.25.22 +LiveLinkComponents.LastCompileMethod=Unknown +LiveLinkEditor.TimeStamp=2025.05.21-04.25.22 +LiveLinkEditor.LastCompileMethod=Unknown +LiveLinkGraphNode.TimeStamp=2025.05.21-04.25.22 +LiveLinkGraphNode.LastCompileMethod=Unknown +LiveLinkMovieScene.TimeStamp=2025.05.21-04.25.22 +LiveLinkMovieScene.LastCompileMethod=Unknown +LiveLinkSequencer.TimeStamp=2025.05.21-04.25.22 +LiveLinkSequencer.LastCompileMethod=Unknown +OnlineBase.TimeStamp=2025.05.21-04.27.55 +OnlineBase.LastCompileMethod=Unknown +RigLogicModule.TimeStamp=2025.05.21-04.25.22 +RigLogicModule.LastCompileMethod=Unknown +RigLogicEditor.TimeStamp=2025.05.21-04.25.22 +RigLogicEditor.LastCompileMethod=Unknown +PortableObjectFileDataSource.TimeStamp=2025.05.21-04.25.30 +PortableObjectFileDataSource.LastCompileMethod=Unknown +RiderBlueprint.TimeStamp=2025.05.21-05.41.16 +RiderBlueprint.LastCompileMethod=Unknown +RiderGameControl.TimeStamp=2025.05.21-05.41.19 +RiderGameControl.LastCompileMethod=Unknown +XInputDevice.TimeStamp=2025.05.21-04.29.23 +XInputDevice.LastCompileMethod=Unknown +ContentBrowserClassDataSource.TimeStamp=2025.05.21-04.25.30 +ContentBrowserClassDataSource.LastCompileMethod=Unknown +CollectionManager.TimeStamp=2025.05.21-04.21.58 +CollectionManager.LastCompileMethod=Unknown +ContentBrowserAssetDataSource.TimeStamp=2025.05.21-04.25.30 +ContentBrowserAssetDataSource.LastCompileMethod=Unknown +ContentBrowserFileDataSource.TimeStamp=2025.05.21-04.25.30 +ContentBrowserFileDataSource.LastCompileMethod=Unknown +SkeletalMeshModelingTools.TimeStamp=2025.05.21-04.25.47 +SkeletalMeshModelingTools.LastCompileMethod=Unknown +SkeletalMeshEditor.TimeStamp=2025.05.21-04.22.05 +SkeletalMeshEditor.LastCompileMethod=Unknown +LightMixer.TimeStamp=2025.05.21-04.25.30 +LightMixer.LastCompileMethod=Unknown +ObjectMixerEditor.TimeStamp=2025.05.21-04.25.30 +ObjectMixerEditor.LastCompileMethod=Unknown +BaseCharacterFXEditor.TimeStamp=2025.05.21-04.26.17 +BaseCharacterFXEditor.LastCompileMethod=Unknown +MetaHumanSDKEditor.TimeStamp=2025.05.21-04.26.27 +MetaHumanSDKEditor.LastCompileMethod=Unknown +MetaHumanSDKRuntime.TimeStamp=2025.05.21-04.26.27 +MetaHumanSDKRuntime.LastCompileMethod=Unknown +ConcertSyncClient.TimeStamp=2025.05.21-04.25.26 +ConcertSyncClient.LastCompileMethod=Unknown +Bridge.TimeStamp=2025.05.21-04.37.52 +Bridge.LastCompileMethod=Unknown +MegascansPlugin.TimeStamp=2025.05.21-04.37.58 +MegascansPlugin.LastCompileMethod=Unknown +CmdLinkServer.TimeStamp=2025.05.21-04.25.23 +CmdLinkServer.LastCompileMethod=Unknown +Fab.TimeStamp=2025.05.21-04.37.33 +Fab.LastCompileMethod=Unknown +DataflowEditor.TimeStamp=2025.05.21-04.26.19 +DataflowEditor.LastCompileMethod=Unknown +TakesCore.TimeStamp=2025.05.21-04.29.32 +TakesCore.LastCompileMethod=Unknown +TakeTrackRecorders.TimeStamp=2025.05.21-04.29.32 +TakeTrackRecorders.LastCompileMethod=Unknown +TakeRecorderSources.TimeStamp=2025.05.21-04.29.32 +TakeRecorderSources.LastCompileMethod=Unknown +CacheTrackRecorder.TimeStamp=2025.05.21-04.29.32 +CacheTrackRecorder.LastCompileMethod=Unknown +AudioSynesthesiaEditor.TimeStamp=2025.05.21-04.28.04 +AudioSynesthesiaEditor.LastCompileMethod=Unknown +ProfileVisualizer.TimeStamp=2025.05.21-04.22.04 +ProfileVisualizer.LastCompileMethod=Unknown +ImageWriteQueue.TimeStamp=2025.05.21-04.22.03 +ImageWriteQueue.LastCompileMethod=Unknown +TypedElementRuntime.TimeStamp=2025.05.21-04.22.07 +TypedElementRuntime.LastCompileMethod=Unknown +LevelInstanceEditor.TimeStamp=2025.05.21-04.22.03 +LevelInstanceEditor.LastCompileMethod=Unknown +AIModule.TimeStamp=2025.05.21-04.21.57 +AIModule.LastCompileMethod=Unknown +NavigationSystem.TimeStamp=2025.05.21-04.22.04 +NavigationSystem.LastCompileMethod=Unknown +AITestSuite.TimeStamp=2025.05.21-04.21.57 +AITestSuite.LastCompileMethod=Unknown +GameplayDebugger.TimeStamp=2025.05.21-04.22.02 +GameplayDebugger.LastCompileMethod=Unknown +MessagingRpc.TimeStamp=2025.05.21-04.22.04 +MessagingRpc.LastCompileMethod=Unknown +PortalRpc.TimeStamp=2025.05.21-04.22.04 +PortalRpc.LastCompileMethod=Unknown +PortalServices.TimeStamp=2025.05.21-04.22.04 +PortalServices.LastCompileMethod=Unknown +AnalyticsET.TimeStamp=2025.05.21-04.21.57 +AnalyticsET.LastCompileMethod=Unknown +LauncherPlatform.TimeStamp=2025.05.21-04.22.03 +LauncherPlatform.LastCompileMethod=Unknown +AudioMixerXAudio2.TimeStamp=2025.05.21-04.21.58 +AudioMixerXAudio2.LastCompileMethod=Unknown +AudioMixer.TimeStamp=2025.05.21-04.21.58 +AudioMixer.LastCompileMethod=Unknown +AudioMixerCore.TimeStamp=2025.05.21-04.21.58 +AudioMixerCore.LastCompileMethod=Unknown +StreamingPauseRendering.TimeStamp=2025.05.21-04.22.07 +StreamingPauseRendering.LastCompileMethod=Unknown +MovieScene.TimeStamp=2025.05.21-04.22.04 +MovieScene.LastCompileMethod=Unknown +MovieSceneTracks.TimeStamp=2025.05.21-04.22.04 +MovieSceneTracks.LastCompileMethod=Unknown +CinematicCamera.TimeStamp=2025.05.21-04.21.58 +CinematicCamera.LastCompileMethod=Unknown +SparseVolumeTexture.TimeStamp=2025.05.21-04.22.07 +SparseVolumeTexture.LastCompileMethod=Unknown +Documentation.TimeStamp=2025.05.21-04.22.00 +Documentation.LastCompileMethod=Unknown +OutputLog.TimeStamp=2025.05.21-04.22.04 +OutputLog.LastCompileMethod=Unknown +SourceControlWindows.TimeStamp=2025.05.21-04.22.07 +SourceControlWindows.LastCompileMethod=Unknown +SourceControlWindowExtender.TimeStamp=2025.05.21-04.22.07 +SourceControlWindowExtender.LastCompileMethod=Unknown +UncontrolledChangelists.TimeStamp=2025.05.21-04.22.07 +UncontrolledChangelists.LastCompileMethod=Unknown +StructViewer.TimeStamp=2025.05.21-04.22.07 +StructViewer.LastCompileMethod=Unknown +GraphEditor.TimeStamp=2025.05.21-04.22.02 +GraphEditor.LastCompileMethod=Unknown +Kismet.TimeStamp=2025.05.21-04.22.03 +Kismet.LastCompileMethod=Unknown +KismetWidgets.TimeStamp=2025.05.21-04.22.03 +KismetWidgets.LastCompileMethod=Unknown +Persona.TimeStamp=2025.05.21-04.22.04 +Persona.LastCompileMethod=Unknown +AdvancedPreviewScene.TimeStamp=2025.05.21-04.21.57 +AdvancedPreviewScene.LastCompileMethod=Unknown +AnimationBlueprintEditor.TimeStamp=2025.05.21-04.21.57 +AnimationBlueprintEditor.LastCompileMethod=Unknown +PackagesDialog.TimeStamp=2025.05.21-04.22.04 +PackagesDialog.LastCompileMethod=Unknown +DetailCustomizations.TimeStamp=2025.05.21-04.22.00 +DetailCustomizations.LastCompileMethod=Unknown +ComponentVisualizers.TimeStamp=2025.05.21-04.21.58 +ComponentVisualizers.LastCompileMethod=Unknown +Layers.TimeStamp=2025.05.21-04.22.03 +Layers.LastCompileMethod=Unknown +AutomationWindow.TimeStamp=2025.05.21-04.21.58 +AutomationWindow.LastCompileMethod=Unknown +AutomationController.TimeStamp=2025.05.21-04.21.58 +AutomationController.LastCompileMethod=Unknown +DeviceManager.TimeStamp=2025.05.21-04.22.00 +DeviceManager.LastCompileMethod=Unknown +ProfilerClient.TimeStamp= +ProfilerClient.LastCompileMethod=Unknown +SessionFrontend.TimeStamp=2025.05.21-04.22.05 +SessionFrontend.LastCompileMethod=Unknown +ProjectLauncher.TimeStamp=2025.05.21-04.22.04 +ProjectLauncher.LastCompileMethod=Unknown +SettingsEditor.TimeStamp=2025.05.21-04.22.05 +SettingsEditor.LastCompileMethod=Unknown +EditorSettingsViewer.TimeStamp=2025.05.21-04.22.00 +EditorSettingsViewer.LastCompileMethod=Unknown +InternationalizationSettings.TimeStamp=2025.05.21-04.22.03 +InternationalizationSettings.LastCompileMethod=Unknown +ProjectSettingsViewer.TimeStamp=2025.05.21-04.22.04 +ProjectSettingsViewer.LastCompileMethod=Unknown +ProjectTargetPlatformEditor.TimeStamp=2025.05.21-04.22.04 +ProjectTargetPlatformEditor.LastCompileMethod=Unknown +Blutility.TimeStamp=2025.05.21-04.21.58 +Blutility.LastCompileMethod=Unknown +XmlParser.TimeStamp=2025.05.21-04.22.08 +XmlParser.LastCompileMethod=Unknown +UndoHistory.TimeStamp=2025.05.21-04.22.07 +UndoHistory.LastCompileMethod=Unknown +DeviceProfileEditor.TimeStamp=2025.05.21-04.22.00 +DeviceProfileEditor.LastCompileMethod=Unknown +HardwareTargeting.TimeStamp=2025.05.21-04.22.02 +HardwareTargeting.LastCompileMethod=Unknown +LocalizationDashboard.TimeStamp=2025.05.21-04.22.03 +LocalizationDashboard.LastCompileMethod=Unknown +LocalizationService.TimeStamp=2025.05.21-04.22.03 +LocalizationService.LastCompileMethod=Unknown +MergeActors.TimeStamp=2025.05.21-04.22.04 +MergeActors.LastCompileMethod=Unknown +InputBindingEditor.TimeStamp=2025.05.21-04.22.03 +InputBindingEditor.LastCompileMethod=Unknown +EditorInteractiveToolsFramework.TimeStamp=2025.05.21-04.22.00 +EditorInteractiveToolsFramework.LastCompileMethod=Unknown +InteractiveToolsFramework.TimeStamp=2025.05.21-04.22.03 +InteractiveToolsFramework.LastCompileMethod=Unknown +TraceInsights.TimeStamp=2025.05.21-04.22.07 +TraceInsights.LastCompileMethod=Unknown +TraceInsightsCore.TimeStamp=2025.05.21-04.22.07 +TraceInsightsCore.LastCompileMethod=Unknown +StaticMeshEditor.TimeStamp=2025.05.21-04.22.07 +StaticMeshEditor.LastCompileMethod=Unknown +EditorFramework.TimeStamp=2025.05.21-04.22.00 +EditorFramework.LastCompileMethod=Unknown +EditorConfig.TimeStamp=2025.05.21-04.22.00 +EditorConfig.LastCompileMethod=Unknown +DerivedDataEditor.TimeStamp=2025.05.21-04.21.59 +DerivedDataEditor.LastCompileMethod=Unknown +CSVtoSVG.TimeStamp=2025.05.21-04.21.59 +CSVtoSVG.LastCompileMethod=Unknown +VirtualizationEditor.TimeStamp=2025.05.21-04.22.08 +VirtualizationEditor.LastCompileMethod=Unknown +AnimationSettings.TimeStamp=2025.05.21-04.21.57 +AnimationSettings.LastCompileMethod=Unknown +GameplayDebuggerEditor.TimeStamp=2025.05.21-04.22.02 +GameplayDebuggerEditor.LastCompileMethod=Unknown +RenderResourceViewer.TimeStamp=2025.05.21-04.22.05 +RenderResourceViewer.LastCompileMethod=Unknown +UniversalObjectLocatorEditor.TimeStamp=2025.05.21-04.22.07 +UniversalObjectLocatorEditor.LastCompileMethod=Unknown +StructUtilsEditor.TimeStamp=2025.05.21-04.22.07 +StructUtilsEditor.LastCompileMethod=Unknown +StructUtilsTestSuite.TimeStamp=2025.05.21-04.22.07 +StructUtilsTestSuite.LastCompileMethod=Unknown +AndroidRuntimeSettings.TimeStamp=2025.05.21-04.21.41 +AndroidRuntimeSettings.LastCompileMethod=Unknown +IOSRuntimeSettings.TimeStamp=2025.05.21-04.21.47 +IOSRuntimeSettings.LastCompileMethod=Unknown +MacPlatformEditor.TimeStamp=2025.05.21-04.22.03 +MacPlatformEditor.LastCompileMethod=Unknown +WindowsPlatformEditor.TimeStamp=2025.05.21-04.22.08 +WindowsPlatformEditor.LastCompileMethod=Unknown +AndroidPlatformEditor.TimeStamp=2025.05.21-04.21.41 +AndroidPlatformEditor.LastCompileMethod=Unknown +AndroidDeviceDetection.TimeStamp=2025.05.21-04.21.41 +AndroidDeviceDetection.LastCompileMethod=Unknown +PIEPreviewDeviceProfileSelector.TimeStamp=2025.05.21-04.22.04 +PIEPreviewDeviceProfileSelector.LastCompileMethod=Unknown +IOSPlatformEditor.TimeStamp=2025.05.21-04.21.47 +IOSPlatformEditor.LastCompileMethod=Unknown +LogVisualizer.TimeStamp=2025.05.21-04.22.03 +LogVisualizer.LastCompileMethod=Unknown +WidgetRegistration.TimeStamp=2025.05.21-04.22.08 +WidgetRegistration.LastCompileMethod=Unknown +ClothPainter.TimeStamp=2025.05.21-04.21.58 +ClothPainter.LastCompileMethod=Unknown +ViewportInteraction.TimeStamp=2025.05.21-04.22.08 +ViewportInteraction.LastCompileMethod=Unknown +EditorWidgets.TimeStamp=2025.05.21-04.22.00 +EditorWidgets.LastCompileMethod=Unknown +ViewportSnapping.TimeStamp=2025.05.21-04.22.08 +ViewportSnapping.LastCompileMethod=Unknown +MeshPaint.TimeStamp=2025.05.21-04.22.04 +MeshPaint.LastCompileMethod=Unknown +PlacementMode.TimeStamp=2025.05.21-04.22.04 +PlacementMode.LastCompileMethod=Unknown +SessionServices.TimeStamp=2025.05.21-04.22.05 +SessionServices.LastCompileMethod=Unknown +CameraShakePreviewer.TimeStamp=2025.05.21-04.25.22 +CameraShakePreviewer.LastCompileMethod=Unknown +GameplayCamerasEditor.TimeStamp=2025.05.21-04.25.22 +GameplayCamerasEditor.LastCompileMethod=Unknown +AndroidMediaEditor.TimeStamp=2025.05.21-04.27.42 +AndroidMediaEditor.LastCompileMethod=Unknown +AndroidMediaFactory.TimeStamp=2025.05.21-04.27.42 +AndroidMediaFactory.LastCompileMethod=Unknown +AvfMediaEditor.TimeStamp=2025.05.21-04.27.42 +AvfMediaEditor.LastCompileMethod=Unknown +AvfMediaFactory.TimeStamp=2025.05.21-04.27.42 +AvfMediaFactory.LastCompileMethod=Unknown +ImgMediaEditor.TimeStamp=2025.05.21-04.27.43 +ImgMediaEditor.LastCompileMethod=Unknown +ImgMediaFactory.TimeStamp=2025.05.21-04.27.43 +ImgMediaFactory.LastCompileMethod=Unknown +OpenExrWrapper.TimeStamp=2025.05.21-04.27.43 +OpenExrWrapper.LastCompileMethod=Unknown +MediaCompositingEditor.TimeStamp=2025.05.21-04.27.43 +MediaCompositingEditor.LastCompileMethod=Unknown +SequenceRecorder.TimeStamp=2025.05.21-04.22.05 +SequenceRecorder.LastCompileMethod=Unknown +MediaPlayerEditor.TimeStamp=2025.05.21-04.27.44 +MediaPlayerEditor.LastCompileMethod=Unknown +WebMMedia.TimeStamp=2025.05.21-04.27.50 +WebMMedia.LastCompileMethod=Unknown +WebMMediaEditor.TimeStamp=2025.05.21-04.27.50 +WebMMediaEditor.LastCompileMethod=Unknown +WebMMediaFactory.TimeStamp=2025.05.21-04.27.50 +WebMMediaFactory.LastCompileMethod=Unknown +WmfMediaEditor.TimeStamp=2025.05.21-04.27.50 +WmfMediaEditor.LastCompileMethod=Unknown +WmfMediaFactory.TimeStamp=2025.05.21-04.27.50 +WmfMediaFactory.LastCompileMethod=Unknown +EngineAssetDefinitions.TimeStamp=2025.05.21-04.25.30 +EngineAssetDefinitions.LastCompileMethod=Unknown +GeometryMode.TimeStamp=2025.05.21-04.25.30 +GeometryMode.LastCompileMethod=Unknown +BspMode.TimeStamp=2025.05.21-04.25.30 +BspMode.LastCompileMethod=Unknown +TextureAlignMode.TimeStamp=2025.05.21-04.25.30 +TextureAlignMode.LastCompileMethod=Unknown +CharacterAI.TimeStamp=2025.05.21-04.26.17 +CharacterAI.LastCompileMethod=Unknown +FractureEngine.TimeStamp=2025.05.21-04.26.20 +FractureEngine.LastCompileMethod=Unknown +PlanarCut.TimeStamp=2025.05.21-04.26.54 +PlanarCut.LastCompileMethod=Unknown +AndroidFileServerEditor.TimeStamp=2025.05.21-04.28.03 +AndroidFileServerEditor.LastCompileMethod=Unknown +AudioCaptureEditor.TimeStamp=2025.05.21-04.28.04 +AudioCaptureEditor.LastCompileMethod=Unknown +GooglePADEditor.TimeStamp=2025.05.21-04.28.22 +GooglePADEditor.LastCompileMethod=Unknown +ResonanceAudioEditor.TimeStamp=2025.05.21-04.29.04 +ResonanceAudioEditor.LastCompileMethod=Unknown +RigVMEditor.TimeStamp=2025.05.21-04.29.05 +RigVMEditor.LastCompileMethod=Unknown +ActorSequenceEditor.TimeStamp=2025.05.21-04.27.53 +ActorSequenceEditor.LastCompileMethod=Unknown +LevelSequenceEditor.TimeStamp=2025.05.21-04.27.53 +LevelSequenceEditor.LastCompileMethod=Unknown +WaveTableEditor.TimeStamp=2025.05.21-04.29.23 +WaveTableEditor.LastCompileMethod=Unknown +TemplateSequenceEditor.TimeStamp=2025.05.21-04.27.53 +TemplateSequenceEditor.LastCompileMethod=Unknown +SmartSnapping.TimeStamp=2025.05.21-04.25.09 +SmartSnapping.LastCompileMethod=Unknown +OptimusEditor.TimeStamp=2025.05.21-04.25.17 +OptimusEditor.LastCompileMethod=Unknown +IKRigEditor.TimeStamp=2025.05.21-04.25.22 +IKRigEditor.LastCompileMethod=Unknown +LiveLinkMultiUser.TimeStamp=2025.05.21-04.25.22 +LiveLinkMultiUser.LastCompileMethod=Unknown +ControlRigEditor.TimeStamp=2025.05.21-04.25.12 +ControlRigEditor.LastCompileMethod=Unknown +RiderShaderInfo.TimeStamp=2025.05.21-05.41.13 +RiderShaderInfo.LastCompileMethod=Unknown +RiderLC.TimeStamp=2025.05.21-05.41.13 +RiderLC.LastCompileMethod=Unknown +ActorPickerMode.TimeStamp=2025.05.21-04.21.57 +ActorPickerMode.LastCompileMethod=Unknown +SceneDepthPickerMode.TimeStamp=2025.05.21-04.22.05 +SceneDepthPickerMode.LastCompileMethod=Unknown +LandscapeEditor.TimeStamp=2025.05.21-04.22.03 +LandscapeEditor.LastCompileMethod=Unknown +FoliageEdit.TimeStamp=2025.05.21-04.22.02 +FoliageEdit.LastCompileMethod=Unknown +VirtualTexturingEditor.TimeStamp=2025.05.21-04.22.08 +VirtualTexturingEditor.LastCompileMethod=Unknown +AutomationWorker.TimeStamp=2025.05.21-04.21.58 +AutomationWorker.LastCompileMethod=Unknown +SequenceRecorderSections.TimeStamp=2025.05.21-04.22.05 +SequenceRecorderSections.LastCompileMethod=Unknown +StatsViewer.TimeStamp=2025.05.21-04.22.07 +StatsViewer.LastCompileMethod=Unknown +DataLayerEditor.TimeStamp=2025.05.21-04.21.59 +DataLayerEditor.LastCompileMethod=Unknown +GameProjectGeneration.TimeStamp=2025.05.21-04.22.02 +GameProjectGeneration.LastCompileMethod=Unknown +UnsavedAssetsTracker.TimeStamp=2025.05.21-04.22.07 +UnsavedAssetsTracker.LastCompileMethod=Unknown +StatusBar.TimeStamp=2025.05.21-04.22.07 +StatusBar.LastCompileMethod=Unknown +AddContentDialog.TimeStamp=2025.05.21-04.21.57 +AddContentDialog.LastCompileMethod=Unknown +WidgetCarousel.TimeStamp=2025.05.21-04.22.08 +WidgetCarousel.LastCompileMethod=Unknown +SceneOutliner.TimeStamp=2025.05.21-04.22.05 +SceneOutliner.LastCompileMethod=Unknown +SubobjectEditor.TimeStamp=2025.05.21-04.22.07 +SubobjectEditor.LastCompileMethod=Unknown +WorldBrowser.TimeStamp=2025.05.21-04.22.08 +WorldBrowser.LastCompileMethod=Unknown +ExternalImagePicker.TimeStamp=2025.05.21-04.22.02 +ExternalImagePicker.LastCompileMethod=Unknown +LauncherServices.TimeStamp=2025.05.21-04.22.03 +LauncherServices.LastCompileMethod=Unknown +HierarchicalLODOutliner.TimeStamp=2025.05.21-04.22.02 +HierarchicalLODOutliner.LastCompileMethod=Unknown +Voice.TimeStamp=2025.05.21-04.22.08 +Voice.LastCompileMethod=Unknown +MovieSceneCapture.TimeStamp=2025.05.21-04.22.04 +MovieSceneCapture.LastCompileMethod=Unknown +SequencerWidgets.TimeStamp=2025.05.21-04.22.05 +SequencerWidgets.LastCompileMethod=Unknown +DataTableEditor.TimeStamp=2025.05.21-04.21.59 +DataTableEditor.LastCompileMethod=Unknown +MaterialEditor.TimeStamp=2025.05.21-04.22.04 +MaterialEditor.LastCompileMethod=Unknown + +[DetailPropertyExpansion] +WorldPartitionRuntimeHashSet="\"Object\" " +WorldPartitionRuntimeHash="\"Object\" " +Object="\"Object\" " +EditorStyleSettings="\"Object\" " +SlateThemeManager="\"Object\" " +AudioEditorSettings="\"Object\" " +DeveloperSettings="\"Object\" " +BlueprintEditorSettings="\"Object\" " +CollectionSettings="\"Object\" " +EnhancedInputEditorSettings="\"Object\" " +DeveloperSettingsBackedByCVars="\"Object\" " +EditorExperimentalSettings="\"Object\" " +EditorSettings="\"Object\" " +InterchangeEditorSettings="\"Object\" " +LiveCodingSettings="\"Object\" " +EditorLoadingSavingSettings="\"Object\" \"Object.AutoReimport\" \"Object.AutoSave\" \"Object.Blueprints\" " +EditorPerProjectUserSettings="\"Object\" " +OutputLogSettings="\"Object\" " +EditorPerformanceSettings="\"Object\" " +InternationalizationSettingsModel="\"Object\" " +SourceCodeAccessSettings="\"Object\" " +TextureEncodingUserSettings="\"Object\" " +TextureImportUserSettings="\"Object\" " +VRModeSettings="\"Object\" " +VISettings="\"Object\" " +WorldPartitionEditorSettings="\"Object\" " +WorldPartitionEditorPerProjectUserSettings="\"Object\" " +LevelEditorMiscSettings="\"Object\" " +LevelEditorPlaySettings="\"Object\" " +OnlinePIESettings="\"Object\" " +LevelEditorViewportSettings="\"Object\" " +AnimGraphSettings="\"Object\" " +AnimationBlueprintEditorSettings="\"Object\" " +PersonaOptions="\"Object\" " +ContentBrowserSettings="\"Object\" " +ControlRigEditorSettings="\"Object\" " +RigVMEditorSettings="\"Object\" " +CurveEditorSettings="\"Object\" " +SequencerSettings="\"Object\" " +FlipbookEditorSettings="\"Object\" " +GraphEditorSettings="\"Object\" " +LevelInstanceEditorPerProjectUserSettings="\"Object\" " +MeshPaintSettings="\"Object\" " +MetasoundEditorSettings="\"Object\" " +SkeletalMeshEditorSettings="\"Object\" " +SpriteEditorSettings="\"Object\" " +TakeRecorderUserSettings="\"Object\" " +TileMapEditorSettings="\"Object\" " +TileSetEditorSettings="\"Object\" " +WidgetDesignerSettings="\"Object\" " +BlueprintHeaderViewSettings="\"Object\" " +FractureModeCustomizationSettings="\"Object\" " +GameplayCamerasEditorSettings="\"Object\" " +LightMixerEditorSettings="\"Object\" " +LiveLinkEditorSettings="\"Object\" " +ModelingToolsModeCustomizationSettings="\"Object\" " +ModelingComponentsEditorSettings="\"Object\" " +ObjectMixerEditorSettings="\"Object\" " +PythonScriptPluginUserSettings="\"Object\" " +StateTreeEditorSettings="\"Object\" " +CrashReportsPrivacySettings="\"Object\" \"Object.Options.bSendUnattendedBugReports\" " +AnalyticsPrivacySettings="\"Object\" \"Object.Options.bSendUsageData\" " +AutomationTestSettings="\"Object\" " +CrashReporterSettings="\"Object\" " +DataValidationSettings="\"Object\" " +GameplayDebuggerUserSettings="\"Object\" " +GameplayTagsDeveloperSettings="\"Object\" " +EditorDataStorageSettings="\"Object\" " +LogVisualizerSettings="\"Object\" " +GeneralProjectSettings="\"Object\" " +CryptoKeysSettings="\"Object\" " +GameplayTagsSettings="\"Object\" " +GameplayTagsList="\"Object\" " +GameMapsSettings="\"Object\" " +MoviePlayerSettings="\"Object\" " +ProjectPackagingSettings="\"Object\" " +HardwareTargetingSettings="\"Object\" " +AssetManagerSettings="\"Object\" " +AssetToolsSettings="\"Object\" " +SlateRHIRendererSettings="\"Object\" " +AISystem="\"Object\" " +AISystemBase="\"Object\" " +AnimationSettings="\"Object\" " +AnimationModifierSettings="\"Object\" " +AudioSettings="\"Object\" " +ChaosSolverSettings="\"Object\" " +CineCameraSettings="\"Object\" " +ConsoleSettings="\"Object\" " +ControlRigSettings="\"Object\" " +CookerSettings="\"Object\" " +CrowdManager="\"Object\" " +CrowdManagerBase="\"Object\" " +DataDrivenConsoleVariableSettings="\"Object\" " +DebugCameraControllerSettings="\"Object\" " +OptimusSettings="\"Object\" " +EnhancedInputDeveloperSettings="\"Object\" " +EnhancedInputEditorProjectSettings="\"Object\" " +MegascansMaterialParentSettings="\"Object\" " +InterchangeFbxSettings="\"Object\" " +GameplayDebuggerConfig="\"Object\" " +GarbageCollectionSettings="\"Object\" " +Engine="\"Object\" " +GLTFPipelineSettings="\"Object\" " +HierarchicalLODSettings="\"Object\" " +InputSettings="\"Object\" " +InterchangeProjectSettings="\"Object\" " +LandscapeSettings="\"Object\" " +LevelSequenceProjectSettings="\"Object\" " +MassSettings="\"Object\" \"Object.Mass\" " +MaterialXPipelineSettings="\"Object\" " +MeshBudgetProjectSettings="\"Object\" " +MeshDrawCommandStatsSettings="\"Object\" " +MetaSoundSettings="\"Object\" " +NavigationSystemV1="\"Object\" " +NavigationSystemBase="\"Object\" " +NetworkSettings="\"Object\" " +PhysicsSettings="\"Object\" " +PhysicsSettingsCore="\"Object\" " +RendererSettings="\"Object\" " +RendererOverrideSettings="\"Object\" " +SlateSettings="\"Object\" " +StateTreeSettings="\"Object\" " +StreamingSettings="\"Object\" " +TextureEncodingProjectSettings="\"Object\" " +UsdProjectSettings="\"Object\" " +UserInterfaceSettings="\"Object\" " +VirtualTexturePoolConfig="\"Object\" " +WorldPartitionSettings="\"Object\" " +LevelEditor2DSettings="\"Object\" " +EditorProjectAppearanceSettings="\"Object\" " +EditorProjectAssetSettings="\"Object\" " +BlueprintEditorProjectSettings="\"Object\" " +ClassViewerProjectSettings="\"Object\" " +ContentBrowserCollectionProjectSettings="\"Object\" " +DDCProjectSettings="\"Object\" " +EditorUtilityWidgetProjectSettings="\"Object\" " +WidgetEditingProjectSettings="\"Object\" " +ProxyLODMeshSimplificationSettings="\"Object\" " +LevelEditorProjectSettings="\"Object\" " +LevelInstanceEditorSettings="\"Object\" " +MovieSceneToolsProjectSettings="\"Object\" " +MeshSimplificationSettings="\"Object\" " +PaperImporterSettings="\"Object\" " +EditorPerformanceProjectSettings="\"Object\" " +SourceControlPreferences="\"Object\" " +RigVMProjectSettings="\"Object\" " +SkeletalMeshSimplificationSettings="\"Object\" " +PlasticSourceControlProjectSettings="\"Object\" " +StructViewerProjectSettings="\"Object\" " +TextureImportSettings="\"Object\" " +UMGEditorProjectSettings="\"Object\" " +AndroidRuntimeSettings="\"Object\" " +ShaderPlatformQualitySettings="\"Object\" " +AndroidSDKSettings="\"Object\" " +IOSRuntimeSettings="\"Object\" " +LinuxTargetSettings="\"Object\" " +MacTargetSettings="\"Object\" " +WindowsTargetSettings="\"Object\" " +XcodeProjectSettings="\"Object\" " +AndroidFileServerRuntimeSettings="\"Object\" " +AvfMediaSettings="\"Object\" " +DataflowSettings="\"Object\" " +FractureModeSettings="\"Object\" " +GameplayCamerasSettings="\"Object\" " +GeometryCacheStreamerSettings="\"Object\" " +GooglePADRuntimeSettings="\"Object\" " +GroomPluginSettings="\"Object\" " +HoldoutCompositeSettings="\"Object\" " +ImgMediaSettings="\"Object\" " +ToolPresetProjectSettings="\"Object\" " +LevelSequenceEditorSettings="\"Object\" " +LiveLinkSettings="\"Object\" " +LiveLinkComponentSettings="\"Object\" " +LiveLinkSequencerSettings="\"Object\" " +MetaHumanSDKSettings="\"Object\" " +ModelingToolsEditorModeSettings="\"Object\" " +ModelingComponentsSettings="\"Object\" " +NiagaraSettings="\"Object\" " +NiagaraEditorSettings="\"Object\" " +NNEDenoiserSettings="\"Object\" " +NNERuntimeORTSettings="\"Object\" " +PaperRuntimeSettings="\"Object\" " +PythonScriptPluginSettings="\"Object\" " +RenderDocPluginSettings="\"Object\" " +ResonanceAudioSettings="\"Object\" " +TakeRecorderProjectSettings="\"Object\" " +MovieSceneTakeSettings="\"Object\" " +TakeRecorderMicrophoneAudioSourceSettings="\"Object\" " +TakeRecorderSource="\"Object\" " +TakeRecorderMicrophoneAudioManager="\"Object\" " +TakeRecorderAudioInputSettings="\"Object\" " +MovieSceneAnimationTrackRecorderEditorSettings="\"Object\" " +MovieSceneTrackRecorderSettings="\"Object\" " +TakeRecorderWorldSourceSettings="\"Object\" " +TcpMessagingSettings="\"Object\" " +UdpMessagingSettings="\"Object\" " +WmfMediaSettings="\"Object\" " +InputModifierSmoothDelta="\"Object\" " +InputModifier="\"Object\" " +InputModifierDeadZone="\"Object\" " +InputModifierResponseCurveExponential="\"Object\" " +InputModifierFOVScaling="\"Object\" " +InputTriggerDown="\"Object\" " +InputTrigger="\"Object\" " +InputTriggerPressed="\"Object\" " +InputTriggerReleased="\"Object\" " +InputTriggerHold="\"Object\" " +InputTriggerTimedBase="\"Object\" " +InputTriggerHoldAndRelease="\"Object\" " +InputTriggerTap="\"Object\" " +InputTriggerPulse="\"Object\" " +StaticMeshActor="\"Object.StaticMeshActor.StaticMeshComponent.Object.Collision.BodyInstance\" " +PersonaPreviewSceneDescription="\"Object\" " +PreviewMeshCollection="\"Object\" " +DataAsset="\"Object\" " +AssetViewerSettings="\"Object\" " +SkeletalMesh="\"Object\" " +SkinnedAsset="\"Object\" " +StreamableRenderAsset="\"Object\" " +LODInfoUILayout="\"Object\" " +SkeletalMeshComponent="\"Object\" " +SkinnedMeshComponent="\"Object\" " +MeshComponent="\"Object\" " +PrimitiveComponent="\"Object\" " +SceneComponent="\"Object\" " +ActorComponent="\"Object\" " +BoxComponent="\"Object\" \"Object.Collision.BodyInstance\" " +ShapeComponent="\"Object\" " +MaterialEditorInstanceConstant="\"Object\" " +MaterialEditorParameters="\"Object\" " +MaterialInstanceConstant="\"Object\" " +MaterialInstance="\"Object\" " +MaterialInterface="\"Object\" " +InputAction="\"Object\" " +InputMappingContext="\"Object\" \"Object.Mappings.Mappings.Mappings[2]\" " +CameraComponent="\"Object\" " +CapsuleComponent="\"Object\" " +CanvasPanel="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +PanelWidget="\"Object\" \"Object.Layout.Slot.Object.Layout.Layout|Horizontal Box Slot.Padding\" " +Widget="\"Object\" " +Visual="\"Object\" " +ProgressBar="\"Object\" " +WBP_EnduranceBar_C="\"Object\" " +UserWidget="\"Object\" " +WidgetComponent="\"Object\" " +BillboardComponent="\"Object\" " +EdGraphNode_Comment="\"Object\" " +EdGraphNode="\"Object\" " +DataTable="\"Object\" " +SkillData="\"Struct.SkillEffects\" \"Struct.SkillEffects.SkillEffects[0]\" \"Struct.SkillEffects.SkillEffects[0].SkillSelecter\" " +TableRowBase="\"Struct.SkillEffects\" \"Struct.SkillEffects.SkillEffects[0]\" \"Struct.SkillEffects.SkillEffects[0].SkillSelecter\" " +HOTRELOAD_SkillData_1="\"Struct.SkillEffects\" \"Struct.SkillEffects.SkillEffects[0]\" \"Struct.SkillEffects.SkillEffects[0].SkillSelecter\" " +Image="\"Object\" " +WBP_SkillCard_C="\"Object\" " +PreviewMaterial="\"Object\" " +Material="\"Object\" " +MaterialExpressionTextureSample="\"Object\" " +MaterialExpressionTextureBase="\"Object\" " +MaterialExpression="\"Object\" " +MaterialExpressionTextureSampleParameter2D="\"Object\" " +MaterialExpressionTextureSampleParameter="\"Object\" " +MaterialExpressionConstant3Vector="\"Object\" " +MaterialExpressionVectorParameter="\"Object\" " +MaterialExpressionParameter="\"Object\" " +MaterialExpressionConstant="\"Object\" " +MaterialExpressionScalarParameter="\"Object\" " +MaterialExpressionTextureCoordinate="\"Object\" " +MaterialExpressionMaterialFunctionCall="\"Object\" " +MaterialExpressionBindlessSwitch="\"Object\" " +MaterialExpressionIf="\"Object\" " +MaterialExpressionAdd="\"Object\" " +MaterialExpressionDivide="\"Object\" " +MaterialExpressionSubtract="\"Object\" " +MaterialExpressionMultiply="\"Object\" " +Skill="\"Object\" " +TextBlock="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +TextLayoutWidget="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +HorizontalBox="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +HOTRELOAD_SkillData_0="\"Struct.SkillEffects\" \"Struct.SkillEffects.SkillEffects[0]\" \"Struct.SkillEffects.SkillEffects[0].SkillSelecter\" " +ScaleBox="\"Object\" " +ContentWidget="\"Object\" " +WBP_SkillContainer_C="\"Object\" " +UniformGridPanel="\"Object\" \"Object.Layout.Slot\" \"Object.Layout.Slot.Object.Layout.Layout|Horizontal Box Slot.Padding\" \"Object.Render Transform.RenderTransform\" " +GridPanel="\"Object\" \"Object.Layout.Slot.Object.Layout.Layout|Horizontal Box Slot.Padding\" " +K2Node_SwitchInteger="\"Object\" " +K2Node_Switch="\"Object\" " +K2Node="\"Object\" " +SkillManager="\"Object\" " +WBP_GameEnd_C="\"Object\" " +VerticalBox="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +WBP_SkillEffect_C="\"Object\" " +WBP_SkillEffectText_C="\"Object\" " +ListView="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +ListViewBase="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +WrapBox="\"Object\" \"Object.Layout.Slot\" \"Object.Render Transform.RenderTransform\" " +K2Node_BreakStruct="\"Object\" " +K2Node_StructMemberGet="\"Object\" " +K2Node_StructOperation="\"Object\" " +K2Node_Variable="\"Object\" " +BP_PawnEntity_C="\"Object\" \"Object.Default.SkillArrays\" " +PawnWithSkill="\"Object\" \"Object.Default.SkillArrays\" " +Pawn="\"Object\" \"Object.Default.SkillArrays\" " +NavMeshBoundsVolume="\"Object.BrushBuilder.BrushBuilder.Object.BrushSettings\" " +Volume="\"Object.BrushBuilder.BrushBuilder.Object.BrushSettings\" " +Brush="\"Object.BrushBuilder.BrushBuilder.Object.BrushSettings\" " +BrushComponent="\"Object\" " +BP_DeepFish_C="\"Object\" \"Object.Default.SkillArrays\" " +GridSlot="\"Object\" " +PanelSlot="\"Object\" " +BP_Dabaza_Pawn_C="\"Object.Default.SkillArrays\" " +WorldSettings="\"Object\" \"Object.World.NavigationSystemConfig\" " +Info="\"Object\" \"Object.World.NavigationSystemConfig\" " +BP_Dabaza_GameMode_C="\"Object\" " +GameModeBase="\"Object\" " + +[PluginBrowser] +InstalledPlugins=NDIMedia +InstalledPlugins=WMFCodecs + +[DetailCategories] +WorldSettings.PrecomputedVisibility=True +WorldPartitionRuntimeHashSet.RuntimeSettings=True +WorldSettings.WorldPartitionSetup=True +WorldSettings.GameMode=True +WorldSettings.Lightmass=True +WorldSettings.World=True +WorldSettings.Physics=True +WorldSettings.Broadphase=True +WorldSettings.Network=True +WorldSettings.Foliage=True +WorldSettings.Landscape=True +WorldSettings.Navigation=True +WorldSettings.VR=True +WorldSettings.Rendering=True +WorldSettings.LightmassVolumeLighting=True +WorldSettings.Nanite=True +WorldSettings.Audio=True +WorldSettings.Tick=True +WorldSettings.Networking=True +SkeletalMesh.Material Slots=True +SkeletalMesh.LODCustomMode=True +SkeletalMesh.LOD0=True +SkeletalMesh.LODSettings=True +SkeletalMesh.Clothing=True +SkeletalMesh.SkeletalMesh=True +SkeletalMesh.Mesh=True +SkeletalMesh.SkinWeights=True +SkeletalMesh.ImportSettings=True +SkeletalMesh.AnimationRig=True +SkeletalMesh.Physics=True +SkeletalMesh.Lighting=True +SkeletalMesh.Animation=True +SkeletalMesh.RayTracing=True +SkeletalMesh.Sampling=True +SkeletalMesh.Deformer=True +SkeletalMesh.Rendering=True +BP_DeepFish_C.Pawn=False +BP_DeepFish_C.Tick=True +BP_DeepFish_C.Camera=False +BP_DeepFish_C.Replication=True +BP_DeepFish_C.Rendering=True +BP_DeepFish_C.Collision=True +BP_DeepFish_C.Actor=True +BP_DeepFish_C.Input=True +BP_DeepFish_C.HLOD=True +BP_DeepFish_C.Physics=True +BP_DeepFish_C.Events=True +BP_PawnEntity_C.Pawn=True +BP_PawnEntity_C.Tick=True +BP_PawnEntity_C.Camera=True +BP_PawnEntity_C.Replication=True +BP_PawnEntity_C.Rendering=True +BP_PawnEntity_C.Collision=True +BP_PawnEntity_C.Actor=True +BP_PawnEntity_C.Input=True +BP_PawnEntity_C.HLOD=True +BP_PawnEntity_C.Physics=True +BP_PawnEntity_C.Events=True +SkeletalMeshComponent.Variable=True +SkeletalMeshComponent.TransformCommon=True +SkeletalMeshComponent.Sockets=True +SkeletalMeshComponent.Animation=True +SkeletalMeshComponent.Mesh=True +SkeletalMeshComponent.ComponentTick=True +SkeletalMeshComponent.Clothing=True +SkeletalMeshComponent.LeaderPoseComponent=True +SkeletalMeshComponent.Physics=True +SkeletalMeshComponent.AnimationRig=True +SkeletalMeshComponent.Collision=True +SkeletalMeshComponent.Deformer=True +SkeletalMeshComponent.Lighting=True +SkeletalMeshComponent.HLOD=True +SkeletalMeshComponent.SkinWeights=True +SkeletalMeshComponent.Rendering=True +SkeletalMeshComponent.Navigation=True +SkeletalMeshComponent.VirtualTexture=True +SkeletalMeshComponent.Tags=True +SkeletalMeshComponent.ComponentReplication=True +SkeletalMeshComponent.Activation=True +SkeletalMeshComponent.Cooking=True +SkeletalMeshComponent.Events=True +SkeletalMeshComponent.Materials=True +SceneComponent.Variable=True +SceneComponent.TransformCommon=True +SceneComponent.Sockets=True +SceneComponent.Rendering=True +SceneComponent.ComponentTick=True +SceneComponent.Tags=True +SceneComponent.ComponentReplication=True +SceneComponent.Activation=True +SceneComponent.Cooking=True +SceneComponent.Events=True +BoxComponent.Variable=True +BoxComponent.TransformCommon=True +BoxComponent.Sockets=True +BoxComponent.Shape=True +BoxComponent.Navigation=True +BoxComponent.HLOD=True +BoxComponent.ComponentTick=True +BoxComponent.Rendering=True +BoxComponent.Physics=True +BoxComponent.Collision=True +BoxComponent.Tags=True +BoxComponent.ComponentReplication=True +BoxComponent.Cooking=True +BoxComponent.Events=True +BP_Dabaza_GameMode_C.Tick=True +BP_Dabaza_GameMode_C.Classes=True +BP_Dabaza_GameMode_C.Game=True +BP_Dabaza_GameMode_C.GameMode=True +BP_Dabaza_GameMode_C.Physics=True +BP_Dabaza_GameMode_C.Events=True +BP_DeepFish_C.Networking=True +BP_DeepFish_C.TransformCommon=False +StaticMeshActor.TransformCommon=True +StaticMeshActor.StaticMesh=True +StaticMeshActor.Materials=True +StaticMeshActor.Physics=True +StaticMeshActor.Collision=True +StaticMeshActor.Lighting=True +StaticMeshActor.Rendering=True +StaticMeshActor.Mesh Painting=True +StaticMeshActor.HLOD=True +StaticMeshActor.Navigation=True +StaticMeshActor.VirtualTexture=True +StaticMeshActor.Tags=True +StaticMeshActor.Cooking=True +StaticMeshActor.Replication=True +StaticMeshActor.Networking=True +StaticMeshActor.Actor=True +MaterialEditorInstanceConstant.ParameterGroups=True +MaterialEditorInstanceConstant.General=True +MaterialEditorInstanceConstant.Previewing=True +BP_Ready_GameMode_C.Tick=True +BP_Ready_GameMode_C.Classes=True +BP_Ready_GameMode_C.Game=True +BP_Ready_GameMode_C.GameMode=True +BP_Ready_GameMode_C.Physics=True +BP_Ready_GameMode_C.Events=True +K2Node_CustomEvent.GraphNodeDetail=True +K2Node_CustomEvent.Graph=True +K2Node_CustomEvent.Inputs=True +WidgetDesignerSettings.Interaction=True +WidgetDesignerSettings.Visuals=True +WidgetDesignerSettings.Dragging=True +WidgetDesignerSettings.GridSnapping=True +SequencerSettings.Filtering=True +SequencerSettings.Playback=True +SequencerSettings.CurveEditor=True +SequencerSettings.Snapping=True +SequencerSettings.Timeline=True +SequencerSettings.General=True +SequencerSettings.Keyframing=True +TileSetEditorSettings.Tile Sheet Conditioning=True +TileSetEditorSettings.Tile Editor=True +TileSetEditorSettings.Background=True +TileMapEditorSettings.Grid=True +TileMapEditorSettings.Background=True +TakeRecorderUserSettings.User Settings=True +SpriteEditorSettings.Background=True +SkeletalMeshEditorSettings.AnimationPreview=True +RigVMEditorSettings.Interaction=True +MetasoundEditorSettings.Widget Styling (Experimental)=True +MetasoundEditorSettings.GraphAnimation=True +MetasoundEditorSettings.SpectrumAnalyzer=True +MetasoundEditorSettings.NodeTitleColors=True +MetasoundEditorSettings.PinColors=True +MetasoundEditorSettings.General=True +MetasoundEditorSettings.Audition (Experimental)=True +MetasoundEditorSettings.AssetMenu=True +MeshPaintSettings.Visualization=True +LevelInstanceEditorPerProjectUserSettings.Break=True +LevelInstanceEditorPerProjectUserSettings.Selection=True +LevelInstanceEditorPerProjectUserSettings.Pivot=True +LevelInstanceEditorPerProjectUserSettings.Create=True +GraphEditorSettings.CommentNodes=True +GraphEditorSettings.ContextMenu=True +GraphEditorSettings.Tracing=True +GraphEditorSettings.NodeTitleColors=True +GraphEditorSettings.PinColors=True +GraphEditorSettings.Splines=True +GraphEditorSettings.GeneralStyle=True +FlipbookEditorSettings.Background=True +CurveEditorSettings.Curve Editor=True +ControlRigEditorSettings.Hierarchy=True +ControlRigEditorSettings.Viewport=True +ControlRigEditorSettings.NodeGraph=True +ControlRigEditorSettings.Compilation=True +ControlRigEditorSettings.Interaction=True +ContentBrowserSettings.Collections=True +ContentBrowserSettings.ContentBrowser=True +PersonaOptions.Timeline=True +PersonaOptions.Asset Browser=True +PersonaOptions.Mesh=True +PersonaOptions.Skeleton Tree=True +PersonaOptions.Composites and Montages=True +PersonaOptions.Audio=True +PersonaOptions.Viewport=True +PersonaOptions.Assets=True +PersonaOptions.Preview Scene=True +AnimationBlueprintEditorSettings.Graphs=True +AnimationBlueprintEditorSettings.Debugging=True +AnimGraphSettings.Workflow=True +LevelEditorViewportSettings.Behavior=True +LevelEditorViewportSettings.Preview=True +LevelEditorViewportSettings.GridSnapping=True +LevelEditorViewportSettings.LookAndFeel=True +LevelEditorViewportSettings.Controls=True +OnlinePIESettings.Logins=True +LevelEditorPlaySettings.PlayOnDevice=True +LevelEditorPlaySettings.Multiplayer Options=True +LevelEditorPlaySettings.PlayInStandaloneGame=True +LevelEditorPlaySettings.PlayInNewWindow=True +LevelEditorPlaySettings.GameViewportSettings=True +LevelEditorPlaySettings.PlayInEditor=True +LevelEditorMiscSettings.Screenshots=True +LevelEditorMiscSettings.Levels=True +LevelEditorMiscSettings.Sound=True +LevelEditorMiscSettings.Editing=True +WorldPartitionEditorPerProjectUserSettings.Data Layer=True +WorldPartitionEditorPerProjectUserSettings.Default=True +WorldPartitionEditorSettings.HLOD=True +WorldPartitionEditorSettings.WorldPartition=True +WorldPartitionEditorSettings.MiniMap=True +WorldPartitionEditorSettings.Foliage=True +WorldPartitionEditorSettings.MapConversion=True +VRModeSettings.Motion Controllers=True +VRModeSettings.UI Customization=True +VRModeSettings.World Movement=True +VRModeSettings.Cinematics=True +VRModeSettings.General=True +TextureImportUserSettings.ImportSettings=True +TextureEncodingUserSettings.EncodeSpeeds=True +SourceCodeAccessSettings.Accessor=True +InternationalizationSettingsModel.Time=True +InternationalizationSettingsModel.Internationalization=True +EditorPerformanceSettings.ViewportResolution=True +EditorPerformanceSettings.EditorPerformance=True +EditorPerformanceSettings.EditorPerformanceTool=True +OutputLogSettings.Output Log=True +EditorPerProjectUserSettings.UnrealAutomationTool=True +EditorPerProjectUserSettings.Behavior=True +EditorPerProjectUserSettings.Export=True +EditorPerProjectUserSettings.Import=True +EditorPerProjectUserSettings.HotReload=True +EditorPerProjectUserSettings.SimplygonSwarm=True +EditorPerProjectUserSettings.AI=True +EditorPerProjectUserSettings.DeveloperTools=True +EditorLoadingSavingSettings.SourceControl=True +EditorLoadingSavingSettings.AutoSave=True +EditorLoadingSavingSettings.Blueprints=True +EditorLoadingSavingSettings.AutoReimport=True +EditorLoadingSavingSettings.Startup=True +LiveCodingSettings.Modules=True +LiveCodingSettings.General=True +EditorKeyboardShortcutSettings.WorldPartition=True +EditorKeyboardShortcutSettings.WorldBrowser=True +EditorKeyboardShortcutSettings.WidgetPreviewEditor=True +EditorKeyboardShortcutSettings.VisualLogger=True +EditorKeyboardShortcutSettings.VirtualShadowMapVisualizationMenu=True +EditorKeyboardShortcutSettings.EditorViewportClient=True +EditorKeyboardShortcutSettings.FVariantManagerEditorCommands=True +EditorKeyboardShortcutSettings.UVBrushSelect=True +EditorKeyboardShortcutSettings.UVEditor=True +EditorKeyboardShortcutSettings.WidgetDesigner=True +EditorKeyboardShortcutSettings.TakeRecorder=True +EditorKeyboardShortcutSettings.SystemWideCommands=True +EditorKeyboardShortcutSettings.StateTreeEditor=True +EditorKeyboardShortcutSettings.StateTreeEditor.Debugger=True +EditorKeyboardShortcutSettings.StandardToolCommands=True +EditorKeyboardShortcutSettings.SplineComponentVisualizer=True +EditorKeyboardShortcutSettings.SkeletalMeshModelingToolsSkeletonEditing=True +EditorKeyboardShortcutSettings.SkeletalMeshModelingTools=True +EditorKeyboardShortcutSettings.ShowFlagsMenu=True +EditorKeyboardShortcutSettings.Sequencer=True +EditorKeyboardShortcutSettings.SequenceRecorder.Common=True +EditorKeyboardShortcutSettings.SCSEditorViewport=True +EditorKeyboardShortcutSettings.RigVMBlueprint=True +EditorKeyboardShortcutSettings.ControlRigHierarchy=True +EditorKeyboardShortcutSettings.ControlRigBlueprint=True +EditorKeyboardShortcutSettings.ControlRigEditMode=True +EditorKeyboardShortcutSettings.SourceControl=True +EditorKeyboardShortcutSettings.VisualizationMenu=True +EditorKeyboardShortcutSettings.RayTracingDebugVisualizationMenu=True +EditorKeyboardShortcutSettings.PlayWorld=True +EditorKeyboardShortcutSettings.PersonaCommon=True +EditorKeyboardShortcutSettings.NiagaraEditor=True +EditorKeyboardShortcutSettings.NaniteVisualizationMenu=True +EditorKeyboardShortcutSettings.MyBlueprint=True +EditorKeyboardShortcutSettings.ControlRigModularRigModel=True +EditorKeyboardShortcutSettings.ModelingToolsVertexSculptTool=True +EditorKeyboardShortcutSettings.ModelingToolsMeshVertexPaintTool=True +EditorKeyboardShortcutSettings.ModelingToolsTransformTool=True +EditorKeyboardShortcutSettings.ModelingToolsEditMode=True +EditorKeyboardShortcutSettings.ModelingToolsSculptTool=True +EditorKeyboardShortcutSettings.ModelingToolsMeshSelectionTool=True +EditorKeyboardShortcutSettings.ModelingToolsMeshPlaneCutTool=True +EditorKeyboardShortcutSettings.ModelingToolsMeshGroupPaintTool=True +EditorKeyboardShortcutSettings.ModelingToolsEditMeshPolygonsTool=True +EditorKeyboardShortcutSettings.ModelingToolsEditMeshMaterials=True +EditorKeyboardShortcutSettings.ModelingToolsDrawAndRevolveTool=True +EditorKeyboardShortcutSettings.ModelingToolsDrawPolygonTool=True +EditorKeyboardShortcutSettings.ModelingToolsCubeGridTool=True +EditorKeyboardShortcutSettings.ModelingToolsMeshAttributePaintTool=True +EditorKeyboardShortcutSettings.ModelingToolsManagerCommands=True +EditorKeyboardShortcutSettings.ModelingModeCommands=True +EditorKeyboardShortcutSettings.MeshPaintingTools=True +EditorKeyboardShortcutSettings.MeshPaint=True +EditorKeyboardShortcutSettings.MeshPainter=True +EditorKeyboardShortcutSettings.MediaPlayerEditor=True +EditorKeyboardShortcutSettings.MediaPlateEditor=True +EditorKeyboardShortcutSettings.MaterialEditor=True +EditorKeyboardShortcutSettings.MassDebugger=True +EditorKeyboardShortcutSettings.MainFrame=True +EditorKeyboardShortcutSettings.LumenVisualizationMenu=True +EditorKeyboardShortcutSettings.LiveLinkClient.Common=True +EditorKeyboardShortcutSettings.LightActor=True +EditorKeyboardShortcutSettings.LevelViewport=True +EditorKeyboardShortcutSettings.LevelSequenceEditor=True +EditorKeyboardShortcutSettings.LevelInstanceEditorMode=True +EditorKeyboardShortcutSettings.LevelEditorModes=True +EditorKeyboardShortcutSettings.LevelEditor=True +EditorKeyboardShortcutSettings.LayersView=True +EditorKeyboardShortcutSettings.LandscapeEditor=True +EditorKeyboardShortcutSettings.InsightsStatusBarWidgetCommands=True +EditorKeyboardShortcutSettings.TimingProfilerCommands=True +EditorKeyboardShortcutSettings.NetworkingProfilerCommands=True +EditorKeyboardShortcutSettings.MemoryProfilerCommands=True +EditorKeyboardShortcutSettings.LoadingProfilerCommands=True +EditorKeyboardShortcutSettings.InsightsCommands=True +EditorKeyboardShortcutSettings.IKRigSkeleton=True +EditorKeyboardShortcutSettings.IKRig=True +EditorKeyboardShortcutSettings.IKRetarget=True +EditorKeyboardShortcutSettings.NiagaraHierarchyEditorCommands=True +EditorKeyboardShortcutSettings.GroomEditorCommands=True +EditorKeyboardShortcutSettings.GroomVisualizationMenu=True +EditorKeyboardShortcutSettings.GraphEditor=True +EditorKeyboardShortcutSettings.GPUSkinCacheVisualizationMenu=True +EditorKeyboardShortcutSettings.GeometryCollectionSelection=True +EditorKeyboardShortcutSettings.GameplayCameras_Debugger=True +EditorKeyboardShortcutSettings.FullBlueprintEditor=True +EditorKeyboardShortcutSettings.FractureEditor=True +EditorKeyboardShortcutSettings.FoliageEditMode=True +EditorKeyboardShortcutSettings.OptimusEditorGraphExplorer=True +EditorKeyboardShortcutSettings.RigVMExecutionStack=True +EditorKeyboardShortcutSettings.BuilderCommandCreationManager=True +EditorKeyboardShortcutSettings.TabCommands=True +EditorKeyboardShortcutSettings.ColorGrading=True +EditorKeyboardShortcutSettings.DerivedDataSettings=True +EditorKeyboardShortcutSettings.OptimusShaderTextEditorDocumentTextBox=True +EditorKeyboardShortcutSettings.OptimusEditorGraph=True +EditorKeyboardShortcutSettings.OptimusEditor=True +EditorKeyboardShortcutSettings.DataflowEditorWeightMapPaintToolContext=True +EditorKeyboardShortcutSettings.DataflowEditor=True +EditorKeyboardShortcutSettings.CurveEditorTools=True +EditorKeyboardShortcutSettings.GenericCurveEditor=True +EditorKeyboardShortcutSettings.ContentBrowser=True +EditorKeyboardShortcutSettings.EditorViewport=True +EditorKeyboardShortcutSettings.GenericCommands=True +EditorKeyboardShortcutSettings.TakeRecorderSources=True +EditorKeyboardShortcutSettings.ClothPainter=True +EditorKeyboardShortcutSettings.ClothPainterTools=True +EditorKeyboardShortcutSettings.ChaosVDEditor=True +EditorKeyboardShortcutSettings.ChaosCacheEditor=True +EditorKeyboardShortcutSettings.CameraVariableCollectionEditor=True +EditorKeyboardShortcutSettings.CameraShakePreviewer=True +EditorKeyboardShortcutSettings.CameraRigTransitionEditor=True +EditorKeyboardShortcutSettings.CameraRigAssetEditor=True +EditorKeyboardShortcutSettings.CameraAssetEditor=True +EditorKeyboardShortcutSettings.BlueprintEditorSpawnNodes=True +EditorKeyboardShortcutSettings.BlueprintEditor=True +EditorKeyboardShortcutSettings.BlueprintDebugger=True +EditorKeyboardShortcutSettings.BindWidget=True +EditorKeyboardShortcutSettings.AssetManagerEditorCommands=True +EditorKeyboardShortcutSettings.AssetEditor=True +EditorKeyboardShortcutSettings.AnimSequenceCurveEditor=True +EditorKeyboardShortcutSettings.AnimGraph=True +EditorKeyboardShortcutSettings.AdvancedRenamer=True +EditorKeyboardShortcutSettings.AdvancedPreviewScene=True +EditorKeyboardShortcutSettings.ActorBrowsingModeCommands=True +InterchangeEditorSettings.Group Used=True +InterchangeEditorSettings.Show Dialog=True +EditorSettings.Horde=True +EditorSettings.Derived Data Cache S3=True +EditorSettings.Derived Data Cache Notifications=True +EditorSettings.DerivedDataCache=True +EditorExperimentalSettings.LevelInstance=True +EditorExperimentalSettings.WorldPartition=True +EditorExperimentalSettings.Content Browser=True +EditorExperimentalSettings.Materials=True +EditorExperimentalSettings.Core=True +EditorExperimentalSettings.LightingBuilds=True +EditorExperimentalSettings.PIE=True +EditorExperimentalSettings.Cooking=True +EditorExperimentalSettings.Blueprints=True +EditorExperimentalSettings.UserInterface=True +EditorExperimentalSettings.Tools=True +EditorExperimentalSettings.Foliage=True +EditorExperimentalSettings.HDR=True +EditorExperimentalSettings.Performance=True +EnhancedInputEditorSettings.Blueprints=True +EnhancedInputEditorSettings.Editor=True +EnhancedInputEditorSettings.Logging=True +CollectionSettings.Collections=True +BlueprintEditorSettings.Play=True +BlueprintEditorSettings.FindInBlueprints=True +BlueprintEditorSettings.DeveloperTools=True +BlueprintEditorSettings.Compiler=True +BlueprintEditorSettings.VisualStyle=True +BlueprintEditorSettings.Workflow=True +AudioEditorSettings.AssetMenu=True +AudioEditorSettings.NonGameWorld=True +EditorStyleSettings.Graphs=True +EditorStyleSettings.Accessibility=True +EditorStyleSettings.UserInterface=True +EditorStyleSettings.Theme=True +BlueprintHeaderViewSettings.Settings=True +FractureModeCustomizationSettings.Fracture Mode=True +GameplayCamerasEditorSettings.NodeTitleColors=True +LightMixerEditorSettings.Light Mixer=True +LiveLinkEditorSettings.LiveLink=True +ModelingToolsModeCustomizationSettings.Modeling Mode=True +ModelingComponentsEditorSettings.Modeling Tools=True +ObjectMixerEditorSettings.Object Mixer=True +PythonScriptPluginUserSettings.Python=True +StateTreeEditorSettings.Compiler=True +StateTreeEditorSettings.Debugger=True +StateTreeEditorSettings.Experimental=True +CrashReportsPrivacySettings.Options=True +AnalyticsPrivacySettings.Options=True +AutomationTestSettings.Loading=True +AutomationTestSettings.Automation=True +AutomationTestSettings.Open Asset Tests=True +AutomationTestSettings.PIE Test Maps=True +AutomationTestSettings.Play all project Maps In PIE=True +AutomationTestSettings.MiscAutomationSetups=True +AutomationTestSettings.ExternalTools=True +AutomationTestSettings.Screenshots=True +CrashReporterSettings.CrashReporter=True +DataValidationSettings.Data Validation=True +GameplayDebuggerUserSettings.GameplayDebugger=True +GameplayTagsDeveloperSettings.GameplayTags=True +EditorDataStorageSettings.MassSettings=True +LogVisualizerSettings.VisualLogger=True +GeneralProjectSettings.About=True +GeneralProjectSettings.Publisher=True +GeneralProjectSettings.Legal=True +GeneralProjectSettings.Displayed=True +GeneralProjectSettings.Settings=True +CryptoKeysSettings.Encryption=True +CryptoKeysSettings.Signing=True +GameplayTagsSettings.GameplayTags=True +GameplayTagsSettings.Advanced Gameplay Tags=True +GameplayTagsSettings.Advanced Replication=True +GameMapsSettings.DefaultModes=True +GameMapsSettings.DefaultMaps=True +GameMapsSettings.LocalMultiplayer=True +GameMapsSettings.GameInstance=True +MoviePlayerSettings.Movies=True +ProjectPackagingSettings.CustomBuilds=True +ProjectPackagingSettings.Packaging=True +ProjectPackagingSettings.Project=True +ProjectPackagingSettings.Prerequisites=True +HardwareTargetingSettings.Target Hardware=True +HardwareTargetingSettings.Pending Changes=True +AssetManagerSettings.Asset Manager=True +AssetManagerSettings.Redirects=True +AssetToolsSettings.Advanced Copy=True +SlateRHIRendererSettings.PostProcessing=True +AISystem.AISystem=True +AISystem.Movement=True +AISystem.EQS=True +AISystem.Blackboard=True +AISystem.Behavior Tree=True +AISystem.PerceptionSystem=True +AnimationSettings.Compression=True +AnimationSettings.Performance=True +AnimationSettings.AnimationAttributes=True +AnimationSettings.Mirroring=True +AnimationSettings.AnimationData=True +AnimationModifierSettings.Modifiers=True +AudioSettings.Dialogue=True +AudioSettings.Audio=True +AudioSettings.Mix=True +AudioSettings.Quality=True +AudioSettings.Debug=True +ChaosSolverSettings.GameInstance=True +CineCameraSettings.Lens=True +CineCameraSettings.Filmback=True +CineCameraSettings.Crop=True +CollisionProfile.Object Channels=True +CollisionProfile.Trace Channels=True +ConsoleSettings.General=True +ConsoleSettings.AutoComplete=True +ConsoleSettings.Colors=True +ControlRigSettings.Shapes=True +ControlRigSettings.ModularRigging=True +CookerSettings.Cooker=True +CookerSettings.Textures=True +CookerSettings.Editor=True +CrowdManager.Config=True +DataDrivenConsoleVariableSettings.DataDrivenCVar=True +DebugCameraControllerSettings.General=True +OptimusSettings.DeformerGraph=True +EnhancedInputDeveloperSettings.Enhanced Input=True +InputModifierSmoothDelta.Settings=True +InputModifierDeadZone.Settings=True +InputModifierResponseCurveExponential.Settings=True +InputModifierFOVScaling.Settings=True +EnhancedInputDeveloperSettings.Modifier Default Values=True +InputTriggerDown.Trigger Settings=True +InputTriggerPressed.Trigger Settings=True +InputTriggerReleased.Trigger Settings=True +InputTriggerHold.Trigger Settings=True +InputTriggerHoldAndRelease.Trigger Settings=True +InputTriggerTap.Trigger Settings=True +InputTriggerPulse.Trigger Settings=True +EnhancedInputDeveloperSettings.Trigger Default Values=True +EnhancedInputEditorProjectSettings.Default=True +MegascansMaterialParentSettings.Parent Materials=True +InterchangeFbxSettings.FBX=True +InterchangeFbxSettings.FBX=True +InterchangeFbxSettings.FBX=True +GameplayDebuggerConfig.Input=True +GameplayDebuggerConfig.Display=True +GameplayDebuggerConfig.AddOns=True +GarbageCollectionSettings.General=True +GarbageCollectionSettings.Optimization=True +GarbageCollectionSettings.Debug=True +Engine.Fonts=True +Engine.DefaultClasses=True +Engine.DefaultMaterials=True +Engine.Settings=True +Engine.Subtitles=True +Engine.Blueprints=True +Engine.Anim Blueprints=True +Engine.Framerate=True +Engine.Timecode=True +Engine.Screenshots=True +GLTFPipelineSettings.PredefinedglTFMaterialLibrary=True +HierarchicalLODSettings.HLODSystem=True +InputSettings.Bindings=True +InputSettings.Platforms=True +InputSettings.ViewportProperties=True +InputSettings.Input=True +InputSettings.Mobile=True +InputSettings.Virtual Keyboard (Mobile)=True +InputSettings.DefaultClasses=True +InputSettings.Console=True +InterchangeProjectSettings.ImportContent=True +InterchangeProjectSettings.ImportIntoLevel=True +InterchangeProjectSettings.EditorInterface=True +InterchangeProjectSettings.Generic=True +InterchangeProjectSettings.Editor Generic Pipeline Class=True +InterchangeProjectSettings.Converters=True +InterchangeProjectSettings.Groups=True +LandscapeSettings.Layers=True +LandscapeSettings.Configuration=True +LandscapeSettings.Materials=True +LandscapeSettings.HLOD=True +LevelSequenceProjectSettings.Timeline=True +MassSettings.Mass=True +MaterialXPipelineSettings.MaterialXPredefined . Surface Shaders=True +MaterialXPipelineSettings.MaterialXPredefined . BSDF=True +MaterialXPipelineSettings.MaterialXPredefined . EDF=True +MaterialXPipelineSettings.MaterialXPredefined . VDF=True +MeshBudgetProjectSettings.StaticMesh=True +MeshDrawCommandStatsSettings.Engine=True +MetaSoundSettings.AutoUpdate=True +MetaSoundSettings.Registration=True +MetaSoundSettings.Pages (Experimental)=True +MetaSoundSettings.Quality=True +RecastNavMesh.Display=True +RecastNavMesh.Generation=True +RecastNavMesh.Query=True +RecastNavMesh.Runtime=True +RecastNavMesh.Tick=True +RecastNavMesh.Collision=True +RecastNavMesh.HLOD=True +RecastNavMesh.Physics=True +RecastNavMesh.Networking=True +NavigationSystemV1.Navigation=True +NavigationSystemV1.NavigationSystem=True +NavigationSystemV1.Navigation Enforcing=True +NavigationSystemV1.Agents=True +NetworkSettings.libcurl=True +NetworkSettings.World=True +PhysicsSettings.Replication=True +PhysicsSettings.Simulation=True +PhysicsSettings.Optimization=True +PhysicsSettings.Framerate=True +PhysicsSettings.Broadphase=True +PhysicsSettings.ChaosPhysics=True +PhysicsSettings.Constants=True +PhysicsSettings.Physical Surface=True +RendererSettings.Mobile=True +RendererSettings.Materials=True +RendererSettings.Culling=True +RendererSettings.Textures=True +RendererSettings.VirtualTextures=True +RendererSettings.Runtime Virtual Textures=True +RendererSettings.WorkingColorSpace=True +RendererSettings.GlobalIllumination=True +RendererSettings.Reflections=True +RendererSettings.Lumen=True +RendererSettings.DirectLighting=True +RendererSettings.HardwareRayTracing=True +RendererSettings.SoftwareRayTracing=True +RendererSettings.Nanite=True +RendererSettings.MiscLighting=True +RendererSettings.ForwardRenderer=True +RendererSettings.Translucency=True +RendererSettings.VR=True +RendererSettings.Postprocessing=True +RendererSettings.DefaultSettings=True +RendererSettings.DefaultScreenPercentage=True +RendererSettings.Optimizations=True +RendererSettings.LightFunctionAtlas=True +RendererSettings.Debugging=True +RendererSettings.Mesh Streaming=True +RendererSettings.Heterogeneous Volumes=True +RendererSettings.Editor=True +RendererSettings.ShaderPermutationReduction=True +RendererSettings.Substrate=True +RendererSettings.HairStrands=True +RendererSettings.MobileShaderPermutationReduction=True +RendererSettings.Skinning=True +RendererSettings.PostProcessCalibrationMaterials=True +RendererOverrideSettings.ShaderPermutationReduction=True +SlateSettings.ConstraintCanvas=True +StateTreeSettings.StateTree=True +StreamingSettings.PackageStreaming=True +StreamingSettings.LevelStreaming=True +StreamingSettings.General=True +StreamingSettings.Deprecated Settings=True +TextureEncodingProjectSettings.EncodeSettings=True +TextureEncodingProjectSettings.EncodeSpeedSettings=True +TextureEncodingProjectSettings.EncodeSpeeds=True +UsdProjectSettings.USD=True +UserInterfaceSettings.Focus=True +UserInterfaceSettings.Hardware Cursors=True +UserInterfaceSettings.Software Cursors=True +UserInterfaceSettings.DPI Scaling=True +UserInterfaceSettings.Widgets=True +UserInterfaceSettings.UMG Fonts=True +VirtualTexturePoolConfig.PoolConfig=True +WorldPartitionSettings.WorldPartition=True +LevelEditor2DSettings.General=True +LevelEditor2DSettings.LayerSnapping=True +EditorProjectAppearanceSettings.Units=True +EditorProjectAppearanceSettings.ReferenceViewer=True +EditorProjectAssetSettings.Redirectors=True +EditorProjectAssetSettings.Internationalization=True +BlueprintEditorProjectSettings.Blueprints=True +BlueprintEditorProjectSettings.Actors=True +BlueprintEditorProjectSettings.Experimental=True +BlueprintEditorProjectSettings.Play=True +ClassViewerProjectSettings.ClassVisibilityManagement=True +ContentBrowserCollectionProjectSettings.Collections=True +DDCProjectSettings.Warnings=True +EditorUtilityWidgetProjectSettings.Designer=True +EditorUtilityWidgetProjectSettings.Compiler=True +EditorUtilityWidgetProjectSettings.Class Filtering=True +EditorUtilityWidgetProjectSettings.Class Settings=True +ProxyLODMeshSimplificationSettings.General=True +LevelEditorProjectSettings.Editing=True +LevelInstanceEditorSettings.World Partition=True +MovieSceneToolsProjectSettings.Timeline=True +MovieSceneToolsProjectSettings.Shots=True +MovieSceneToolsProjectSettings.TrackSettings=True +MeshSimplificationSettings.General=True +PaperImporterSettings.NewAssetSettings=True +PaperImporterSettings.ImportSettings=True +PaperImporterSettings.MaterialSettings=True +EditorPerformanceProjectSettings.ViewportResolution=True +SourceControlPreferences.SourceControl=True +SourceControlPreferences.Internationalization=True +RigVMProjectSettings.Experimental=True +SkeletalMeshSimplificationSettings.General=True +PlasticSourceControlProjectSettings.Unity Version Control=True +StructViewerProjectSettings.StructVisibilityManagement=True +TextureImportSettings.VirtualTextures=True +TextureImportSettings.ImportSettings=True +UMGEditorProjectSettings.Compiler=True +UMGEditorProjectSettings.Class Filtering=True +UMGEditorProjectSettings.Designer=True +UMGEditorProjectSettings.Class Settings=True +AndroidRuntimeSettings.APK Packaging=True +AndroidRuntimeSettings.App Bundles=True +AndroidRuntimeSettings.Build=True +AndroidRuntimeSettings.Advanced APK Packaging=True +AndroidRuntimeSettings.DistributionSigning=True +AndroidRuntimeSettings.GooglePlayServices=True +AndroidRuntimeSettings.Icons=True +AndroidRuntimeSettings.LaunchImages=True +AndroidRuntimeSettings.Input=True +AndroidRuntimeSettings.GraphicsDebugger=True +AndroidRuntimeSettings.Audio=True +AndroidRuntimeSettings.MultiTextureFormats=True +AndroidRuntimeSettings.TextureFormatPriorities=True +AndroidRuntimeSettings.Misc=True +ShaderPlatformQualitySettings.Forward Rendering Overrides=True +AndroidSDKSettings.SDKConfig=True +IOSRuntimeSettings.Mobile Provision=True +IOSRuntimeSettings.BundleInformation=True +IOSRuntimeSettings.PowerUsage=True +IOSRuntimeSettings.Orientation=True +IOSRuntimeSettings.FileSystem=True +IOSRuntimeSettings.Input=True +IOSRuntimeSettings.Rendering=True +IOSRuntimeSettings.Build=True +IOSRuntimeSettings.Online=True +IOSRuntimeSettings.RequiredIOSIcons=True +IOSRuntimeSettings.OptionalIOSIcons=True +IOSRuntimeSettings.RequiredTVOSAssets=True +IOSRuntimeSettings.OptionalTVOSAssets=True +IOSRuntimeSettings.LaunchScreen=True +IOSRuntimeSettings.Remote Build=True +IOSRuntimeSettings.Audio=True +LinuxTargetSettings.Targeted RHIs=True +LinuxTargetSettings.Splash=True +LinuxTargetSettings.Icon=True +LinuxTargetSettings.Audio=True +MacTargetSettings.Targeted RHIs=True +MacTargetSettings.Rendering=True +MacTargetSettings.Packaging=True +MacTargetSettings.Splash=True +MacTargetSettings.Icon=True +MacTargetSettings.Audio=True +WindowsTargetSettings.D3D12 Targeted Shader Formats=True +WindowsTargetSettings.D3D11 Targeted Shader Formats=True +WindowsTargetSettings.Vulkan Targeted Shader Formats=True +WindowsTargetSettings.Targeted RHIs=True +WindowsTargetSettings.Toolchain=True +WindowsTargetSettings.Splash=True +WindowsTargetSettings.Icon=True +WindowsTargetSettings.Audio=True +XcodeProjectSettings.Xcode=True +XcodeProjectSettings.Plist Files=True +XcodeProjectSettings.Entitlements=True +XcodeProjectSettings.Code Signing=True +XcodeProjectSettings.Privacy Manifests=True +AndroidFileServerRuntimeSettings.Packaging=True +AndroidFileServerRuntimeSettings.Deployment=True +AndroidFileServerRuntimeSettings.Connection=True +AvfMediaSettings.Debug=True +DataflowSettings.PinColors=True +DataflowSettings.NodeColors=True +FractureModeSettings.Fracture Mode=True +GameplayCamerasSettings.General=True +GameplayCamerasSettings.IK Aiming=True +GeometryCacheStreamerSettings.Geometry Cache Streamer=True +GooglePADRuntimeSettings.Packaging=True +GroomPluginSettings.GroomCache=True +HoldoutCompositeSettings.General=True +ImgMediaSettings.General=True +ImgMediaSettings.Caching=True +ImgMediaSettings.EXR=True +ImgMediaSettings.Proxies=True +ToolPresetProjectSettings.Interactive Tool Presets=True +LevelSequenceEditorSettings.Tracks=True +LevelSequenceEditorSettings.Playback=True +LiveLinkSettings.LiveLink=True +LiveLinkComponentSettings.LiveLink=True +LiveLinkSequencerSettings.LiveLink=True +MetaHumanSDKSettings.MetaHuman Import Paths=True +ModelingToolsEditorModeSettings.Modeling Mode=True +ModelingComponentsSettings.Modeling Tools=True +NiagaraSettings.Niagara=True +NiagaraSettings.Viewport=True +NiagaraSettings.SimulationCaching=True +NiagaraSettings.Scalability=True +NiagaraSettings.Renderer=True +NiagaraSettings.LightRenderer=True +NiagaraSettings.SkeletalMeshDI=True +NiagaraSettings.StaticMeshDI=True +NiagaraSettings.AsyncGpuTraceDI=True +NiagaraSettings.SimCache=True +NiagaraEditorSettings.Niagara=True +NiagaraEditorSettings.SimulationOptions=True +NiagaraEditorSettings.Niagara Colors=True +NNEDenoiserSettings.NNE Denoiser=True +NNERuntimeORTSettings.ONNX Runtime=True +PaperRuntimeSettings.Experimental=True +PaperRuntimeSettings.Settings=True +PythonScriptPluginSettings.Python=True +PythonScriptPluginSettings.PythonPipInstall=True +PythonScriptPluginSettings.PythonRemoteExecution=True +RenderDocPluginSettings.Frame Capture Settings=True +RenderDocPluginSettings.Advanced Settings=True +ResonanceAudioSettings.Reverb=True +ResonanceAudioSettings.General=True +TakeRecorderProjectSettings.Take Recorder=True +TakeRecorderProjectSettings.Movie Scene Take Settings=True +TakeRecorderProjectSettings.Microphone Audio Recorder=True +TakeRecorderProjectSettings.Audio Input Device=True +TakeRecorderProjectSettings.Animation Recorder=True +TakeRecorderProjectSettings.World Recorder=True +TcpMessagingSettings.Transport=True +UdpMessagingSettings.Availability=True +UdpMessagingSettings.Transport=True +UdpMessagingSettings.Tunnel=True +WmfMediaSettings.Media=True +WmfMediaSettings.Debug=True +InputAction.Description=True +InputAction.Action=True +InputAction.Input Consumption=True +InputAction.User Settings=True +InputMappingContext.Mappings=True +InputMappingContext.Description=True +BP_TopCameraPawn_C.Pawn=True +BP_TopCameraPawn_C.Tick=True +BP_TopCameraPawn_C.Camera=True +BP_TopCameraPawn_C.Replication=True +BP_TopCameraPawn_C.Rendering=True +BP_TopCameraPawn_C.Collision=True +BP_TopCameraPawn_C.Actor=True +BP_TopCameraPawn_C.Input=True +BP_TopCameraPawn_C.HLOD=True +BP_TopCameraPawn_C.Physics=True +BP_TopCameraPawn_C.Events=True +CameraComponent.Variable=True +CameraComponent.TransformCommon=True +CameraComponent.Sockets=True +CameraComponent.CameraSettings=True +CameraComponent.CameraOptions=True +CameraComponent.Camera=True +CameraComponent.ComponentTick=True +CameraComponent.PostProcess=True +CameraComponent.Tags=True +CameraComponent.ComponentReplication=True +CameraComponent.Activation=True +CameraComponent.Cooking=True +CameraComponent.Events=True +BP_Dabaza_Pawn_C.Pawn=True +BP_Dabaza_Pawn_C.Tick=True +BP_Dabaza_Pawn_C.Camera=True +BP_Dabaza_Pawn_C.Replication=True +BP_Dabaza_Pawn_C.Rendering=True +BP_Dabaza_Pawn_C.Collision=True +BP_Dabaza_Pawn_C.Actor=True +BP_Dabaza_Pawn_C.Input=True +BP_Dabaza_Pawn_C.HLOD=True +BP_Dabaza_Pawn_C.Physics=True +BP_Dabaza_Pawn_C.Events=True +BP_Dabaza_Pawn_C.Networking=True +BP_Dabaza_Pawn_C.TransformCommon=True +PlayerStart.TransformCommon=True +PlayerStart.Object=True +PlayerStart.Rendering=True +PlayerStart.Replication=True +PlayerStart.HLOD=True +PlayerStart.Physics=True +PlayerStart.Networking=True +PlayerStart.Input=True +PlayerStart.Actor=True +CameraActor.TransformCommon=True +CameraActor.CameraSettings=True +CameraActor.CameraOptions=True +CameraActor.AutoPlayerActivation=True +CameraActor.Camera=True +CameraActor.PostProcess=True +CameraActor.Physics=True +CameraActor.Tags=True +CameraActor.AssetUserData=True +CameraActor.Activation=True +CameraActor.Navigation=True +CameraActor.Cooking=True +CameraActor.Replication=True +CameraActor.Collision=True +CameraActor.HLOD=True +CameraActor.Networking=True +CameraActor.Actor=True +Dabaza_C.Tick=True +Dabaza_C.Replication=True +Dabaza_C.Actor=True +Dabaza_C.Input=True +Dabaza_C.HLOD=True +Dabaza_C.Physics=True +Dabaza_C.Events=True +CanvasPanel.Behavior=True +CanvasPanel.Accessibility=True +CanvasPanel.Render Transform=True +CanvasPanel.Performance=True +CanvasPanel.Rendering=True +CanvasPanel.Navigation=True +CanvasPanel.Localization=True +ProgressBar.Layout=True +ProgressBar.Style=True +ProgressBar.Progress=True +ProgressBar.Accessibility=True +ProgressBar.Appearance=True +ProgressBar.Behavior=True +ProgressBar.Render Transform=True +ProgressBar.Performance=True +ProgressBar.Rendering=True +ProgressBar.Navigation=True +ProgressBar.Localization=True +PropertyWrapper.Variable=True +PropertyWrapper.DefaultValueCategory=True +K2Node_VariableGet.Variable=True +K2Node_VariableGet.DefaultValueCategory=True +K2Node_CallFunction.Graph=True +WidgetComponent.Variable=True +WidgetComponent.TransformCommon=True +WidgetComponent.Sockets=True +WidgetComponent.UserInterface=True +WidgetComponent.Interaction=True +WidgetComponent.ComponentTick=True +WidgetComponent.Animation=True +WidgetComponent.Layers=True +WidgetComponent.HLOD=True +WidgetComponent.Physics=True +WidgetComponent.Collision=True +WidgetComponent.Rendering=True +WidgetComponent.Navigation=True +WidgetComponent.VirtualTexture=True +WidgetComponent.Tags=True +WidgetComponent.ComponentReplication=True +WidgetComponent.Cooking=True +WidgetComponent.Events=True +WidgetComponent.Materials=True +K2Node_VariableSet.Variable=True +K2Node_VariableSet.DefaultValueCategory=True +K2Node_VariableGet.Events=True +PropertyWrapper.Events=True +K2Node_VariableSet.Events=True +MulticastInlineDelegatePropertyWrapper.DelegateInputs=True +MulticastInlineDelegatePropertyWrapper.Variable=True +MulticastInlineDelegatePropertyWrapper.DefaultValueCategory=True +EdGraphNode_Comment.GraphNodeDetail=True +EdGraphNode_Comment.Comment=True +SkillData.SkillData=True +BP_DeepFish_C.Default=True +BP_PawnEntity_C.Default=True +BP_PawnEntity_C.PawnWithSkill=True +BP_Dabaza_GameMode_C.Default=True +BP_Dabaza_Pawn_C.Default=True +BP_Dabaza_Pawn_C.PawnWithSkill=True +TopDownMap_C.Tick=True +TopDownMap_C.Replication=True +TopDownMap_C.Actor=True +TopDownMap_C.HLOD=True +TopDownMap_C.Input=True +TopDownMap_C.Physics=True +TopDownMap_C.Events=True +Image.Layout=True +Image.Appearance=True +Image.Accessibility=True +Image.Behavior=False +Image.Render Transform=True +Image.Performance=True +Image.Rendering=True +Image.Navigation=True +Image.Localization=True +Image.Events=True +K2Node_FunctionEntry.GraphNodeDetail=True +K2Node_FunctionEntry.Graph=True +K2Node_FunctionEntry.Inputs=True +K2Node_FunctionEntry.Outputs=True +PreviewMaterial.Material=True +PreviewMaterial.Translucency=True +PreviewMaterial.Group Sorting=True +PreviewMaterial.Nanite=True +PreviewMaterial.TranslucencySelfShadowing=True +PreviewMaterial.Refraction=True +PreviewMaterial.WorldPositionOffset=True +PreviewMaterial.PostProcessMaterial=True +PreviewMaterial.Mobile=True +PreviewMaterial.ForwardShading=True +PreviewMaterial.PhysicalMaterial=True +PreviewMaterial.PhysicalMaterialMask=True +PreviewMaterial.Usage=True +PreviewMaterial.Lightmass=True +PreviewMaterial.Previewing=True +PreviewMaterial.ImportSettings=True +PreviewMaterial.LightFunctionMaterial=True +PreviewMaterial.PixelDepthOffset=True +MaterialExpressionTextureSample.MaterialExpressionTextureSample=True +MaterialExpressionTextureSample.MaterialExpressionTextureBase=True +MaterialExpressionTextureSample.MaterialExpression=True +MaterialExpressionTextureSampleParameter2D.General=True +MaterialExpressionTextureSampleParameter2D.MaterialExpression=True +MaterialExpressionTextureSampleParameter2D.ParameterCustomization=True +MaterialExpressionTextureSampleParameter2D.MaterialExpressionTextureSample=True +MaterialExpressionTextureSampleParameter2D.MaterialExpressionTextureBase=True +MaterialExpressionConstant3Vector.MaterialExpressionConstant3Vector=True +MaterialExpressionConstant3Vector.MaterialExpression=True +MaterialExpressionVectorParameter.General=True +MaterialExpressionVectorParameter.MaterialExpressionVectorParameter=True +MaterialExpressionVectorParameter.MaterialExpression=True +MaterialExpressionVectorParameter.CustomPrimitiveData=True +MaterialExpressionVectorParameter.ParameterCustomization=True +MaterialExpressionConstant.MaterialExpressionConstant=True +MaterialExpressionConstant.MaterialExpression=True +MaterialExpressionScalarParameter.General=True +MaterialExpressionScalarParameter.MaterialExpressionScalarParameter=True +MaterialExpressionScalarParameter.MaterialExpression=True +MaterialExpressionScalarParameter.CustomPrimitiveData=True +MaterialExpressionTextureCoordinate.MaterialExpressionTextureCoordinate=True +MaterialExpressionTextureCoordinate.MaterialExpression=True +MaterialExpressionMaterialFunctionCall.MaterialExpressionMaterialFunctionCall=True +MaterialExpressionMaterialFunctionCall.MaterialExpression=True +MaterialExpressionBindlessSwitch.MaterialExpression=True +MaterialExpressionIf.MaterialExpressionIf=True +MaterialExpressionIf.MaterialExpression=True +MaterialExpressionAdd.MaterialExpressionAdd=True +MaterialExpressionAdd.MaterialExpression=True +MaterialExpressionDivide.MaterialExpressionDivide=True +MaterialExpressionDivide.MaterialExpression=True +MaterialExpressionSubtract.MaterialExpressionSubtract=True +MaterialExpressionSubtract.MaterialExpression=True +MaterialExpressionMultiply.MaterialExpressionMultiply=True +MaterialExpressionMultiply.MaterialExpression=True +WBP_SkillCard_C.Appearance=True +WBP_SkillCard_C.Input=True +WBP_SkillCard_C.Interaction=True +WBP_SkillCard_C.Performance=True +WBP_SkillCard_C.Layout=True +WBP_SkillCard_C.Behavior=True +WBP_SkillCard_C.Render Transform=True +WBP_SkillCard_C.Localization=True +WBP_SkillCard_C.Rendering=True +WBP_SkillCard_C.Navigation=True +WBP_SkillCard_C.Default=True +WBP_SkillCard_C.Designer=True +WBP_SkillCard_C.Accessibility=True +TextBlock.Layout=True +TextBlock.Content=True +TextBlock.Appearance=True +TextBlock.Accessibility=True +TextBlock.Performance=True +TextBlock.Wrapping=True +TextBlock.Behavior=True +TextBlock.Render Transform=True +TextBlock.Rendering=True +TextBlock.Navigation=True +TextBlock.Localization=True +K2Node_FormatText.Arguments=True +HorizontalBox.Layout=True +HorizontalBox.Behavior=True +HorizontalBox.Accessibility=True +HorizontalBox.Render Transform=True +HorizontalBox.Performance=True +HorizontalBox.Rendering=True +HorizontalBox.Navigation=True +HorizontalBox.Localization=True +WBP_SkillCard_C.Events=True +ScaleBox.Layout=True +ScaleBox.Stretching=True +ScaleBox.Accessibility=True +ScaleBox.Behavior=True +ScaleBox.Render Transform=True +ScaleBox.Performance=True +ScaleBox.Rendering=True +ScaleBox.Navigation=True +ScaleBox.Localization=True +Widget.Behavior=True +Widget.Accessibility=True +Widget.Render Transform=True +Widget.Performance=True +Widget.Rendering=True +Widget.Navigation=True +Widget.Localization=True +CanvasPanel.Layout=True +WBP_SkillContainer_C.Appearance=True +WBP_SkillContainer_C.Input=True +WBP_SkillContainer_C.Accessibility=True +WBP_SkillContainer_C.Interaction=True +WBP_SkillContainer_C.Performance=True +WBP_SkillContainer_C.Behavior=True +WBP_SkillContainer_C.Render Transform=True +WBP_SkillContainer_C.Rendering=True +WBP_SkillContainer_C.Navigation=True +WBP_SkillContainer_C.Designer=True +WBP_SkillContainer_C.Localization=True +WBP_SkillContainer_C.Events=True +UniformGridPanel.Layout=True +UniformGridPanel.Child Layout=True +UniformGridPanel.Accessibility=True +UniformGridPanel.Behavior=True +UniformGridPanel.Render Transform=True +UniformGridPanel.Performance=True +UniformGridPanel.Rendering=True +UniformGridPanel.Navigation=True +UniformGridPanel.Localization=True +GridPanel.Layout=True +GridPanel.Fill Rules=True +GridPanel.Accessibility=True +GridPanel.Behavior=True +GridPanel.Render Transform=True +GridPanel.Performance=True +GridPanel.Rendering=True +GridPanel.Navigation=True +GridPanel.Localization=True +WBP_SkillContainer_C.Layout=True +K2Node_SwitchInteger.PinOptions=True +HOTRELOAD_SkillData_0.SkillData=True +DataTable.DataTable=True +DataTable.ImportOptions=True +DataTable.File Path=True +WBP_GameEnd_C.Appearance=True +WBP_GameEnd_C.Input=True +WBP_GameEnd_C.Accessibility=True +WBP_GameEnd_C.Interaction=True +WBP_GameEnd_C.Performance=True +WBP_GameEnd_C.Behavior=True +WBP_GameEnd_C.Render Transform=True +WBP_GameEnd_C.Rendering=True +WBP_GameEnd_C.Navigation=True +WBP_GameEnd_C.Designer=True +WBP_GameEnd_C.Localization=True +WBP_GameEnd_C.Events=True +VerticalBox.Layout=True +VerticalBox.Behavior=True +VerticalBox.Accessibility=True +VerticalBox.Render Transform=True +VerticalBox.Performance=True +VerticalBox.Rendering=True +VerticalBox.Navigation=True +VerticalBox.Localization=True +WBP_SkillEffect_C.Appearance=True +WBP_SkillEffect_C.Input=True +WBP_SkillEffect_C.Interaction=True +WBP_SkillEffect_C.Performance=True +WBP_SkillEffect_C.Layout=True +WBP_SkillEffect_C.Behavior=True +WBP_SkillEffect_C.Render Transform=True +WBP_SkillEffect_C.Localization=True +WBP_SkillEffect_C.Rendering=True +WBP_SkillEffect_C.Navigation=True +WBP_SkillEffect_C.Designer=True +WBP_SkillEffect_C.Accessibility=True +WBP_SkillEffectText_C.Layout=True +WBP_SkillEffectText_C.Appearance=True +WBP_SkillEffectText_C.Input=True +WBP_SkillEffectText_C.Accessibility=True +WBP_SkillEffectText_C.Interaction=True +WBP_SkillEffectText_C.Performance=True +WBP_SkillEffectText_C.Behavior=True +WBP_SkillEffectText_C.Render Transform=True +WBP_SkillEffectText_C.Rendering=True +WBP_SkillEffectText_C.Navigation=True +WBP_SkillEffectText_C.Localization=True +WBP_SkillEffectText_C.Events=True +WBP_SkillEffectText_C.Designer=True +WBP_SkillEffectText_C.Default=True +WBP_SkillEffect_C.Default=True +TextBlock.Clipping=True +WBP_SkillEffect_C.Events=True +ListView.Layout=True +ListView.ListView=True +ListView.Scrolling=True +ListView.Accessibility=True +ListView.Input=True +ListView.ListEntries=True +ListView.Behavior=True +ListView.Render Transform=True +ListView.Performance=True +ListView.Rendering=True +ListView.Navigation=True +ListView.Localization=True +ListView.Events=True +WrapBox.Layout=True +WrapBox.Content Layout=True +WrapBox.Accessibility=True +WrapBox.Behavior=True +WrapBox.Render Transform=True +WrapBox.Performance=True +WrapBox.Rendering=True +WrapBox.Navigation=True +WrapBox.Localization=True +K2Node_FunctionResult.Graph=True +EdGraph.Graph=True +BP_DeepFish_C.PawnWithSkill=True +EdGraph.Inputs=True +EdGraph.Outputs=True +K2Node_BreakStruct.PinOptions=True +K2Node_CallFunction.Inputs=True +K2Node_CallFunction.Outputs=True +NavMeshBoundsVolume.TransformCommon=True +NavMeshBoundsVolume.BrushSettings=True +NavMeshBoundsVolume.Navigation=True +NavMeshBoundsVolume.HLOD=True +NavMeshBoundsVolume.Collision=True +NavMeshBoundsVolume.Tags=True +NavMeshBoundsVolume.Cooking=True +NavMeshBoundsVolume.Replication=True +NavMeshBoundsVolume.Networking=True +NavMeshBoundsVolume.Actor=True +K2Node_FunctionResult.Inputs=True +K2Node_FunctionResult.Outputs=True +K2Node_Tunnel.Graph=True +K2Node_Tunnel.Inputs=True +K2Node_Tunnel.Outputs=True +WorldSettings.Cooking=True + +[AssetEditorSubsystem] +CleanShutdown=True +DebuggerAttached=False +RecentAssetEditors=BlueprintEditor +RecentAssetEditors=BlueprintEditor +RecentAssetEditors=BlueprintEditor +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors=DataTableEditor +RecentAssetEditors=BlueprintEditor +RecentAssetEditors=WidgetBlueprintEditor +RecentAssetEditors=WidgetBlueprintEditor +RecentAssetEditors=WidgetBlueprintEditor +RecentAssetEditors=WidgetBlueprintEditor +RecentAssetEditors=BlueprintEditor +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +RecentAssetEditors= +OpenAssetsAtExit=/Game/Characters/BP_DeepFish.BP_DeepFish +OpenAssetsAtExit=/Game/Characters/BP_PawnEntity.BP_PawnEntity +OpenAssetsAtExit=/Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode + +[/Script/Engine.WorldPartitionEditorPerProjectUserSettings] +bHideEditorDataLayers=False +bHideRuntimeDataLayers=False +bHideDataLayerActors=True +bHideUnloadedActors=False +bShowOnlySelectedActors=False +bHighlightSelectedDataLayers=True +bHideLevelInstanceContent=True +bDisableLoadingOfLastLoadedRegions=False +bBugItGoLoadRegion=False +bShowCellCoords=False +MinimapUnloadedOpacity=0.660000 +PerWorldEditorSettings=(("/Game/TopDown/Maps/TopDownMap.TopDownMap", ()),("/Game/Maps/Dabaza.Dabaza", ())) + +[RootWindow] +ScreenPosition=X=922.000 Y=152.000 +WindowSize=X=1280.000 Y=720.000 +InitiallyMaximized=True + +[SlateAdditionalLayoutConfig] +Viewport 1.LayoutType=FourPanes2x2 +FourPanes2x2.Viewport 1.Percentages0=X=0.500 Y=0.500 +FourPanes2x2.Viewport 1.Percentages1=X=0.500 Y=0.500 +FourPanes2x2.Viewport 1.Percentages2=X=0.500 Y=0.500 +FourPanes2x2.Viewport 1.Percentages3=X=0.500 Y=0.500 +FourPanes2x2.Viewport 1.Viewport0.TypeWithinLayout=Default +FourPanes2x2.Viewport 1.Viewport1.TypeWithinLayout=Default +FourPanes2x2.Viewport 1.Viewport2.TypeWithinLayout=Default +FourPanes2x2.Viewport 1.Viewport3.TypeWithinLayout=Default +FourPanes2x2.Viewport 1.bIsMaximized=True +FourPanes2x2.Viewport 1.MaximizedViewport=FourPanes2x2.Viewport 1.Viewport1 + +[Directories2] +UNR=G:/TestForNPCAI/ProjectFish/Content/Maps +BRUSH=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +FBX=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +FBXAnim=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +GenericImport=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +GenericExport=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +GenericOpen=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +GenericSave=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +MeshImportExport=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +WorldRoot=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +Level=G:/TestForNPCAI/ProjectFish/ProjectFish/Content/ +Project=F:/Epic/UE_5.5/ + +[Python] +LastDirectory= +RecentsFiles=F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py + +[/Script/AudioEditor.AudioEditorSettings] +bUseAudioAttenuation=True +bPinSoundCueInAssetMenu=True +bPinSoundCueTemplateInAssetMenu=False +bPinSoundAttenuationInAssetMenu=True +bPinSoundConcurrencyInAssetMenu=True + +[SkeletalMeshModelingTools] +EditingModeActive=True + +[AssetEditorSubsystemRecents] +MRUItem0=/Game/Gameplay/BP_Dabaza_GameMode +MRUItem1=/Game/Characters/BP_PawnEntity +MRUItem2=/Game/Characters/BP_DeepFish +MRUItem3=/Game/Maps/Dabaza +MRUItem4=/Game/TopDown/Maps/TopDownMap +MRUItem5=/Game/DataTable/PawnSkills +MRUItem6=/Engine/EditorBlueprintResources/StandardMacros +MRUItem7=/Game/UI/WBP_SkillContainer +MRUItem8=/Game/UI/WBP_SkillCard +MRUItem9=/Game/UI/WBP_SkillEffectText +MRUItem10=/Game/UI/WBP_SkillEffect +MRUItem11=/Game/Characters/BP_TopCameraPawn +MRUItem12=/Game/UI/WBP_GameEnd +MRUItem13=/Game/UI/Mats/M_SkillCard +MRUItem14=/Game/Characters/BP_Dabaza_Pawn +MRUItem15=/Game/UI/WBP_EnduranceBar +MRUItem16=/Game/TopDown/Input/IMC_Default +MRUItem17=/Game/TopDown/Input/Actions/IA_SetDestination_Click +MRUItem18=/Game/Gameplay/BP_Ready_GameMode +MRUItem19=/Game/LevelPrototyping/Materials/MI_PrototypeGrid_Gray1 +MRUItem20=/Game/Deep_Hunter/Character/SKM_Deep_hunter + +[PlacementMode] +RecentlyPlaced=/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn; +RecentlyPlaced=/Script/Engine.CameraActor;/Engine/Transient.ActorFactoryCameraActor_0 +RecentlyPlaced=/Game/Characters/BP_TopCameraPawn.BP_TopCameraPawn; +RecentlyPlaced=/Game/Characters/BP_DeepFish.BP_DeepFish; + +[SelectionDetails] +PreserveScaleRatio=True + +[DetailMultiObjectNodeExpansion] +EditorStyleSettings=True +GeneralProjectSettings=True +InputSettings=True +GameMapsSettings=True + +[DetailCategoriesAdvanced] +InputSettings.Bindings=True +InputAction.Action=True +TextBlock.Wrapping=True + +[/Script/BlueprintGraph.BlueprintEditorSettings] +bDrawMidpointArrowsInBlueprints=False +bShowGraphInstructionText=True +bHideUnrelatedNodes=False +bShowShortTooltips=True +bShowFunctionParameterIcon=True +bShowFunctionLocalVariableIcon=True +bEnableInputTriggerSupportWarnings=False +bSplitContextTargetSettings=True +bExposeAllMemberComponentFunctions=True +bShowContextualFavorites=False +bExposeDeprecatedFunctions=False +bCompactCallOnMemberNodes=False +bFlattenFavoritesMenus=True +bAutoCastObjectConnections=False +bShowViewportOnSimulate=False +bSpawnDefaultBlueprintNodes=True +bHideConstructionScriptComponentsInDetailsView=True +bHostFindInBlueprintsInGlobalTab=True +bNavigateToNativeFunctionsFromCallNodes=True +bDoubleClickNavigatesToParent=True +bEnableTypePromotion=True +TypePromotionPinDenyList=string +TypePromotionPinDenyList=text +BreakpointReloadMethod=RestoreAll +bEnablePinValueInspectionTooltips=True +bEnableNamespaceEditorFeatures=True +bEnableContextMenuTimeSlicing=True +ContextMenuTimeSlicingThresholdMs=50 +bIncludeActionsForSelectedAssetsInContextMenu=False +bLimitAssetActionBindingToSingleSelectionOnly=False +bLoadSelectedAssetsForContextMenuActionBinding=True +bDoNotMarkAllInstancesDirtyOnDefaultValueChange=True +bFavorPureCastNodes=False +SaveOnCompile=SoC_Never +bJumpToNodeErrors=False +bAllowExplicitImpureNodeDisabling=False +bShowActionMenuItemSignatures=False +bBlueprintNodeUniqueNames=False +NodeTemplateCacheCapMB=20.000000 +AllowIndexAllBlueprints=LoadOnly +bShowInheritedVariables=True +bAlwaysShowInterfacesInOverrides=True +bShowParentClassInOverrides=True +bShowEmptySections=True +bShowAccessSpecifier=False +Bookmarks=() +PerBlueprintSettings=() +bIncludeCommentNodesInBookmarksTab=True +bShowBookmarksForCurrentDocumentOnlyInTab=False +GraphEditorQuickJumps=() + +[AssetEditorToolkitTabLocation] +/Game/Gameplay/BP_Ready_GameMode.BP_Ready_GameMode=0 +/Game/Characters/BP_DeepFish.BP_DeepFish=0 +/Game/Characters/BP_PawnEntity.BP_PawnEntity=0 +/Game/Maps/Dabaza.Dabaza:PersistentLevel.Dabaza=0 +/Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode=0 +/Game/TopDown/Input/Actions/IA_SetDestination_Click.IA_SetDestination_Click=0 +/Game/TopDown/Input/IMC_Default.IMC_Default=0 +/Game/Characters/BP_TopCameraPawn.BP_TopCameraPawn=0 +/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn=0 +/Game/UI/WBP_EnduranceBar.WBP_EnduranceBar=0 +/Game/DataTable/Skills.Skills=0 +/Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TopDownMap=0 +/Game/UI/WBP_SkillCard.WBP_SkillCard=0 +/Game/UI/Mats/M_SkillCard.M_SkillCard=0 +/Game/DataTable/PawnSkills.PawnSkills=1 +/Game/UI/WBP_SkillContainer.WBP_SkillContainer=0 +/Game/UI/WBP_SkillEffect.WBP_SkillEffect=0 +/Game/UI/WBP_SkillEffectText.WBP_SkillEffectText=0 +/Engine/EditorBlueprintResources/StandardMacros.StandardMacros=1 + +[UMGEditor.Designer] +bCommonResolutionSelected=False +PreviewWidth=1280 +PreviewHeight=720 +PreviewAspectRatio=16:9 +bIsInPortraitMode=False +ProfileName= +ScaleFactor=1 +bCanPreviewSwapAspectRatio=False + +[UMGSequencerSettings SequencerSettings] +AutoChangeMode=None +AllowEditsMode=AllEdits +KeyGroupMode=KeyChanged +KeyInterpolation=Auto +bAutoSetTrackDefaults=False +SpawnPosition=SSP_Origin +bCreateSpawnableCameras=True +bShowRangeSlider=False +bIsSnapEnabled=True +bSnapKeyTimesToInterval=True +bSnapKeyTimesToKeys=True +bSnapSectionTimesToInterval=True +bSnapSectionTimesToSections=True +bSnapKeysAndSectionsToPlayRange=False +bSnapPlayTimeToKeys=False +bSnapPlayTimeToSections=False +bSnapPlayTimeToMarkers=False +bSnapPlayTimeToInterval=True +bSnapPlayTimeToPressedKey=True +bSnapPlayTimeToDraggedKey=True +bSnapCurveValueToInterval=False +bShowSelectedNodesOnly=False +bRewindOnRecord=False +bLeftMouseDragDoesMarquee=False +ZoomPosition=SZP_CurrentTime +bAutoScrollEnabled=False +bLinkCurveEditorTimeRange=False +bSynchronizeCurveEditorSelection=True +bIsolateCurveEditorToSelection=True +bCurveEditorVisible=False +LoopMode=SLM_NoLoop +bResetPlayheadWhenNavigating=False +bKeepCursorInPlayRangeWhileScrubbing=False +bKeepPlayRangeInSectionBounds=True +ZeroPadFrames=0 +JumpFrameIncrement=(Value=5) +TimeWarpDisplay=Both +bShowLayerBars=True +bShowKeyBars=True +bInfiniteKeyAreas=False +bShowChannelColors=False +bShowInfoButton=True +bShowTickLines=True +bShowSequencerToolbar=True +bShowMarkedFrames=True +KeyAreaCurveExtents= +KeyAreaHeightWithCurves=15.000000 +ReduceKeysTolerance=0.000100 +bDeleteKeysWhenTrimming=True +bDisableSectionsAfterBaking=True +MarkedFrameColor=(R=0.000000,G=1.000000,B=1.000000,A=0.400000) +SectionColorTints=(B=142,G=102,R=88,A=255) +SectionColorTints=(B=132,G=137,R=99,A=255) +SectionColorTints=(B=92,G=127,R=110,A=255) +SectionColorTints=(B=102,G=142,R=151,A=255) +SectionColorTints=(B=101,G=119,R=147,A=255) +SectionColorTints=(B=108,G=95,R=139,A=255) +SectionColorTints=(B=121,G=74,R=109,A=255) +bCleanPlaybackMode=True +bActivateRealtimeViewports=True +bEvaluateSubSequencesInIsolation=False +bRerunConstructionScripts=True +bShowDebugVisualization=False +bVisualizePreAndPostRoll=True +bCompileDirectorOnEvaluate=False +TrajectoryPathCap=250 +FrameNumberDisplayFormat=Seconds +MovieRendererName= +bAutoExpandNodesOnSelection=True +bRestoreOriginalViewportOnCameraCutUnlock=True +TreeViewWidth=0.300000 +ViewDensity=Relaxed +AssetBrowserWidth=500.000000 +AssetBrowserHeight=300.000000 +ColumnVisibilitySettings=(ColumnName="Indicator",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Pin",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Lock",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Solo",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Mute",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Label",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Edit",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Add",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="Nav",bIsVisible=True) +ColumnVisibilitySettings=(ColumnName="KeyFrame",bIsVisible=False) +ColumnVisibilitySettings=(ColumnName="ColorPicker",bIsVisible=True) +SidebarState=(("UMGSequencerSettings", (DrawerStates=((DrawerId="SelectionDetails"))))) +TrackFilterBars=(("UMGSequencerSettings", ())) +bIncludePinnedInFilter=False +bAutoExpandNodesOnFilterPass=False +bUseFilterSubmenusForCategories=False +bFilterBarVisible=False +LastFilterBarLayout=Horizontal +LastFilterBarSizeCoefficient=0.000000 +ThumbnailCaptureSettings=(CaptureFrameLocationRule=CurrentFrame) + +[SuppressableDialogs] +ChangeVariableType_Warning=False +DeleteConfirmationVariable_Warning=False + +[MaterialEditor] +PrimType=1 + +[/Script/UnrealEd.MaterialStatsOptions] +bPlatformUsed[0]=0 +bPlatformUsed[1]=0 +bPlatformUsed[2]=0 +bPlatformUsed[3]=0 +bPlatformUsed[4]=0 +bPlatformUsed[5]=0 +bPlatformUsed[6]=0 +bPlatformUsed[7]=0 +bPlatformUsed[8]=0 +bPlatformUsed[9]=0 +bPlatformUsed[10]=0 +bPlatformUsed[11]=0 +bPlatformUsed[12]=0 +bPlatformUsed[13]=0 +bPlatformUsed[14]=1 +bPlatformUsed[15]=0 +bPlatformUsed[16]=0 +bPlatformUsed[17]=0 +bPlatformUsed[18]=0 +bPlatformUsed[19]=0 +bPlatformUsed[20]=0 +bPlatformUsed[21]=0 +bPlatformUsed[22]=0 +bPlatformUsed[23]=0 +bPlatformUsed[24]=0 +bPlatformUsed[25]=0 +bPlatformUsed[26]=0 +bPlatformUsed[27]=0 +bPlatformUsed[28]=0 +bPlatformUsed[29]=0 +bPlatformUsed[30]=0 +bPlatformUsed[31]=0 +bPlatformUsed[32]=0 +bPlatformUsed[33]=0 +bPlatformUsed[34]=0 +bPlatformUsed[35]=0 +bPlatformUsed[36]=0 +bPlatformUsed[37]=0 +bPlatformUsed[38]=0 +bPlatformUsed[39]=0 +bPlatformUsed[40]=0 +bPlatformUsed[41]=0 +bPlatformUsed[42]=0 +bPlatformUsed[43]=0 +bPlatformUsed[44]=0 +bPlatformUsed[45]=0 +bPlatformUsed[46]=0 +bPlatformUsed[47]=0 +bPlatformUsed[48]=0 +bPlatformUsed[49]=1 +bPlatformUsed[50]=0 +bPlatformUsed[51]=0 +bPlatformUsed[52]=0 +bPlatformUsed[53]=0 +bPlatformUsed[54]=0 +bPlatformUsed[55]=0 +bPlatformUsed[56]=0 +bPlatformUsed[57]=0 +bPlatformUsed[58]=0 +bPlatformUsed[59]=0 +bPlatformUsed[60]=0 +bPlatformUsed[61]=0 +bPlatformUsed[62]=0 +bPlatformUsed[63]=0 +bPlatformUsed[64]=0 +bPlatformUsed[65]=0 +bPlatformUsed[66]=0 +bPlatformUsed[67]=0 +bPlatformUsed[68]=0 +bPlatformUsed[69]=0 +bPlatformUsed[70]=0 +bPlatformUsed[71]=0 +bPlatformUsed[72]=0 +bPlatformUsed[73]=0 +bPlatformUsed[74]=0 +bPlatformUsed[75]=0 +bPlatformUsed[76]=0 +bPlatformUsed[77]=0 +bPlatformUsed[78]=0 +bPlatformUsed[79]=0 +bPlatformUsed[80]=0 +bPlatformUsed[81]=0 +bPlatformUsed[82]=0 +bPlatformUsed[83]=0 +bPlatformUsed[84]=0 +bPlatformUsed[85]=0 +bPlatformUsed[86]=0 +bPlatformUsed[87]=0 +bPlatformUsed[88]=0 +bPlatformUsed[89]=0 +bPlatformUsed[90]=0 +bPlatformUsed[91]=0 +bPlatformUsed[92]=0 +bPlatformUsed[93]=0 +bPlatformUsed[94]=0 +bPlatformUsed[95]=0 +bPlatformUsed[96]=0 +bPlatformUsed[97]=0 +bPlatformUsed[98]=0 +bPlatformUsed[99]=0 +bPlatformUsed[100]=0 +bPlatformUsed[101]=0 +bPlatformUsed[102]=0 +bPlatformUsed[103]=0 +bPlatformUsed[104]=0 +bPlatformUsed[105]=0 +bPlatformUsed[106]=0 +bPlatformUsed[107]=0 +bPlatformUsed[108]=0 +bPlatformUsed[109]=0 +bPlatformUsed[110]=0 +bPlatformUsed[111]=0 +bPlatformUsed[112]=0 +bPlatformUsed[113]=0 +bPlatformUsed[114]=0 +bPlatformUsed[115]=0 +bPlatformUsed[116]=0 +bPlatformUsed[117]=0 +bPlatformUsed[118]=0 +bPlatformUsed[119]=0 +bPlatformUsed[120]=0 +bPlatformUsed[121]=0 +bPlatformUsed[122]=0 +bPlatformUsed[123]=0 +bPlatformUsed[124]=0 +bPlatformUsed[125]=0 +bPlatformUsed[126]=0 +bPlatformUsed[127]=0 +bPlatformUsed[128]=0 +bPlatformUsed[129]=0 +bPlatformUsed[130]=0 +bPlatformUsed[131]=0 +bPlatformUsed[132]=0 +bPlatformUsed[133]=0 +bPlatformUsed[134]=0 +bPlatformUsed[135]=0 +bPlatformUsed[136]=0 +bPlatformUsed[137]=0 +bPlatformUsed[138]=0 +bPlatformUsed[139]=0 +bPlatformUsed[140]=0 +bPlatformUsed[141]=0 +bPlatformUsed[142]=0 +bPlatformUsed[143]=0 +bPlatformUsed[144]=0 +bPlatformUsed[145]=0 +bPlatformUsed[146]=0 +bPlatformUsed[147]=0 +bPlatformUsed[148]=0 +bPlatformUsed[149]=0 +bPlatformUsed[150]=0 +bPlatformUsed[151]=0 +bPlatformUsed[152]=0 +bPlatformUsed[153]=0 +bPlatformUsed[154]=0 +bMaterialQualityUsed[0]=0 +bMaterialQualityUsed[1]=1 +bMaterialQualityUsed[2]=0 +bMaterialQualityUsed[3]=0 +MaterialStatsDerivedMIOption=Ignore + +[MessageLog] +LastLogListing=PIE + diff --git a/ProjectFish/Saved/Config/WindowsEditor/GameUserSettings.ini b/ProjectFish/Saved/Config/WindowsEditor/GameUserSettings.ini new file mode 100644 index 0000000..b079e2e --- /dev/null +++ b/ProjectFish/Saved/Config/WindowsEditor/GameUserSettings.ini @@ -0,0 +1,30 @@ +;METADATA=(Diff=true, UseCommands=true) +[/Script/Engine.GameUserSettings] +bUseVSync=False +bUseDynamicResolution=False +ResolutionSizeX=2560 +ResolutionSizeY=1440 +LastUserConfirmedResolutionSizeX=2560 +LastUserConfirmedResolutionSizeY=1440 +WindowPosX=-1 +WindowPosY=-1 +FullscreenMode=1 +LastConfirmedFullscreenMode=1 +PreferredFullscreenMode=1 +Version=5 +AudioQualityLevel=0 +LastConfirmedAudioQualityLevel=0 +FrameRateLimit=0.000000 +DesiredScreenWidth=1280 +bUseDesiredScreenHeight=False +DesiredScreenHeight=720 +LastUserConfirmedDesiredScreenWidth=1280 +LastUserConfirmedDesiredScreenHeight=720 +LastRecommendedScreenWidth=-1.000000 +LastRecommendedScreenHeight=-1.000000 +LastCPUBenchmarkResult=-1.000000 +LastGPUBenchmarkResult=-1.000000 +LastGPUBenchmarkMultiplier=1.000000 +bUseHDRDisplayOutput=False +HDRDisplayOutputNits=1000 + diff --git a/ProjectFish/Saved/Config/WorldState/1809221978.json b/ProjectFish/Saved/Config/WorldState/1809221978.json new file mode 100644 index 0000000..eb669f7 Binary files /dev/null and b/ProjectFish/Saved/Config/WorldState/1809221978.json differ diff --git a/ProjectFish/Saved/Config/WorldState/2592773399.json b/ProjectFish/Saved/Config/WorldState/2592773399.json new file mode 100644 index 0000000..eb669f7 Binary files /dev/null and b/ProjectFish/Saved/Config/WorldState/2592773399.json differ diff --git a/ProjectFish/Saved/Config/WorldState/983781461.json b/ProjectFish/Saved/Config/WorldState/983781461.json new file mode 100644 index 0000000..61ef973 Binary files /dev/null and b/ProjectFish/Saved/Config/WorldState/983781461.json differ diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-07.56.34.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-07.56.34.log new file mode 100644 index 0000000..9905794 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-07.56.34.log @@ -0,0 +1,1410 @@ +Log file open, 06/16/25 15:56:04 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=28164) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.885928 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-486ABD454AF7956A7C1C7E94662BD0A1 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogConfig: Display: Loading VulkanPC ini files took 0.08 seconds +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading Android ini files took 0.09 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogConfig: Display: Loading Mac ini files took 0.09 seconds +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading IOS ini files took 0.09 seconds +LogConfig: Display: Loading Linux ini files took 0.09 seconds +LogConfig: Display: Loading VisionOS ini files took 0.09 seconds +LogConfig: Display: Loading TVOS ini files took 0.10 seconds +LogConfig: Display: Loading Windows ini files took 0.10 seconds +LogConfig: Display: Loading Unix ini files took 0.10 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.10 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.3 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.47ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.14ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.09ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-07.56.05:167][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-07.56.05:167][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-07.56.05:167][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-07.56.05:167][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-07.56.05:168][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-07.56.05:168][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-07.56.05:168][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-07.56.05:168][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-07.56.05:169][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-07.56.05:169][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-07.56.05:170][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-07.56.05:171][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-07.56.05:176][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-07.56.05:176][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-07.56.05:176][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-07.56.05:177][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-07.56.05:178][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-07.56.05:178][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-07.56.05:179][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-07.56.05:180][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-07.56.05:181][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-07.56.05:182][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-07.56.05:183][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-07.56.05:184][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-07.56.05:188][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-07.56.05:188][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-07.56.05:188][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-07.56.05:197][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-07.56.05:197][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-07.56.05:400][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.56.05:400][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.56.05:400][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-07.56.05:400][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.56.05:400][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.56.05:411][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-07.56.05:411][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.56.05:412][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.56.05:523][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.56.05:523][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.56.05:523][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.56.05:525][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.56.05:525][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.56.05:631][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.56.05:631][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.56.05:631][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.56.05:633][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.56.05:633][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.56.05:633][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-07.56.05:633][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-07.56.05:633][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-07.56.05:633][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-07.56.05:633][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-07.56.05:633][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-07.56.05:633][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-07.56.05:633][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-07.56.05:633][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-07.56.05:633][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-07.56.05:633][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-07.56.05:633][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-07.56.05:633][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-07.56.05:633][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-07.56.05:633][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-07.56.05:633][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-07.56.05:633][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-07.56.05:633][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-07.56.05:635][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-07.56.05:635][ 0]LogInit: Computer: T +[2025.06.16-07.56.05:635][ 0]LogInit: User: 99714 +[2025.06.16-07.56.05:635][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-07.56.05:635][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-07.56.05:980][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-07.56.05:980][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-07.56.05:980][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-07.56.05:980][ 0]LogMemory: Process Physical Memory: 616.20 MB used, 629.34 MB peak +[2025.06.16-07.56.05:980][ 0]LogMemory: Process Virtual Memory: 664.85 MB used, 664.85 MB peak +[2025.06.16-07.56.05:980][ 0]LogMemory: Physical Memory: 21160.76 MB used, 11348.54 MB free, 32509.30 MB total +[2025.06.16-07.56.05:980][ 0]LogMemory: Virtual Memory: 37701.80 MB used, 15287.50 MB free, 52989.30 MB total +[2025.06.16-07.56.05:980][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-07.56.05:987][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-07.56.06:006][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-07.56.06:006][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-07.56.06:007][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-07.56.06:007][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-07.56.06:008][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-07.56.06:312][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-07.56.06:312][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-07.56.06:312][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-07.56.06:312][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-07.56.06:312][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-07.56.06:330][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-07.56.06:330][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-07.56.06:460][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-07.56.06:460][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-07.56.06:460][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-07.56.06:460][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-07.56.06:460][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-07.56.06:460][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-07.56.06:461][ 0]LogWindows: Attached monitors: +[2025.06.16-07.56.06:461][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-07.56.06:461][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-07.56.06:461][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-07.56.06:461][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-07.56.06:462][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-07.56.06:462][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-07.56.06:462][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.56.06:462][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-07.56.06:462][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-07.56.06:462][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-07.56.06:541][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-07.56.06:541][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-07.56.06:594][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-07.56.06:594][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-07.56.06:594][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-07.56.06:595][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-07.56.06:595][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-07.56.06:595][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-07.56.06:595][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-07.56.06:595][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-07.56.06:658][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000093C66BE2300) +[2025.06.16-07.56.06:658][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000093C66BE2580) +[2025.06.16-07.56.06:659][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000093C66BE2800) +[2025.06.16-07.56.06:659][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-07.56.06:659][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-07.56.06:659][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-07.56.06:659][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-07.56.06:660][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-07.56.06:669][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-07.56.06:671][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-07.56.06:690][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-07.56.06:690][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-07.56.06:742][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-07.56.06:742][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-07.56.06:742][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-07.56.06:742][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-07.56.06:742][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-07.56.06:742][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-07.56.06:742][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-07.56.06:745][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-07.56.06:749][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-07.56.06:788][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-07.56.06:820][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-07.56.06:820][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-07.56.06:851][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-07.56.06:851][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-07.56.06:851][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-07.56.06:851][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-07.56.06:881][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-07.56.06:881][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-07.56.06:881][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-07.56.06:909][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-07.56.06:909][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-07.56.06:909][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-07.56.06:909][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-07.56.06:942][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-07.56.06:942][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-07.56.06:978][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-07.56.06:978][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-07.56.06:978][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-07.56.06:978][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-07.56.06:978][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-07.56.07:111][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-07.56.07:122][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-07.56.07:123][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-07.56.07:124][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-07.56.07:125][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-07.56.07:125][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-07.56.07:129][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-07.56.07:130][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-07.56.07:130][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-07.56.07:130][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-07.56.07:130][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-07.56.07:193][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-07.56.07:194][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-07.56.07:194][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-07.56.07:195][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-07.56.07:195][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-07.56.07:195][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-07.56.07:195][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-07.56.07:195][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 19352 --child-id Zen_19352_Startup' +[2025.06.16-07.56.07:446][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-07.56.07:446][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.251 seconds +[2025.06.16-07.56.07:447][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-07.56.07:454][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-07.56.07:454][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=1459.71MBs, RandomWriteSpeed=175.96MBs. Assigned SpeedClass 'Local' +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-07.56.07:455][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-07.56.07:456][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/19352/). +[2025.06.16-07.56.07:456][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/28FF9CDD4E781115F4A6CDA8BDDEE2E3/'. +[2025.06.16-07.56.07:456][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-07.56.07:456][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-07.56.07:457][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-07.56.07:457][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-07.56.07:944][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-07.56.08:460][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-07.56.08:460][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-07.56.08:461][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-07.56.08:463][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-07.56.08:464][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-07.56.08:464][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-07.56.08:464][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-07.56.08:464][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-07.56.08:494][ 0]LogAssetRegistry: FAssetRegistry took 0.0040 seconds to start up +[2025.06.16-07.56.08:496][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-07.56.08:499][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-07.56.08:647][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-07.56.08:648][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-07.56.08:648][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-07.56.08:648][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-07.56.08:667][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-07.56.08:667][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-07.56.08:690][ 0]LogDeviceProfileManager: Active device profile: [0000093C83CE7600][0000093C68DDA000 66] WindowsEditor +[2025.06.16-07.56.08:690][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-07.56.08:691][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-07.56.08:702][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-07.56.08:703][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-07.56.08:746][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:747][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-07.56.08:747][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:747][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:747][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-07.56.08:747][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:748][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:749][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-07.56.08:749][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:749][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:749][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-07.56.08:749][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:750][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:751][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:751][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-07.56.08:751][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.56.08:751][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:751][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-07.56.08:753][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.56.08:753][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:753][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:753][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-07.56.08:753][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:754][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:754][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-07.56.08:754][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:755][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:756][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-07.56.08:757][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-07.56.08:757][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:757][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-07.56.08:758][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:758][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:758][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-07.56.08:758][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.56.08:759][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-07.56.08:759][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.56.08:759][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:759][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-07.56.08:759][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.56.08:760][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-07.56.08:760][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:760][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.56.08:760][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-07.56.08:760][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.56.08:981][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-07.56.08:981][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-07.56.08:982][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-07.56.08:982][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-07.56.08:982][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-07.56.09:255][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.52ms +[2025.06.16-07.56.09:276][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-07.56.09:285][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.56.09:287][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.56.09:493][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-07.56.09:493][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-07.56.09:551][ 0]LogSlate: Border +[2025.06.16-07.56.09:551][ 0]LogSlate: BreadcrumbButton +[2025.06.16-07.56.09:551][ 0]LogSlate: Brushes.Title +[2025.06.16-07.56.09:551][ 0]LogSlate: Default +[2025.06.16-07.56.09:551][ 0]LogSlate: Icons.Save +[2025.06.16-07.56.09:551][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-07.56.09:552][ 0]LogSlate: ListView +[2025.06.16-07.56.09:552][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-07.56.09:552][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-07.56.09:552][ 0]LogSlate: TableView.DarkRow +[2025.06.16-07.56.09:552][ 0]LogSlate: TableView.Row +[2025.06.16-07.56.09:552][ 0]LogSlate: TreeView +[2025.06.16-07.56.09:744][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-07.56.09:746][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 2.138 ms +[2025.06.16-07.56.09:776][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.60ms +[2025.06.16-07.56.09:834][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-07.56.09:848][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-07.56.09:848][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-07.56.09:848][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-07.56.09:849][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-07.56.10:018][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.56.10:831][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-07.56.10:831][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-07.56.10:848][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-07.56.11:048][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 93D86108C62C4967800000000000C900 | Instance: 5A899AAA4DA32E4E20DA70934A3AD55A (T-19352). +[2025.06.16-07.56.11:382][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-07.56.11:382][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-07.56.11:382][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:56240'. +[2025.06.16-07.56.11:386][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-07.56.11:405][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-07.56.11:466][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-07.56.11:466][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-07.56.11:466][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-07.56.11:466][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-07.56.12:159][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-07.56.12:504][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.56.12:543][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.56.13:032][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-07.56.13:032][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-07.56.13:185][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-07.56.13:232][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-07.56.13:232][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-07.56.13:473][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-07.56.13:474][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-07.56.13:474][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-07.56.13:475][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-07.56.13:476][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-07.56.13:476][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-07.56.13:476][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-07.56.13:476][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-07.56.13:477][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-07.56.13:477][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-07.56.13:478][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-07.56.13:478][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-07.56.13:479][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-07.56.13:479][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-07.56.13:479][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-07.56.13:480][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-07.56.13:480][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-07.56.13:481][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-07.56.13:481][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-07.56.13:482][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-07.56.13:482][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-07.56.13:484][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-07.56.13:485][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-07.56.13:485][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-07.56.13:486][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-07.56.13:486][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-07.56.13:486][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-07.56.13:488][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-07.56.13:488][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-07.56.13:489][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-07.56.13:489][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-07.56.13:490][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-07.56.13:490][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-07.56.13:491][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-07.56.13:491][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-07.56.13:833][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-07.56.13:862][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.36ms +[2025.06.16-07.56.14:065][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-07.56.14:115][ 0]LogCollectionManager: Loaded 0 collections in 0.000676 seconds +[2025.06.16-07.56.14:117][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-07.56.14:119][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-07.56.14:121][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-07.56.14:267][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-07.56.14:267][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-07.56.14:269][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-07.56.14:269][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-07.56.14:269][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-07.56.14:269][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-07.56.14:295][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-07.56.14:295][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-07.56.14:310][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T07:56:14.310Z using C +[2025.06.16-07.56.14:310][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-07.56.14:310][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-07.56.14:311][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-07.56.14:316][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-07.56.14:316][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-07.56.14:316][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-07.56.14:316][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000189 +[2025.06.16-07.56.14:316][ 0]LogFab: Display: Logging in using persist +[2025.06.16-07.56.14:352][ 0]LogUObjectArray: 52515 objects as part of root set at end of initial load. +[2025.06.16-07.56.14:352][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-07.56.14:361][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-07.56.14:361][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-07.56.14:441][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:441][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:442][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-07.56.14:451][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:467][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:470][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.56.14:471][ 0]LogEngine: Initializing Engine... +[2025.06.16-07.56.14:473][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-07.56.14:473][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-07.56.14:546][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-07.56.14:571][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-07.56.14:599][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-07.56.14:599][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-07.56.14:625][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-07.56.14:636][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-07.56.14:658][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-07.56.14:659][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-07.56.14:660][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-07.56.14:660][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-07.56.14:679][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-07.56.14:724][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-07.56.14:724][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-07.56.14:726][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-07.56.14:726][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-07.56.14:728][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-07.56.14:728][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-07.56.14:729][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-07.56.14:729][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-07.56.14:729][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-07.56.14:730][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-07.56.14:730][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-07.56.14:743][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-07.56.14:746][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-07.56.14:746][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-07.56.14:771][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-07.56.14:888][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.58ms +[2025.06.16-07.56.14:889][ 0]LocalizationService: Localization service is disabled +[2025.06.16-07.56.14:909][ 0]LogTimingProfiler: Initialize +[2025.06.16-07.56.14:909][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-07.56.14:909][ 0]LoadingProfiler: Initialize +[2025.06.16-07.56.14:909][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-07.56.14:909][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-07.56.14:909][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-07.56.14:909][ 0]LogMemoryProfiler: Initialize +[2025.06.16-07.56.14:909][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-07.56.15:189][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-07.56.15:226][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-07.56.15:928][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-07.56.15:953][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-07.56.16:018][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-07.56.16:181][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-07.56.16:182][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-07.56.16:209][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-07.56.16:209][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-07.56.16:258][ 0]LogEditorDataStorage: Initializing +[2025.06.16-07.56.16:260][ 0]LogEditorDataStorage: Initialized +[2025.06.16-07.56.16:292][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-07.56.16:295][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.56.16:295][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 12.999 +[2025.06.16-07.56.16:295][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-07.56.16:297][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-07.56.16:297][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-07.56.16:315][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-07.56.16:350][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-07.56.17:091][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.3 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-07.56.18:980][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-07.56.18:991][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.83s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-07.56.19:002][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-07.56.19:003][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.39ms +[2025.06.16-07.56.19:012][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-07.56.19:012][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-07.56.19:013][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-07.56.19:013][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-07.56.19:014][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-07.56.19:066][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-07.56.19:076][ 0]LogWorldPartition: Display: WorldPartition initialize took 62.116 ms +[2025.06.16-07.56.19:081][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-07.56.19:092][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-07.56.19:092][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-07.56.19:093][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.434ms to complete. +[2025.06.16-07.56.19:098][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 15.801 +[2025.06.16-07.56.19:242][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-07.56.19:307][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.56.19:336][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.56.19:368][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.56.19:400][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.56.19:406][ 0]LogSlate: Took 0.000188 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-07.56.19:426][ 0]LogSlate: Took 0.000259 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-07.56.19:428][ 0]LogSlate: Took 0.001439 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-07.56.19:520][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:520][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-07.56.19:521][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:521][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-07.56.19:521][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:521][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:521][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:522][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:522][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:523][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-07.56.19:523][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:523][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:524][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:524][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-07.56.19:524][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:524][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:524][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:524][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:526][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.56.19:526][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-07.56.19:630][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:631][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:631][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:631][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:632][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:632][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:633][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:633][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.56.19:732][ 0]LogSlate: Took 0.000256 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-07.56.19:762][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-07.56.19:766][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-07.56.19:766][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-07.56.19:766][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-07.56.19:809][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-07.56.19:809][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-07.56.19:810][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-07.56.19:810][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-07.56.19:810][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-07.56.19:844][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-07.56.19:844][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-07.56.19:876][ 0]LogSlate: Took 0.000236 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-07.56.20:044][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 103.43 ms. Compile time 26.90 ms, link time 76.40 ms. +[2025.06.16-07.56.20:261][ 0]LogStall: Startup... +[2025.06.16-07.56.20:263][ 0]LogStall: Startup complete. +[2025.06.16-07.56.20:286][ 0]LogLoad: (Engine Initialization) Total time: 16.99 seconds +[2025.06.16-07.56.20:416][ 0]LogAssetRegistry: AssetRegistryGather time 0.0971s: AssetDataDiscovery 0.0351s, AssetDataGather 0.0096s, StoreResults 0.0524s. Wall time 11.9260s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7500. NumUncachedFiles 4. + BackgroundTickInterruptions 0. +[2025.06.16-07.56.20:435][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-07.56.20:435][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-07.56.20:436][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-07.56.20:436][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-07.56.20:472][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-07.56.20:475][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-07.56.20:509][ 0]LogPython: registering + +[2025.06.16-07.56.20:511][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 36.833 ms +[2025.06.16-07.56.20:563][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.128044 seconds (Found 7479 uncontrolled assets) +[2025.06.16-07.56.21:850][ 10]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.150503 +[2025.06.16-07.56.21:851][ 10]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-07.56.21:851][ 10]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.533500 +[2025.06.16-07.56.23:132][ 14]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-07.56.23:799][ 16]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 9.150686 +[2025.06.16-07.56.23:800][ 16]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-07.56.23:800][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9.150686, Update Interval: 305.381622 +[2025.06.16-07.56.24:546][ 19]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.16-09.56.24 Remaining: 7200.26] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15531509.57] State: Valid +[2025.06.16-07.56.24:551][ 20]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-07.56.24:834][ 41]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-07.56.24:834][ 41]LogFab: Display: User logged in +[2025.06.16-07.56.24:834][ 41]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-07.56.25:101][ 73]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-rJr1FcF9wEaYWlPch4l05Q-77raZQmLRUuTfEFXaZH2qQ] +[2025.06.16-07.56.31:046][742]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-07.56.31:111][745]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-07.56.33:549][ 15]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-07.56.33:622][ 15]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.16-07.56.33:622][ 15]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.16-07.56.34:455][ 15]LogSlate: Took 0.000254 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-07.56.34:456][ 15]LogSlate: Took 0.000178 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-07.56.34:499][ 15]LogSlate: Took 0.000568 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-08.16.02.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-08.16.02.log new file mode 100644 index 0000000..a77cf0c --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-08.16.02.log @@ -0,0 +1,2075 @@ +Log file open, 06/16/25 15:58:12 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=3696) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.550623 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-0DB515A04B67435CB5B81DA48941C8B4 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading IOS ini files took 0.06 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.06 seconds +LogConfig: Display: Loading Mac ini files took 0.07 seconds +LogConfig: Display: Loading Android ini files took 0.07 seconds +LogConfig: Display: Loading VisionOS ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.07 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogConfig: Display: Loading Linux ini files took 0.08 seconds +LogAssetRegistry: Display: Asset registry cache read as 38.3 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin ConcertSyncCore +LogPluginManager: Mounting Engine plugin ConcertSyncClient +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.47ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.16ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-07.58.13:184][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-07.58.13:184][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-07.58.13:184][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-07.58.13:184][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-07.58.13:185][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-07.58.13:185][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-07.58.13:185][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-07.58.13:186][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-07.58.13:186][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-07.58.13:187][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-07.58.13:188][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-07.58.13:192][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-07.58.13:192][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-07.58.13:193][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-07.58.13:195][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-07.58.13:196][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-07.58.13:197][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-07.58.13:198][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-07.58.13:199][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-07.58.13:202][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-07.58.13:202][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-07.58.13:202][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-07.58.13:211][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-07.58.13:211][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-07.58.13:420][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.58.13:420][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.58.13:420][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-07.58.13:420][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.58.13:420][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.58.13:430][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-07.58.13:430][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.58.13:430][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.58.13:529][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.58.13:529][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.58.13:529][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.58.13:530][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.58.13:530][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-07.58.13:636][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-07.58.13:637][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-07.58.13:637][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-07.58.13:637][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-07.58.13:637][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-07.58.13:637][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-07.58.13:637][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-07.58.13:637][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-07.58.13:637][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-07.58.13:637][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-07.58.13:638][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-07.58.13:638][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-07.58.13:638][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-07.58.13:638][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-07.58.13:638][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-07.58.13:638][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-07.58.13:638][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-07.58.13:638][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-07.58.13:638][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-07.58.13:638][ 0]LogInit: Computer: T +[2025.06.16-07.58.13:638][ 0]LogInit: User: 99714 +[2025.06.16-07.58.13:638][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-07.58.13:638][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-07.58.13:953][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-07.58.13:953][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-07.58.13:953][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-07.58.13:954][ 0]LogMemory: Process Physical Memory: 615.99 MB used, 629.05 MB peak +[2025.06.16-07.58.13:954][ 0]LogMemory: Process Virtual Memory: 663.02 MB used, 663.02 MB peak +[2025.06.16-07.58.13:954][ 0]LogMemory: Physical Memory: 22886.38 MB used, 9622.93 MB free, 32509.30 MB total +[2025.06.16-07.58.13:954][ 0]LogMemory: Virtual Memory: 39499.89 MB used, 13489.41 MB free, 52989.30 MB total +[2025.06.16-07.58.13:954][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-07.58.13:959][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-07.58.13:975][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-07.58.13:975][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-07.58.13:976][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-07.58.13:976][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-07.58.13:978][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-07.58.14:234][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-07.58.14:234][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-07.58.14:234][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-07.58.14:234][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-07.58.14:235][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-07.58.14:251][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-07.58.14:251][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-07.58.14:357][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-07.58.14:357][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-07.58.14:357][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-07.58.14:357][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-07.58.14:357][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-07.58.14:357][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-07.58.14:358][ 0]LogWindows: Attached monitors: +[2025.06.16-07.58.14:358][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-07.58.14:358][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-07.58.14:358][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-07.58.14:358][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-07.58.14:359][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-07.58.14:359][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-07.58.14:359][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-07.58.14:359][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-07.58.14:359][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-07.58.14:359][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-07.58.14:434][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-07.58.14:434][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-07.58.14:483][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-07.58.14:483][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-07.58.14:483][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-07.58.14:484][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-07.58.14:485][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-07.58.14:485][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-07.58.14:485][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-07.58.14:545][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000008F289BC2300) +[2025.06.16-07.58.14:545][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000008F289BC2580) +[2025.06.16-07.58.14:546][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000008F289BC2800) +[2025.06.16-07.58.14:546][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-07.58.14:546][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-07.58.14:546][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-07.58.14:546][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-07.58.14:547][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-07.58.14:556][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-07.58.14:557][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-07.58.14:575][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-07.58.14:575][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-07.58.14:627][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-07.58.14:627][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-07.58.14:627][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-07.58.14:627][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-07.58.14:627][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-07.58.14:627][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-07.58.14:627][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-07.58.14:631][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-07.58.14:635][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-07.58.14:675][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-07.58.14:706][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-07.58.14:706][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-07.58.14:734][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-07.58.14:734][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-07.58.14:734][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-07.58.14:736][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-07.58.14:763][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-07.58.14:763][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-07.58.14:763][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-07.58.14:792][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-07.58.14:792][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-07.58.14:792][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-07.58.14:792][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-07.58.14:819][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-07.58.14:819][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-07.58.14:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-07.58.14:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-07.58.14:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-07.58.14:853][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-07.58.14:853][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-07.58.14:965][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-07.58.14:975][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-07.58.14:976][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-07.58.14:976][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-07.58.14:976][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-07.58.14:979][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-07.58.14:979][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-07.58.14:979][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-07.58.14:979][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-07.58.14:979][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-07.58.15:026][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-07.58.15:026][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-07.58.15:026][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-07.58.15:027][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-07.58.15:027][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-07.58.15:027][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-07.58.15:029][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-07.58.15:029][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 41508 --child-id Zen_41508_Startup' +[2025.06.16-07.58.15:223][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-07.58.15:223][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.196 seconds +[2025.06.16-07.58.15:225][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-07.58.15:231][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-07.58.15:231][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=1321.33MBs, RandomWriteSpeed=174.60MBs. Assigned SpeedClass 'Local' +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-07.58.15:232][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-07.58.15:233][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/41508/). +[2025.06.16-07.58.15:233][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/BA79FC30445CC1A746DDD59EFA8C1CBA/'. +[2025.06.16-07.58.15:233][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-07.58.15:233][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-07.58.15:234][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-07.58.15:234][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-07.58.15:426][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-07.58.16:116][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-07.58.16:117][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-07.58.16:118][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-07.58.16:118][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-07.58.16:119][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-07.58.16:120][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-07.58.16:120][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-07.58.16:120][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-07.58.16:140][ 0]LogAssetRegistry: FAssetRegistry took 0.0026 seconds to start up +[2025.06.16-07.58.16:143][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-07.58.16:146][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-07.58.16:279][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-07.58.16:280][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-07.58.16:280][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-07.58.16:280][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-07.58.16:294][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-07.58.16:294][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-07.58.16:313][ 0]LogDeviceProfileManager: Active device profile: [000008F2A74E8E00][000008F28BDCA000 66] WindowsEditor +[2025.06.16-07.58.16:313][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-07.58.16:313][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-07.58.16:318][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-07.58.16:320][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-07.58.16:346][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:348][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:348][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-07.58.16:348][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:348][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:348][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-07.58.16:349][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:349][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:349][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:349][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-07.58.16:350][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-07.58.16:351][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-07.58.16:352][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-07.58.16:353][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-07.58.16:354][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-07.58.16:528][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-07.58.16:528][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-07.58.16:528][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-07.58.16:528][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-07.58.16:528][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-07.58.16:768][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.58.16:785][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.42ms +[2025.06.16-07.58.16:795][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.58.16:796][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.58.16:936][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-07.58.16:936][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-07.58.16:976][ 0]LogSlate: Border +[2025.06.16-07.58.16:976][ 0]LogSlate: BreadcrumbButton +[2025.06.16-07.58.16:976][ 0]LogSlate: Brushes.Title +[2025.06.16-07.58.16:978][ 0]LogSlate: Default +[2025.06.16-07.58.16:978][ 0]LogSlate: Icons.Save +[2025.06.16-07.58.16:978][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-07.58.16:978][ 0]LogSlate: ListView +[2025.06.16-07.58.16:978][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-07.58.16:978][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-07.58.16:978][ 0]LogSlate: TableView.DarkRow +[2025.06.16-07.58.16:978][ 0]LogSlate: TableView.Row +[2025.06.16-07.58.16:978][ 0]LogSlate: TreeView +[2025.06.16-07.58.17:122][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-07.58.17:124][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.515 ms +[2025.06.16-07.58.17:140][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-07.58.17:156][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-07.58.17:179][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-07.58.17:179][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-07.58.17:179][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-07.58.17:181][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-07.58.17:312][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.16-07.58.17:440][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 13D96108BA9A4615800000000000E600 | Instance: F8E522844977EF845D85D6B0EF6AD8F4 (T-41508). +[2025.06.16-07.58.18:185][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-07.58.18:185][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-07.58.18:200][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-07.58.18:514][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-07.58.18:522][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-07.58.18:522][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-07.58.18:522][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:52470'. +[2025.06.16-07.58.18:528][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-07.58.18:572][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-07.58.18:572][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-07.58.18:572][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-07.58.18:572][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-07.58.19:181][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-07.58.19:523][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-07.58.19:539][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.16-07.58.19:960][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-07.58.19:960][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-07.58.20:079][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-07.58.20:117][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-07.58.20:117][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-07.58.20:336][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-07.58.20:336][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-07.58.20:337][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-07.58.20:337][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-07.58.20:339][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-07.58.20:339][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-07.58.20:339][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-07.58.20:339][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-07.58.20:340][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-07.58.20:340][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-07.58.20:340][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-07.58.20:341][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-07.58.20:341][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-07.58.20:341][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-07.58.20:342][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-07.58.20:342][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-07.58.20:342][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-07.58.20:344][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-07.58.20:344][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-07.58.20:345][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-07.58.20:345][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-07.58.20:346][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-07.58.20:346][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-07.58.20:347][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-07.58.20:347][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-07.58.20:347][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-07.58.20:348][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-07.58.20:349][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-07.58.20:349][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-07.58.20:350][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-07.58.20:350][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-07.58.20:350][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-07.58.20:352][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-07.58.20:352][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-07.58.20:352][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-07.58.20:525][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.58.20:588][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.58.20:820][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-07.58.20:845][ 0]LogCollectionManager: Loaded 0 collections in 0.000665 seconds +[2025.06.16-07.58.20:846][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-07.58.20:848][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-07.58.20:850][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-07.58.20:986][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-07.58.20:986][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-07.58.20:989][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-07.58.20:989][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-07.58.20:989][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-07.58.20:989][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-07.58.21:013][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-07.58.21:013][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-07.58.21:023][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T07:58:21.023Z using C +[2025.06.16-07.58.21:023][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-07.58.21:024][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-07.58.21:024][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-07.58.21:028][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-07.58.21:028][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-07.58.21:028][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-07.58.21:029][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000155 +[2025.06.16-07.58.21:029][ 0]LogFab: Display: Logging in using persist +[2025.06.16-07.58.21:064][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.16-07.58.21:064][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-07.58.21:073][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-07.58.21:073][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-07.58.21:143][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:143][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:143][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:143][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:143][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:144][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:144][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:144][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:144][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:144][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:145][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-07.58.21:153][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:168][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:170][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-07.58.21:171][ 0]LogEngine: Initializing Engine... +[2025.06.16-07.58.21:174][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-07.58.21:174][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-07.58.21:235][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-07.58.21:254][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-07.58.21:266][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-07.58.21:267][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-07.58.21:288][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-07.58.21:298][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-07.58.21:317][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-07.58.21:317][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-07.58.21:317][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-07.58.21:319][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-07.58.21:319][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-07.58.21:319][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-07.58.21:319][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-07.58.21:319][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-07.58.21:319][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-07.58.21:335][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-07.58.21:379][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-07.58.21:380][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-07.58.21:381][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-07.58.21:381][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-07.58.21:382][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-07.58.21:382][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-07.58.21:383][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-07.58.21:383][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-07.58.21:383][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-07.58.21:383][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-07.58.21:383][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-07.58.21:393][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-07.58.21:395][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-07.58.21:395][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-07.58.21:431][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-07.58.21:537][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.72ms +[2025.06.16-07.58.21:539][ 0]LocalizationService: Localization service is disabled +[2025.06.16-07.58.21:559][ 0]LogTimingProfiler: Initialize +[2025.06.16-07.58.21:559][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-07.58.21:559][ 0]LoadingProfiler: Initialize +[2025.06.16-07.58.21:559][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-07.58.21:559][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-07.58.21:559][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-07.58.21:559][ 0]LogMemoryProfiler: Initialize +[2025.06.16-07.58.21:559][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-07.58.21:797][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-07.58.21:828][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-07.58.22:484][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-07.58.22:508][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-07.58.22:556][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-07.58.22:556][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-07.58.22:658][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-07.58.22:800][ 0]LogEditorDataStorage: Initializing +[2025.06.16-07.58.22:801][ 0]LogEditorDataStorage: Initialized +[2025.06.16-07.58.22:829][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-07.58.22:831][ 0]SourceControl: Revision control is disabled +[2025.06.16-07.58.22:832][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 11.021 +[2025.06.16-07.58.22:832][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-07.58.22:833][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-07.58.22:833][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-07.58.22:850][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-07.58.22:863][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-07.58.22:863][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-07.58.22:879][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-07.58.23:590][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.3 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-07.58.25:466][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-07.58.25:478][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.30s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-07.58.25:489][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-07.58.25:491][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.52ms +[2025.06.16-07.58.25:500][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-07.58.25:500][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-07.58.25:501][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-07.58.25:501][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-07.58.25:501][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-07.58.25:562][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-07.58.25:572][ 0]LogWorldPartition: Display: WorldPartition initialize took 70.854 ms +[2025.06.16-07.58.25:578][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-07.58.25:588][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms +[2025.06.16-07.58.25:588][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-07.58.25:589][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.448ms to complete. +[2025.06.16-07.58.25:593][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 13.783 +[2025.06.16-07.58.25:730][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-07.58.25:794][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.58.25:824][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.58.25:854][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.58.25:885][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-07.58.25:893][ 0]LogSlate: Took 0.000238 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-07.58.25:911][ 0]LogSlate: Took 0.000254 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-07.58.25:912][ 0]LogSlate: Took 0.001183 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-07.58.25:985][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:986][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-07.58.25:986][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:986][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-07.58.25:986][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:987][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-07.58.25:987][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:987][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-07.58.25:988][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:988][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-07.58.25:988][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:988][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-07.58.25:989][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:989][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-07.58.25:989][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:989][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-07.58.25:989][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:990][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-07.58.25:990][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-07.58.25:990][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-07.58.26:098][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:098][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:099][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:099][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:099][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:100][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:100][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:102][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-07.58.26:186][ 0]LogSlate: Took 0.000238 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-07.58.26:216][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-07.58.26:220][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-07.58.26:220][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-07.58.26:220][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-07.58.26:265][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-07.58.26:265][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-07.58.26:266][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-07.58.26:266][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-07.58.26:266][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-07.58.26:301][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-07.58.26:301][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-07.58.26:333][ 0]LogSlate: Took 0.000233 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-07.58.26:512][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 117.67 ms. Compile time 23.24 ms, link time 94.31 ms. +[2025.06.16-07.58.26:634][ 0]LogStall: Startup... +[2025.06.16-07.58.26:636][ 0]LogStall: Startup complete. +[2025.06.16-07.58.26:644][ 0]LogLoad: (Engine Initialization) Total time: 14.83 seconds +[2025.06.16-07.58.26:774][ 0]LogAssetRegistry: AssetRegistryGather time 0.0872s: AssetDataDiscovery 0.0306s, AssetDataGather 0.0085s, StoreResults 0.0481s. Wall time 10.6350s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7504. NumUncachedFiles 0. + BackgroundTickInterruptions 0. +[2025.06.16-07.58.26:791][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-07.58.26:792][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-07.58.26:793][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-07.58.26:793][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-07.58.26:826][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-07.58.26:827][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-07.58.26:855][ 0]LogPython: registering + +[2025.06.16-07.58.26:857][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 30.392 ms +[2025.06.16-07.58.26:909][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.118063 seconds (Found 7479 uncontrolled assets) +[2025.06.16-07.58.28:205][ 10]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.786975 +[2025.06.16-07.58.28:206][ 10]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-07.58.28:206][ 10]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.176438 +[2025.06.16-07.58.29:482][ 14]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-07.58.30:150][ 16]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.788959 +[2025.06.16-07.58.30:152][ 16]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-07.58.30:152][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.788959, Update Interval: 323.562744 +[2025.06.16-07.58.31:149][ 19]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.16-09.58.30 Remaining: 7200.59] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15531383.57] State: Valid +[2025.06.16-07.58.31:482][ 20]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-07.58.32:483][ 23]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-07.58.32:483][ 23]LogFab: Display: User logged in +[2025.06.16-07.58.32:483][ 23]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-07.58.33:149][ 25]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-bVwvdqN-GUufqyapuA5FKA-eizK9lDmNE2Fqu0-jS3GVA] +[2025.06.16-07.58.38:708][196]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-07.58.38:756][196]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.16-07.58.38:758][196]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-07.58.39:545][196]LogSlate: Took 0.000288 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-07.58.39:546][196]LogSlate: Took 0.000218 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-07.58.39:573][196]LogSlate: Took 0.000160 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-07.58.54:058][748]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-07.58.57:482][126]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-07.58.57:542][126]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-07.58.57:542][126]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-07.58.57:542][126]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-07.58.57:571][126]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-07.58.57:572][126]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode69DDA501409B30008D7A68B37DA8D817.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-07.58.57:586][126]LogFileHelpers: InternalPromptForCheckoutAndSave took 104.411 ms +[2025.06.16-07.58.57:640][126]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-07.58.57:640][126]LogContentValidation: Enabled validators: +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-07.58.57:640][126]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-07.58.57:640][126]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-07.59.02:610][541]LogSlate: Window 'Pick Parent Class' being destroyed +[2025.06.16-07.59.07:269][882]LogSlate: Window 'Pick Parent Class for New Widget Blueprint' being destroyed +[2025.06.16-07.59.07:278][882]LogContentBrowser: Deferred new asset file creation: NewWidgetBlueprint +[2025.06.16-07.59.07:283][882]LogContentBrowser: Creating deferred item: NewWidgetBlueprint +[2025.06.16-07.59.07:293][883]LogContentBrowser: Renaming the item being created (Deferred Item: NewWidgetBlueprint). +[2025.06.16-07.59.10:790][282]LogContentBrowser: Attempting asset rename: NewWidgetBlueprint -> WBP_GameEnd +[2025.06.16-07.59.10:795][282]LogContentBrowser: End creating deferred item NewWidgetBlueprint +[2025.06.16-07.59.11:330][344]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-07.59.11:381][344]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_GameEnd] ([2] browsable assets)... +[2025.06.16-07.59.11:398][344]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_GameEnd.WBP_GameEnd] +[2025.06.16-07.59.11:398][344]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_GameEnd] +[2025.06.16-07.59.11:398][344]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_GameEnd" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_GameEnd.uasset" SILENT=true +[2025.06.16-07.59.11:400][344]LogSavePackage: Moving output files for package: /Game/UI/WBP_GameEnd +[2025.06.16-07.59.11:400][344]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_GameEndF1625A7C4D31E15B6E62648CF564186E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_GameEnd.uasset' +[2025.06.16-07.59.11:412][344]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.493 ms (total: 186.905 ms) +[2025.06.16-07.59.11:465][344]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-07.59.11:465][344]LogContentValidation: Enabled validators: +[2025.06.16-07.59.11:465][344]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-07.59.11:465][344]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-07.59.11:466][344]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-07.59.11:466][344]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-07.59.11:466][344]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-07.59.11:466][344]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-07.59.11:466][344]AssetCheck: /Game/UI/WBP_GameEnd Validating asset +[2025.06.16-07.59.11:675][368]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_GameEnd.WBP_GameEnd +[2025.06.16-07.59.11:675][368]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.16-07.59.11:681][368]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.16-07.59.11:686][368]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.16-07.59.12:050][368]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.16-07.59.14:470][621]LogSlate: Window 'WBP_GameEnd' being destroyed +[2025.06.16-07.59.39:433][471]LogSlate: Window 'Color Picker' being destroyed +[2025.06.16-07.59.46:456][286]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.00.09:550][932]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.00.09:735][933]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-08.00.09:851][933]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-08.00.17:337][716]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-08.00.24:182][463]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.00.24:668][508]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.00.24:725][508]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-08.00.24:725][508]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-08.00.24:725][508]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-08.00.24:734][508]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-08.00.24:735][508]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeC4C5DE0B4A821200B8ED6DA8B3FE8DBE.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-08.00.24:744][508]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.443 ms (total: 262.348 ms) +[2025.06.16-08.00.24:809][508]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.00.24:809][508]LogContentValidation: Enabled validators: +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.00.24:809][508]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.00.24:809][508]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-08.00.25:811][614]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.00.25:816][614]LogContentBundle: [TopDownMap(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.00.25:816][614]LogWorldPartition: Display: GenerateStreaming for 'TopDownMap' started... +[2025.06.16-08.00.25:832][614]LogWorldPartition: Display: GenerateStreaming for 'TopDownMap' took 15.636 ms +[2025.06.16-08.00.25:832][614]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.00.25:836][614]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.16-08.00.25:836][614]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.16-08.00.25:836][614]LogPlayLevel: Creating play world package: /Game/TopDown/Maps/UEDPIE_0_TopDownMap +[2025.06.16-08.00.25:840][614]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003305s) +[2025.06.16-08.00.25:840][614]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/TopDown/Maps/TopDownMap.TopDownMap to /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap (0.003468s) +[2025.06.16-08.00.25:854][614]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.00.25:856][614]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-08.00.25:857][614]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.00.25:857][614]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.00.25:857][614]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.00.25:857][614]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.00.25:858][614]LogWorldPartition: Display: WorldPartition initialize took 1.057 ms (total: 71.911 ms) +[2025.06.16-08.00.25:858][614]LogPlayLevel: PIE: World Init took: (0.002436s) +[2025.06.16-08.00.25:859][614]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.00.25:859][614]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.00.25:859][614]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.00.25:859][614]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.00.25:859][614]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.00.25:859][614]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.00.25:861][614]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.00.25:886][614]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.00.25:886][614]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.00.25:886][614]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.00.25:886][614]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.00.25:887][614]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.16-08.00.25:887][614]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.16-08.00.25:890][614]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.16-08.00.25:890][614]LogInit: FAudioDevice initialized with ID 2. +[2025.06.16-08.00.25:890][614]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.16-08.00.25:890][614]LogAudio: Display: Audio Device (ID: 2) registered with world 'TopDownMap'. +[2025.06.16-08.00.25:890][614]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-08.00.25:892][614]LogLoad: Game class is 'BP_Ready_GameMode_C' +[2025.06.16-08.00.25:893][614]LogWorld: Bringing World /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap up for play (max tick rate 0) at 2025.06.16-16.00.25 +[2025.06.16-08.00.25:893][614]LogWorld: Bringing up level for play took: 0.001037 +[2025.06.16-08.00.25:896][614]LogOnline: OSS: Created online subsystem instance for: :Context_4 +[2025.06.16-08.00.25:911][614]PIE: Server logged in +[2025.06.16-08.00.25:912][614]PIE: Play in editor total start time 0.096 seconds. +[2025.06.16-08.00.27:519][781]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.00.27:520][781]LogWorld: BeginTearingDown for /Game/TopDown/Maps/UEDPIE_0_TopDownMap +[2025.06.16-08.00.27:520][781]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.00.27:520][781]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.27:520][781]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap +[2025.06.16-08.00.27:523][781]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.00.27:526][781]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.27:541][781]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.00.27:542][781]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-08.00.27:542][781]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-08.00.27:543][781]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-08.00.27:548][781]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-08.00.27:573][782]LogPlayLevel: Display: Destroying online subsystem :Context_4 +[2025.06.16-08.00.29:463][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.00.31:123][996]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-08.00.31:134][996]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.00.31:201][996]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_GameEnd] ([2] browsable assets)... +[2025.06.16-08.00.31:202][996]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_GameEnd.WBP_GameEnd] +[2025.06.16-08.00.31:202][996]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_GameEnd] +[2025.06.16-08.00.31:202][996]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_GameEnd" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_GameEnd.uasset" SILENT=true +[2025.06.16-08.00.31:206][996]LogSavePackage: Moving output files for package: /Game/UI/WBP_GameEnd +[2025.06.16-08.00.31:206][996]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_GameEndFC5909D443879B08BF4F0FBFEC7658F6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_GameEnd.uasset' +[2025.06.16-08.00.31:265][996]LogFileHelpers: InternalPromptForCheckoutAndSave took 131.134 ms (total: 393.483 ms) +[2025.06.16-08.00.31:265][996]LogStreaming: Display: FlushAsyncLoading(537): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.00.31:281][996]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.00.31:282][996]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-08.00.31:282][996]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.00.31:282][996]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.00.31:295][996]LogWorldPartition: Display: WorldPartition initialize took 13.018 ms (total: 84.929 ms) +[2025.06.16-08.00.31:299][996]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.16-08.00.31:299][996]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-08.00.31:349][996]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.00.31:350][996]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.31:350][996]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.16-08.00.31:369][996]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.00.31:371][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-08.00.31:372][996]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.00.31:372][996]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.31:372][996]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-08.00.31:388][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.00.31:402][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-08.00.31:418][996]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.16-08.00.31:418][996]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.00.31:419][996]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-08.00.31:419][996]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.00.31:419][996]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.00.31:429][996]LogWorldPartition: Display: WorldPartition initialize took 9.491 ms (total: 94.420 ms) +[2025.06.16-08.00.31:455][996]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-08.00.31:472][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.00.31:479][996]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-08.00.31:480][996]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.473ms to complete. +[2025.06.16-08.00.31:550][996]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.00.31:550][996]LogContentValidation: Enabled validators: +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.00.31:550][996]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.00.31:550][996]AssetCheck: /Game/UI/WBP_GameEnd Validating asset +[2025.06.16-08.00.32:158][ 38]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.00.32:164][ 38]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.00.32:164][ 38]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.00.32:165][ 38]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.182 ms (total: 16.818 ms) +[2025.06.16-08.00.32:165][ 38]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.00.32:165][ 38]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.00.32:167][ 38]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002365s) +[2025.06.16-08.00.32:167][ 38]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002521s) +[2025.06.16-08.00.32:180][ 38]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-08.00.32:181][ 38]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.00.32:182][ 38]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.00.32:182][ 38]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.00.32:182][ 38]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.00.32:182][ 38]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.00.32:184][ 38]LogWorldPartition: Display: WorldPartition initialize took 1.068 ms (total: 95.489 ms) +[2025.06.16-08.00.32:184][ 38]LogPlayLevel: PIE: World Init took: (0.002457s) +[2025.06.16-08.00.32:185][ 38]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.16-08.00.32:185][ 38]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.00.32:185][ 38]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.00.32:186][ 38]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.00.32:186][ 38]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.00.32:186][ 38]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.00.32:186][ 38]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.00.32:186][ 38]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.00.32:186][ 38]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.00.32:186][ 38]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.00.32:186][ 38]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.00.32:186][ 38]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.00.32:187][ 38]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.00.32:212][ 38]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.00.32:212][ 38]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.00.32:212][ 38]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.00.32:212][ 38]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.00.32:213][ 38]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.16-08.00.32:213][ 38]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.16-08.00.32:216][ 38]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.16-08.00.32:216][ 38]LogInit: FAudioDevice initialized with ID 3. +[2025.06.16-08.00.32:216][ 38]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.16-08.00.32:216][ 38]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.16-08.00.32:216][ 38]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-08.00.32:218][ 38]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.00.32:219][ 38]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.00.32 +[2025.06.16-08.00.32:219][ 38]LogWorld: Bringing up level for play took: 0.001231 +[2025.06.16-08.00.32:222][ 38]LogOnline: OSS: Created online subsystem instance for: :Context_5 +[2025.06.16-08.00.32:224][ 38]PIE: Server logged in +[2025.06.16-08.00.32:225][ 38]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-08.00.40:152][980]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.00.48:152][940]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.00.48:152][940]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-08.00.56:148][892]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.00.56:148][892]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.00.56:148][892]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.00.56:150][892]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.56:150][892]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.00.56:152][892]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.00.56:156][892]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.00.56:174][892]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.00.56:174][892]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-08.00.56:175][892]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-08.00.56:176][892]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-08.00.56:183][892]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.00.56:212][893]LogPlayLevel: Display: Destroying online subsystem :Context_5 +[2025.06.16-08.00.58:343][140]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.01.25:646][196]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_5 +[2025.06.16-08.01.25:710][199]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_6 +[2025.06.16-08.01.33:685][123]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard +[2025.06.16-08.01.33:686][123]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_7 +[2025.06.16-08.01.33:692][123]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_8 +[2025.06.16-08.02.29:543][599]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-08.02.31:041][761]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.02.31:100][761]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.02.31:103][761]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.02.31:103][761]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.02.31:103][761]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.02.31:112][761]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.02.31:112][761]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardEF5288194B2E63FE6009E8B6A94B9182.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.02.31:121][761]LogFileHelpers: InternalPromptForCheckoutAndSave took 80.231 ms (total: 473.715 ms) +[2025.06.16-08.02.31:181][761]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.02.31:181][761]LogContentValidation: Enabled validators: +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.02.31:181][761]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.02.31:182][761]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.02.47:439][351]LogSlate: Window 'Pick Parent Class for New Widget Blueprint' being destroyed +[2025.06.16-08.02.47:450][351]LogContentBrowser: Deferred new asset file creation: NewWidgetBlueprint +[2025.06.16-08.02.47:456][351]LogContentBrowser: Creating deferred item: NewWidgetBlueprint +[2025.06.16-08.02.47:465][352]LogContentBrowser: Renaming the item being created (Deferred Item: NewWidgetBlueprint). +[2025.06.16-08.02.52:363][923]LogContentBrowser: Attempting asset rename: NewWidgetBlueprint -> WBP_SkillEffect +[2025.06.16-08.02.52:368][923]LogContentBrowser: End creating deferred item NewWidgetBlueprint +[2025.06.16-08.02.52:873][979]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect +[2025.06.16-08.02.52:873][979]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_10 +[2025.06.16-08.02.52:878][979]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_11 +[2025.06.16-08.03.25:849][810]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.03.34:498][758]LogSlate: Took 0.000828 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf' (160K) +[2025.06.16-08.03.50:556][658]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-08.03.53:390][982]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 332.361267 +[2025.06.16-08.03.53:656][ 14]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.03.53:656][ 14]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 332.618713, Update Interval: 324.881134 +[2025.06.16-08.04.06:467][459]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.04.09:503][802]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.04.09:562][802]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.04.09:563][802]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.04.09:563][802]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.04.09:563][802]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.04.09:567][802]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.04.09:567][802]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect979AA9A74B765B5737B5D88A37090CF3.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.04.09:579][802]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.959 ms (total: 549.674 ms) +[2025.06.16-08.04.09:613][802]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.04.09:613][802]LogContentValidation: Enabled validators: +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.04.09:613][802]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.04.09:613][802]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.04.18:206][640]LogSlate: Window 'Pick Parent Class for New Widget Blueprint' being destroyed +[2025.06.16-08.04.18:214][640]LogContentBrowser: Deferred new asset file creation: NewWidgetBlueprint +[2025.06.16-08.04.18:220][640]LogContentBrowser: Creating deferred item: NewWidgetBlueprint +[2025.06.16-08.04.18:232][641]LogContentBrowser: Renaming the item being created (Deferred Item: NewWidgetBlueprint). +[2025.06.16-08.04.29:726][ 1]LogContentBrowser: Attempting asset rename: NewWidgetBlueprint -> WBP_SkillEffectText +[2025.06.16-08.04.29:732][ 1]LogContentBrowser: End creating deferred item NewWidgetBlueprint +[2025.06.16-08.04.30:338][ 68]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.04.30:396][ 68]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.04.30:397][ 68]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.04.30:397][ 68]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.04.30:397][ 68]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.04.30:400][ 68]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.04.30:400][ 68]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText5CF68BA34BA71975D84A0FBBF02718E5.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.04.30:411][ 68]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.209 ms (total: 622.884 ms) +[2025.06.16-08.04.30:460][ 68]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.04.30:460][ 68]LogContentValidation: Enabled validators: +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.04.30:460][ 68]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.04.30:461][ 68]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.04.31:351][169]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText +[2025.06.16-08.04.31:352][169]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_14 +[2025.06.16-08.04.31:359][169]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_15 +[2025.06.16-08.04.42:516][433]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-08.04.43:024][472]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.04.43:073][472]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.04.43:076][472]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.04.43:077][472]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.04.43:077][472]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.04.43:079][472]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.04.43:079][472]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText5A3D029B471F8E57B42E03975B098AAC.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.04.43:087][472]LogFileHelpers: InternalPromptForCheckoutAndSave took 63.717 ms (total: 686.601 ms) +[2025.06.16-08.04.43:138][472]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.04.43:138][472]LogContentValidation: Enabled validators: +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.04.43:138][472]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.04.43:140][472]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.04.46:097][811]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.04.46:166][811]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.04.46:166][811]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.04.46:166][811]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.04.46:167][811]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.04.46:168][811]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText4F4F529F4D17E66B9196228F71A1AF2E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.04.46:177][811]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.328 ms (total: 767.930 ms) +[2025.06.16-08.04.46:240][811]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.04.46:240][811]LogContentValidation: Enabled validators: +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.04.46:240][811]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.04.46:241][811]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.05.42:631][436]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.05.43:502][511]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.05.43:562][511]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.05.43:566][511]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.05.43:566][511]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.05.43:566][511]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.05.43:568][511]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.05.43:568][511]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText7CC3323A49E878D8FF1EB19C214C92D6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.05.43:586][511]LogFileHelpers: InternalPromptForCheckoutAndSave took 83.750 ms (total: 851.681 ms) +[2025.06.16-08.05.43:638][511]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.05.43:640][511]LogContentValidation: Enabled validators: +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.05.43:640][511]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.05.43:640][511]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.05.51:686][459]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.06.09:801][580]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.16-08.06.10:441][629]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.06.10:495][629]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.06.10:497][629]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.06.10:497][629]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.06.10:497][629]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.06.10:500][629]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.06.10:500][629]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextF4D63C134D48D5864A62DA8EA02DB74A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.06.10:511][629]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.379 ms (total: 922.061 ms) +[2025.06.16-08.06.10:560][629]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.06.10:561][629]LogContentValidation: Enabled validators: +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.06.10:561][629]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.06.10:561][629]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.06.35:154][546]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.06.36:427][670]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.06.36:469][670]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.06.36:470][670]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.06.36:470][670]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.06.36:471][670]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.06.36:473][670]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.06.36:473][670]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextC9AB8F3B4B25C8C9F9299AB819245D58.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.06.36:482][670]LogFileHelpers: InternalPromptForCheckoutAndSave took 54.241 ms (total: 976.302 ms) +[2025.06.16-08.06.36:532][670]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.06.36:532][670]LogContentValidation: Enabled validators: +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.06.36:532][670]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.06.36:532][670]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.07.10:764][930]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.07.12:043][ 56]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.07.12:096][ 56]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.07.12:098][ 56]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.07.12:098][ 56]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.07.12:098][ 56]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.07.12:100][ 56]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.07.12:101][ 56]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText122C71714AB9367EA20FF295C6011DCC.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.07.12:114][ 56]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.048 ms (total: 1.04 sec) +[2025.06.16-08.07.12:162][ 56]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.07.12:162][ 56]LogContentValidation: Enabled validators: +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.07.12:162][ 56]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.07.12:162][ 56]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.07.17:254][643]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.07.17:318][643]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.07.17:318][643]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.07.17:318][643]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.07.17:320][643]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.07.17:321][643]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText163A4DFE4C1C31FEDFC5AE848F699BD6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.07.17:329][643]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.424 ms (total: 1.12 sec) +[2025.06.16-08.07.17:383][643]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.07.17:384][643]LogContentValidation: Enabled validators: +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.07.17:384][643]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.07.17:384][643]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.07.17:701][675]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.07.17:906][676]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.07.18:105][677]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.07.18:220][677]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.07.18:775][718]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.07.28:367][822]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-08.07.29:133][889]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.07.50:829][441]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.09.22:554][520]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 661.521851 +[2025.06.16-08.09.23:554][523]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.09.23:554][523]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 662.188477, Update Interval: 344.898834 +[2025.06.16-08.09.39:311][920]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.09.40:174][986]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.09.40:703][ 18]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.09.40:753][ 18]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.09.40:755][ 18]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.09.40:755][ 18]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.09.40:755][ 18]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.09.40:757][ 18]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.09.40:758][ 18]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextCD4F4E914498C19E5EC498AAE3F5B779.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.09.40:768][ 18]LogFileHelpers: InternalPromptForCheckoutAndSave took 64.259 ms (total: 1.18 sec) +[2025.06.16-08.09.40:816][ 18]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.09.40:816][ 18]LogContentValidation: Enabled validators: +[2025.06.16-08.09.40:816][ 18]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.09.40:817][ 18]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.09.40:817][ 18]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.09.40:817][ 18]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.09.40:817][ 18]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.09.40:817][ 18]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.09.40:817][ 18]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.09.43:659][347]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.09.44:219][383]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.09.44:270][383]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.09.44:272][383]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.09.44:272][383]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.09.44:272][383]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.09.44:275][383]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.09.44:275][383]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText0AD27D7A4746659B371DC8A778AAEB92.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.09.44:284][383]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.714 ms (total: 1.25 sec) +[2025.06.16-08.09.44:338][383]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.09.44:338][383]LogContentValidation: Enabled validators: +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.09.44:338][383]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.09.44:340][383]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.09.44:508][402]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.09.44:571][402]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.09.44:572][402]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.09.44:572][402]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.09.44:573][402]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.09.44:574][402]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText811EDB2D4C0B867E2CB420A259C01B8E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.09.44:584][402]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.638 ms (total: 1.32 sec) +[2025.06.16-08.09.44:636][402]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.09.44:637][402]LogContentValidation: Enabled validators: +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.09.44:637][402]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.09.44:637][402]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.10.02:231][452]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-08.10.03:407][553]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.10.03:472][553]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.10.03:473][553]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.10.03:475][553]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.10.03:475][553]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.10.03:477][553]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.10.03:477][553]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextC05C5FCD44A61F3EC6C8C49C3241EDA4.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.10.03:490][553]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.263 ms (total: 1.41 sec) +[2025.06.16-08.10.03:554][553]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.10.03:554][553]LogContentValidation: Enabled validators: +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.10.03:554][553]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.10.03:554][553]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.10.37:926][430]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.10.39:061][527]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.10.39:118][527]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.10.39:120][527]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.10.39:120][527]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.10.39:120][527]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.10.39:122][527]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.10.39:122][527]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText9105BCDE42AFDBEB20C82A8837EAF53A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.10.39:134][527]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.891 ms (total: 1.48 sec) +[2025.06.16-08.10.39:200][527]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.10.39:201][527]LogContentValidation: Enabled validators: +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.10.39:201][527]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.10.39:201][527]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.11.29:173][846]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.11.29:298][846]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.11.29:511][847]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.11.29:635][847]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-08.11.29:855][848]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.11.30:518][908]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.11.30:579][908]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-08.11.30:580][908]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-08.11.30:580][908]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-08.11.30:580][908]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-08.11.30:583][908]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-08.11.30:584][908]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextF200331F4A42B06239CDA6B6AEF540C4.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-08.11.30:593][908]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.346 ms (total: 1.55 sec) +[2025.06.16-08.11.30:641][908]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.11.30:641][908]LogContentValidation: Enabled validators: +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.11.30:642][908]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.11.30:642][908]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-08.12.13:582][730]LogSlate: Window 'Change Variable Type' being destroyed +[2025.06.16-08.12.18:313][272]LogSlate: Window 'Find in Blueprints' being destroyed +[2025.06.16-08.12.18:319][272]LogSlate: Window 'Find in Blueprints' being destroyed +[2025.06.16-08.13.08:008][203]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-08.13.08:011][203]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.037 +[2025.06.16-08.13.08:012][203]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.13.08:014][203]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.13.08:014][203]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.13.08:014][203]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffect_Auto1.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-08.13.08:018][203]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/UI/WBP_SkillEffect_Auto1 +[2025.06.16-08.13.08:018][203]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect_Auto1A2509C6243BD0037FEDF5A85D04A61C0.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffect_Auto1.uasset' +[2025.06.16-08.13.08:019][203]LogFileHelpers: Auto-saving content packages took 0.007 +[2025.06.16-08.13.25:573][256]LogHotReload: New module detected: UnrealEditor-ProjectFish-0001.dll +[2025.06.16-08.13.26:243][258]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-08.13.26:322][258]LogUObjectHash: Compacting FUObjectHashTables data took 0.57ms +[2025.06.16-08.13.26:338][258]LogClass: UPackage /Script/ProjectFish Reload. +[2025.06.16-08.13.26:338][258]LogClass: UClass SkillEffect Reload. +[2025.06.16-08.13.26:338][258]LogClass: UClass SkillEffect_Charge Reload. +[2025.06.16-08.13.26:340][258]LogClass: UClass SkillEffect_Damage Reload. +[2025.06.16-08.13.26:340][258]LogClass: UClass SkillEffect_Heal Reload. +[2025.06.16-08.13.26:340][258]LogClass: UClass SkillEffect_ModifyCD Reload. +[2025.06.16-08.13.26:340][258]LogClass: UClass SkillEffect_ModifySpeed Reload. +[2025.06.16-08.13.26:340][258]LogClass: UClass SkillEffect_SER Reload. +[2025.06.16-08.13.26:352][258]LogClass: Could not find existing class SkillEffect in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:352][258]LogClass: Function GetSkillEffectDes is new or belongs to a modified class. +[2025.06.16-08.13.26:352][258]LogClass: Could not find existing class SkillEffect_Charge in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:352][258]LogClass: Could not find existing class SkillEffect_Damage in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:352][258]LogClass: Could not find existing class SkillEffect_Heal in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:353][258]LogClass: Could not find existing class SkillEffect_ModifyCD in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:353][258]LogClass: Could not find existing class SkillEffect_ModifySpeed in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:353][258]LogClass: Could not find existing class SkillEffect_SER in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.16-08.13.26:392][258]Re-instancing SkillEffect after reload. +[2025.06.16-08.13.26:423][258]Re-instancing SkillEffect_Charge after reload. +[2025.06.16-08.13.26:448][258]Re-instancing SkillEffect_Damage after reload. +[2025.06.16-08.13.26:472][258]Re-instancing SkillEffect_Heal after reload. +[2025.06.16-08.13.26:496][258]Re-instancing SkillEffect_ModifyCD after reload. +[2025.06.16-08.13.26:520][258]Re-instancing SkillEffect_ModifySpeed after reload. +[2025.06.16-08.13.26:542][258]Re-instancing SkillEffect_SER after reload. +[2025.06.16-08.13.26:863][258]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-08.13.26:901][258]LogStreaming: Display: FlushAsyncLoading(582): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.13.26:906][258]Display: HotReload took 0.7s. +[2025.06.16-08.13.26:907][258]Display: Reload/Re-instancing Complete: 1 package changed, 7 classes changed, 7 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 6 functions remapped, 4 scriptstructs remapped +[2025.06.16-08.14.23:749][412]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\UI\WBP_SkillEffect.uasset: [Compiler] The property associated with Effect Datas could not be found in '/Game/UI/WBP_SkillEffect.WBP_SkillEffect_C' +[2025.06.16-08.14.23:834][412]LogUObjectHash: Compacting FUObjectHashTables data took 1.02ms +[2025.06.16-08.15.05:225][189]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-08.15.06:228][298]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.15.06:289][298]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.15.06:290][298]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.15.06:290][298]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.15.06:290][298]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.15.06:294][298]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.15.06:295][298]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect9BB1A9C54FE5DDC27E378A920F09875B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.15.06:305][298]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.077 ms (total: 1.63 sec) +[2025.06.16-08.15.06:356][298]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.15.06:356][298]LogContentValidation: Enabled validators: +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.15.06:356][298]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.15.06:356][298]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.15.06:806][350]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.15.06:836][350]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.15.06:836][350]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.15.06:836][350]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.15.06:839][350]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.15.06:840][350]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect59E017F24C5566B8806BB3AB3EFAF644.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.15.06:850][350]LogFileHelpers: InternalPromptForCheckoutAndSave took 44.602 ms (total: 1.68 sec) +[2025.06.16-08.15.06:905][350]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.15.06:905][350]LogContentValidation: Enabled validators: +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.15.06:905][350]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.15.06:906][350]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.15.14:477][200]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1013.452026 +[2025.06.16-08.15.14:722][225]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.15.14:722][225]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1013.687866, Update Interval: 311.215546 +[2025.06.16-08.16.01:268][460]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.16.01:868][507]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.16.01:935][507]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.16.01:937][507]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.16.01:937][507]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.16.01:937][507]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.16.01:946][507]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.16.01:947][507]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardBAE72183436F8533092D55A8997E3627.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.16.01:958][507]LogFileHelpers: InternalPromptForCheckoutAndSave took 88.763 ms (total: 1.76 sec) +[2025.06.16-08.16.02:014][507]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.16.02:014][507]LogContentValidation: Enabled validators: +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.16.02:014][507]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.16.02:015][507]AssetCheck: /Game/UI/WBP_SkillCard Validating asset diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-09.33.16.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-09.33.16.log new file mode 100644 index 0000000..537521e --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-09.33.16.log @@ -0,0 +1,4558 @@ +Log file open, 06/16/25 16:16:12 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=46552) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.565415 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-0B4C21A74540CF5AAA18BBAB1A26CCD2 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading IOS ini files took 0.06 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading VulkanPC ini files took 0.06 seconds +LogConfig: Display: Loading Android ini files took 0.06 seconds +LogConfig: Display: Loading Mac ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.07 seconds +LogConfig: Display: Loading VisionOS ini files took 0.07 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.07 seconds +LogConfig: Display: Loading Linux ini files took 0.07 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogAssetRegistry: Display: Asset registry cache read as 38.3 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.50ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.14ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-08.16.13:585][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-08.16.13:585][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-08.16.13:586][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-08.16.13:586][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-08.16.13:587][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-08.16.13:587][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-08.16.13:588][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-08.16.13:589][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-08.16.13:593][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-08.16.13:593][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-08.16.13:593][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-08.16.13:594][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-08.16.13:595][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-08.16.13:597][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-08.16.13:598][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-08.16.13:599][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-08.16.13:600][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-08.16.13:603][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-08.16.13:603][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-08.16.13:603][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-08.16.13:612][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-08.16.13:612][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-08.16.13:826][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-08.16.13:826][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-08.16.13:826][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-08.16.13:827][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-08.16.13:827][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-08.16.13:841][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-08.16.13:841][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-08.16.13:841][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-08.16.13:943][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-08.16.13:943][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-08.16.13:943][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-08.16.13:945][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-08.16.13:945][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-08.16.14:052][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-08.16.14:052][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-08.16.14:053][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-08.16.14:053][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-08.16.14:053][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-08.16.14:053][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-08.16.14:053][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-08.16.14:053][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-08.16.14:053][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-08.16.14:054][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-08.16.14:054][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-08.16.14:054][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-08.16.14:054][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-08.16.14:054][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-08.16.14:054][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-08.16.14:054][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-08.16.14:054][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-08.16.14:054][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-08.16.14:054][ 0]LogInit: Computer: T +[2025.06.16-08.16.14:054][ 0]LogInit: User: 99714 +[2025.06.16-08.16.14:054][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-08.16.14:054][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-08.16.14:373][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-08.16.14:373][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-08.16.14:373][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-08.16.14:373][ 0]LogMemory: Process Physical Memory: 616.23 MB used, 629.43 MB peak +[2025.06.16-08.16.14:373][ 0]LogMemory: Process Virtual Memory: 663.20 MB used, 663.20 MB peak +[2025.06.16-08.16.14:373][ 0]LogMemory: Physical Memory: 22378.87 MB used, 10130.43 MB free, 32509.30 MB total +[2025.06.16-08.16.14:373][ 0]LogMemory: Virtual Memory: 39366.13 MB used, 13623.17 MB free, 52989.30 MB total +[2025.06.16-08.16.14:373][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-08.16.14:380][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-08.16.14:397][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-08.16.14:397][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-08.16.14:397][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-08.16.14:397][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-08.16.14:405][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-08.16.14:661][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-08.16.14:661][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-08.16.14:661][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-08.16.14:661][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-08.16.14:661][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-08.16.14:682][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-08.16.14:682][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-08.16.14:886][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-08.16.14:886][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-08.16.14:886][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-08.16.14:886][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-08.16.14:886][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-08.16.14:886][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-08.16.14:886][ 0]LogWindows: Attached monitors: +[2025.06.16-08.16.14:886][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-08.16.14:886][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-08.16.14:886][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-08.16.14:887][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-08.16.14:887][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-08.16.14:887][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-08.16.14:887][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-08.16.14:887][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-08.16.14:887][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-08.16.14:887][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-08.16.14:968][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-08.16.14:968][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-08.16.15:025][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-08.16.15:025][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-08.16.15:025][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-08.16.15:084][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000BA6BD432300) +[2025.06.16-08.16.15:084][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000BA6BD432580) +[2025.06.16-08.16.15:085][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000BA6BD432800) +[2025.06.16-08.16.15:085][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-08.16.15:085][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-08.16.15:085][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-08.16.15:085][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-08.16.15:085][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-08.16.15:093][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-08.16.15:095][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-08.16.15:113][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-08.16.15:113][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-08.16.15:168][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-08.16.15:168][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-08.16.15:168][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-08.16.15:168][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-08.16.15:168][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-08.16.15:168][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-08.16.15:168][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-08.16.15:172][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-08.16.15:175][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-08.16.15:213][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-08.16.15:245][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-08.16.15:245][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-08.16.15:275][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-08.16.15:275][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-08.16.15:275][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-08.16.15:275][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-08.16.15:302][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-08.16.15:302][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-08.16.15:302][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-08.16.15:330][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-08.16.15:330][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-08.16.15:330][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-08.16.15:330][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-08.16.15:358][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-08.16.15:358][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-08.16.15:393][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-08.16.15:393][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-08.16.15:393][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-08.16.15:393][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-08.16.15:393][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-08.16.15:526][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-08.16.15:535][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-08.16.15:536][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-08.16.15:536][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-08.16.15:536][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-08.16.15:539][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-08.16.15:539][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-08.16.15:539][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-08.16.15:539][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-08.16.15:539][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-08.16.15:591][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-08.16.15:592][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-08.16.15:592][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-08.16.15:593][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-08.16.15:593][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-08.16.15:594][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-08.16.15:594][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-08.16.15:594][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 15688 --child-id Zen_15688_Startup' +[2025.06.16-08.16.15:830][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-08.16.15:830][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.238 seconds +[2025.06.16-08.16.15:832][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-08.16.15:840][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-08.16.15:840][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.07ms. RandomReadSpeed=324.29MBs, RandomWriteSpeed=201.24MBs. Assigned SpeedClass 'Local' +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-08.16.15:841][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-08.16.15:842][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/15688/). +[2025.06.16-08.16.15:842][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/42E14EAF4AFC65F58D14419107ACD125/'. +[2025.06.16-08.16.15:842][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-08.16.15:842][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-08.16.15:843][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-08.16.15:843][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-08.16.16:111][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-08.16.16:946][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-08.16.16:962][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-08.16.16:965][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-08.16.16:965][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-08.16.16:970][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-08.16.16:970][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-08.16.16:970][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-08.16.16:970][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-08.16.16:993][ 0]LogAssetRegistry: FAssetRegistry took 0.0025 seconds to start up +[2025.06.16-08.16.16:994][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-08.16.17:000][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-08.16.17:126][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.16.17:127][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-08.16.17:128][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-08.16.17:128][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-08.16.17:140][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-08.16.17:140][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-08.16.17:160][ 0]LogDeviceProfileManager: Active device profile: [00000BA6DAF83E00][00000BA6BF5DA000 66] WindowsEditor +[2025.06.16-08.16.17:160][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-08.16.17:161][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-08.16.17:167][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-08.16.17:167][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-08.16.17:196][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:197][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:198][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:200][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:200][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-08.16.17:200][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:201][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-08.16.17:203][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-08.16.17:204][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-08.16.17:205][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-08.16.17:205][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:205][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-08.16.17:205][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-08.16.17:205][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-08.16.17:421][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-08.16.17:421][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-08.16.17:421][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-08.16.17:421][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-08.16.17:421][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-08.16.17:666][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-08.16.17:682][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.55ms +[2025.06.16-08.16.17:692][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.16-08.16.17:693][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-08.16.17:838][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-08.16.17:838][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-08.16.17:880][ 0]LogSlate: Border +[2025.06.16-08.16.17:880][ 0]LogSlate: BreadcrumbButton +[2025.06.16-08.16.17:881][ 0]LogSlate: Brushes.Title +[2025.06.16-08.16.17:881][ 0]LogSlate: Default +[2025.06.16-08.16.17:881][ 0]LogSlate: Icons.Save +[2025.06.16-08.16.17:881][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-08.16.17:881][ 0]LogSlate: ListView +[2025.06.16-08.16.17:881][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-08.16.17:881][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-08.16.17:881][ 0]LogSlate: TableView.DarkRow +[2025.06.16-08.16.17:881][ 0]LogSlate: TableView.Row +[2025.06.16-08.16.17:881][ 0]LogSlate: TreeView +[2025.06.16-08.16.17:972][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-08.16.18:044][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-08.16.18:046][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.403 ms +[2025.06.16-08.16.18:064][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-08.16.18:104][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-08.16.18:104][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-08.16.18:105][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-08.16.18:105][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-08.16.18:205][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 4CDD610814D14C058000000000005C00 | Instance: 6CC6A1884F96EDB1EDA23899C2CE4831 (T-15688). +[2025.06.16-08.16.18:338][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-08.16.18:339][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-08.16.18:339][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:62428'. +[2025.06.16-08.16.18:343][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-08.16.18:353][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-08.16.18:422][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-08.16.19:061][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-08.16.19:061][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-08.16.19:062][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-08.16.19:062][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-08.16.19:255][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-08.16.19:255][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-08.16.19:268][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-08.16.20:145][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-08.16.20:521][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.16-08.16.20:548][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-08.16.21:179][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-08.16.21:179][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-08.16.21:286][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-08.16.21:315][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-08.16.21:352][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-08.16.21:352][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-08.16.21:575][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-08.16.21:576][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-08.16.21:577][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-08.16.21:577][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-08.16.21:578][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-08.16.21:578][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-08.16.21:580][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-08.16.21:580][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-08.16.21:581][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-08.16.21:581][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-08.16.21:582][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-08.16.21:583][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-08.16.21:583][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-08.16.21:584][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-08.16.21:584][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-08.16.21:585][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-08.16.21:586][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-08.16.21:586][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-08.16.21:587][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-08.16.21:587][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-08.16.21:588][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-08.16.21:589][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-08.16.21:590][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-08.16.21:590][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-08.16.21:591][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-08.16.21:591][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-08.16.21:592][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-08.16.21:593][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-08.16.21:594][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-08.16.21:594][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-08.16.21:596][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-08.16.21:596][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-08.16.21:597][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-08.16.21:597][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-08.16.21:598][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-08.16.21:765][ 0]SourceControl: Revision control is disabled +[2025.06.16-08.16.21:814][ 0]SourceControl: Revision control is disabled +[2025.06.16-08.16.21:921][ 0]LogCollectionManager: Loaded 0 collections in 0.000640 seconds +[2025.06.16-08.16.21:922][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-08.16.21:924][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-08.16.21:926][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-08.16.22:041][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-08.16.22:041][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-08.16.22:043][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-08.16.22:043][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-08.16.22:043][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-08.16.22:043][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-08.16.22:066][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-08.16.22:067][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-08.16.22:077][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T08:16:22.077Z using C +[2025.06.16-08.16.22:077][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-08.16.22:077][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-08.16.22:077][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-08.16.22:081][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-08.16.22:081][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-08.16.22:081][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-08.16.22:082][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000163 +[2025.06.16-08.16.22:082][ 0]LogFab: Display: Logging in using persist +[2025.06.16-08.16.22:112][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.16-08.16.22:113][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-08.16.22:122][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-08.16.22:122][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-08.16.22:192][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:193][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:194][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:194][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-08.16.22:204][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:220][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-08.16.22:221][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:222][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-08.16.22:224][ 0]LogEngine: Initializing Engine... +[2025.06.16-08.16.22:225][ 0]LogAssetEditorSubsystem: Warning: Something went wrong while loading recent assets! Num Recent Assets = 20, Num Recent Asset Editors = 19 +[2025.06.16-08.16.22:226][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-08.16.22:226][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-08.16.22:288][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-08.16.22:306][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-08.16.22:319][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-08.16.22:319][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-08.16.22:344][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-08.16.22:354][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-08.16.22:371][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-08.16.22:371][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-08.16.22:372][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-08.16.22:372][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-08.16.22:372][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.16.22:372][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.16.22:372][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.16.22:372][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.16.22:372][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.16.22:373][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.16.22:373][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.16.22:373][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.16.22:373][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.16.22:373][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.16.22:373][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.16.22:387][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.16.22:427][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.16.22:427][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.16.22:429][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.16.22:429][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.16.22:430][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-08.16.22:430][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-08.16.22:431][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-08.16.22:431][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-08.16.22:431][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-08.16.22:431][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-08.16.22:431][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-08.16.22:442][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-08.16.22:444][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-08.16.22:444][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-08.16.22:464][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-08.16.22:581][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.50ms +[2025.06.16-08.16.22:583][ 0]LocalizationService: Localization service is disabled +[2025.06.16-08.16.22:606][ 0]LogTimingProfiler: Initialize +[2025.06.16-08.16.22:606][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-08.16.22:606][ 0]LoadingProfiler: Initialize +[2025.06.16-08.16.22:606][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-08.16.22:606][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-08.16.22:606][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-08.16.22:607][ 0]LogMemoryProfiler: Initialize +[2025.06.16-08.16.22:607][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-08.16.22:838][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-08.16.22:861][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-08.16.23:572][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-08.16.23:596][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-08.16.23:653][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-08.16.23:653][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-08.16.23:669][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-08.16.23:669][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-08.16.23:729][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-08.16.23:896][ 0]LogEditorDataStorage: Initializing +[2025.06.16-08.16.23:897][ 0]LogEditorDataStorage: Initialized +[2025.06.16-08.16.23:927][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-08.16.23:928][ 0]SourceControl: Revision control is disabled +[2025.06.16-08.16.23:929][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 11.795 +[2025.06.16-08.16.23:929][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-08.16.23:932][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-08.16.23:932][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.16.23:932][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.23:948][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-08.16.24:644][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.3 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-08.16.26:384][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-08.16.26:397][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.25s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-08.16.26:409][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.16.26:411][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms +[2025.06.16-08.16.26:418][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-08.16.26:418][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-08.16.26:420][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-08.16.26:421][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.16.26:421][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.16.26:471][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-08.16.26:498][ 0]LogWorldPartition: Display: WorldPartition initialize took 78.347 ms +[2025.06.16-08.16.26:508][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-08.16.26:517][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms +[2025.06.16-08.16.26:517][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-08.16.26:518][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.448ms to complete. +[2025.06.16-08.16.26:523][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 14.390 +[2025.06.16-08.16.26:672][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-08.16.26:721][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.26:751][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.26:782][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.26:812][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.26:820][ 0]LogSlate: Took 0.000705 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-08.16.26:838][ 0]LogSlate: Took 0.000713 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-08.16.26:842][ 0]LogSlate: Took 0.003554 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-08.16.26:915][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:915][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-08.16.26:916][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:917][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-08.16.26:919][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:919][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-08.16.26:920][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:921][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-08.16.26:922][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:923][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-08.16.26:924][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:924][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-08.16.26:925][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:925][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-08.16.26:926][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:927][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-08.16.26:927][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:928][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-08.16.26:928][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-08.16.26:929][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-08.16.27:073][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:073][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:073][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:073][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:075][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:075][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:075][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:075][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-08.16.27:161][ 0]LogSlate: Took 0.000574 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-08.16.27:190][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-08.16.27:194][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-08.16.27:195][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-08.16.27:195][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-08.16.27:237][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-08.16.27:237][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-08.16.27:238][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-08.16.27:238][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-08.16.27:238][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-08.16.27:271][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-08.16.27:271][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-08.16.27:304][ 0]LogSlate: Took 0.000651 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-08.16.27:469][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 102.57 ms. Compile time 25.81 ms, link time 76.58 ms. +[2025.06.16-08.16.27:615][ 0]LogStall: Startup... +[2025.06.16-08.16.27:617][ 0]LogStall: Startup complete. +[2025.06.16-08.16.27:640][ 0]LogLoad: (Engine Initialization) Total time: 15.51 seconds +[2025.06.16-08.16.27:770][ 0]LogAssetRegistry: AssetRegistryGather time 0.0987s: AssetDataDiscovery 0.0504s, AssetDataGather 0.0088s, StoreResults 0.0395s. Wall time 10.7780s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7502. NumUncachedFiles 5. + BackgroundTickInterruptions 0. +[2025.06.16-08.16.27:788][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-08.16.27:789][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-08.16.27:791][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-08.16.27:791][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-08.16.27:823][ 0]LogAutomationController: Ignoring very large delta of 16806715.16 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.16.27:823][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.27:825][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-08.16.27:871][ 0]LogPython: registering + +[2025.06.16-08.16.27:880][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 54.333 ms +[2025.06.16-08.16.27:981][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.193239 seconds (Found 7482 uncontrolled assets) +[2025.06.16-08.16.29:225][ 10]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.735380 +[2025.06.16-08.16.29:226][ 10]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-08.16.29:227][ 10]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.143313 +[2025.06.16-08.16.29:834][ 14]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-08.16.30:120][ 37]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 7.986678 +[2025.06.16-08.16.30:121][ 37]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-08.16.30:121][ 37]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7.986678, Update Interval: 335.919067 +[2025.06.16-08.16.30:405][ 70]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.16-10.16.30 Remaining: 7200.25] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15530303.57] State: Valid +[2025.06.16-08.16.30:413][ 71]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-08.16.30:728][101]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-08.16.30:728][101]LogFab: Display: User logged in +[2025.06.16-08.16.30:728][101]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-08.16.30:969][130]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-6Ag9K7nKiUaN7zu0SQpbSQ-fKAOp-3ZAkWsqZYIMYfe5g] +[2025.06.16-08.16.33:158][374]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-08.16.33:159][374]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.16.33:229][374]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.16.33:229][374]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-08.16.33:230][374]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.16.33:230][374]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.16.33:296][374]LogWorldPartition: Display: WorldPartition initialize took 65.520 ms (total: 143.867 ms) +[2025.06.16-08.16.33:307][374]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.16-08.16.33:307][374]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-08.16.33:339][374]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.16.33:339][374]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.33:339][374]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.16-08.16.33:356][374]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.16.33:358][374]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms +[2025.06.16-08.16.33:359][374]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.16.33:359][374]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.33:359][374]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-08.16.33:369][374]LogUObjectHash: Compacting FUObjectHashTables data took 0.37ms +[2025.06.16-08.16.33:378][374]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-08.16.33:391][374]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.16-08.16.33:391][374]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.16.33:393][374]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-08.16.33:393][374]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.16.33:393][374]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.16.33:403][374]LogWorldPartition: Display: WorldPartition initialize took 10.517 ms (total: 154.384 ms) +[2025.06.16-08.16.33:430][374]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-08.16.33:442][374]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms +[2025.06.16-08.16.33:449][374]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-08.16.33:450][374]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.502ms to complete. +[2025.06.16-08.16.41:070][254]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard +[2025.06.16-08.16.41:070][254]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-08.16.41:076][254]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-08.16.41:081][254]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.16-08.16.41:096][254]LogStreaming: Display: FlushAsyncLoading(407): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.16.41:827][254]LogSlate: Took 0.000943 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-08.16.41:831][254]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.16-08.16.41:832][254]LogSlate: Took 0.000618 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-08.16.44:283][523]LogSlate: Took 0.000633 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-08.16.48:025][930]LogUObjectHash: Compacting FUObjectHashTables data took 0.68ms +[2025.06.16-08.16.48:597][976]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.16.48:654][976]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.16.48:657][976]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.16.48:657][976]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.16.48:657][976]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.16.48:668][976]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.16.48:668][976]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard36BE2B8E4C00F6EA0CECCCA5A499F04E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.16.48:678][976]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.790 ms +[2025.06.16-08.16.48:720][976]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.16.48:720][976]LogContentValidation: Enabled validators: +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.16.48:720][976]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.16.48:721][976]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.16.49:695][ 81]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.16.49:701][ 81]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.16.49:701][ 81]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.16.49:702][ 81]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.232 ms +[2025.06.16-08.16.49:703][ 81]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.16.49:707][ 81]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.16-08.16.49:707][ 81]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.16-08.16.49:707][ 81]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.16.49:711][ 81]LogPlayLevel: PIE: StaticDuplicateObject took: (0.004130s) +[2025.06.16-08.16.49:711][ 81]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.004375s) +[2025.06.16-08.16.49:724][ 81]LogUObjectHash: Compacting FUObjectHashTables data took 1.12ms +[2025.06.16-08.16.49:726][ 81]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.16.49:727][ 81]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.16.49:727][ 81]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.16.49:727][ 81]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.16.49:727][ 81]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.16.49:729][ 81]LogWorldPartition: Display: WorldPartition initialize took 1.252 ms (total: 155.636 ms) +[2025.06.16-08.16.49:729][ 81]LogPlayLevel: PIE: World Init took: (0.002882s) +[2025.06.16-08.16.49:730][ 81]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.16.49:730][ 81]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.16.49:730][ 81]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.16.49:730][ 81]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.16.49:730][ 81]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.16.49:730][ 81]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.16.49:732][ 81]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.16.49:757][ 81]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.16.49:757][ 81]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.16.49:757][ 81]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.16.49:757][ 81]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.16.49:758][ 81]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.16-08.16.49:758][ 81]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.16-08.16.49:760][ 81]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.16-08.16.49:760][ 81]LogInit: FAudioDevice initialized with ID 2. +[2025.06.16-08.16.49:760][ 81]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.16-08.16.49:760][ 81]LogAudio: Display: Audio Device (ID: 2) registered with world 'Dabaza'. +[2025.06.16-08.16.49:760][ 81]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-08.16.49:763][ 81]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.16.49:764][ 81]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.16.49 +[2025.06.16-08.16.49:764][ 81]LogWorld: Bringing up level for play took: 0.001204 +[2025.06.16-08.16.49:767][ 81]LogOnline: OSS: Created online subsystem instance for: :Context_3 +[2025.06.16-08.16.49:770][ 81]PIE: Server logged in +[2025.06.16-08.16.49:771][ 81]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-08.16.56:359][847]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.56:359][847]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.16.56:359][847]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.16.56:359][847]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.56:359][847]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.16.56:362][847]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.16.56:366][847]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.16.56:382][847]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.16.56:382][847]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-08.16.56:382][847]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-08.16.56:384][847]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-08.16.56:389][847]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.16.56:418][848]LogPlayLevel: Display: Destroying online subsystem :Context_3 +[2025.06.16-08.16.59:978][257]LogSlate: Took 0.000162 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-08.16.59:986][258]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.16-08.17.00:068][260]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.16-08.17.00:083][261]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_5 +[2025.06.16-08.17.04:653][790]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.16-08.17.04:653][790]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_6 +[2025.06.16-08.17.04:689][790]LogStreaming: Display: FlushAsyncLoading(579): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.17.09:323][272]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_TopCameraPawn.BP_TopCameraPawn +[2025.06.16-08.17.09:325][272]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_7 +[2025.06.16-08.17.32:267][790]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.17.32:801][841]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.17.32:861][841]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_TopCameraPawn] ([2] browsable assets)... +[2025.06.16-08.17.32:862][841]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_TopCameraPawn] +[2025.06.16-08.17.32:862][841]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_TopCameraPawn" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset" SILENT=true +[2025.06.16-08.17.32:865][841]LogSavePackage: Moving output files for package: /Game/Characters/BP_TopCameraPawn +[2025.06.16-08.17.32:866][841]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_TopCameraPawnF29BF0164E881B7D240F5AB8CBB25759.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset' +[2025.06.16-08.17.32:874][841]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.093 ms (total: 153.883 ms) +[2025.06.16-08.17.32:921][841]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.17.32:923][841]LogContentValidation: Enabled validators: +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.17.32:923][841]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.17.32:923][841]AssetCheck: /Game/Characters/BP_TopCameraPawn Validating asset +[2025.06.16-08.17.33:875][944]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.17.33:880][944]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.17.33:880][944]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.17.33:881][944]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.370 ms (total: 2.602 ms) +[2025.06.16-08.17.33:881][944]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.17.33:918][944]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.17.33:922][944]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002978s) +[2025.06.16-08.17.33:922][944]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003330s) +[2025.06.16-08.17.33:938][944]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-08.17.33:939][944]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.17.33:940][944]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.17.33:940][944]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.17.33:940][944]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.17.33:940][944]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.17.33:942][944]LogWorldPartition: Display: WorldPartition initialize took 1.169 ms (total: 156.806 ms) +[2025.06.16-08.17.33:942][944]LogPlayLevel: PIE: World Init took: (0.002533s) +[2025.06.16-08.17.33:942][944]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.17.33:943][944]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.17.33:943][944]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.17.33:943][944]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.17.33:943][944]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.17.33:943][944]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.17.33:946][944]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.17.33:970][944]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.17.33:970][944]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.17.33:970][944]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.17.33:970][944]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.17.33:970][944]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.16-08.17.33:970][944]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.16-08.17.33:973][944]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.16-08.17.33:973][944]LogInit: FAudioDevice initialized with ID 3. +[2025.06.16-08.17.33:973][944]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.16-08.17.33:973][944]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.16-08.17.33:973][944]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-08.17.33:975][944]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.17.33:977][944]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.17.33 +[2025.06.16-08.17.33:977][944]LogWorld: Bringing up level for play took: 0.001124 +[2025.06.16-08.17.33:979][944]LogOnline: OSS: Created online subsystem instance for: :Context_9 +[2025.06.16-08.17.33:995][944]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.17.33:995][944]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.17.33:997][944]PIE: Server logged in +[2025.06.16-08.17.33:998][944]PIE: Play in editor total start time 0.117 seconds. +[2025.06.16-08.17.35:959][166]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.17.35:959][166]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.17.35:959][166]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.17.35:959][166]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.17.35:959][166]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.17.35:962][166]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.17.35:966][166]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.17.35:980][166]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.17.35:980][166]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-08.17.35:981][166]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-08.17.35:982][166]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-08.17.35:989][166]LogUObjectHash: Compacting FUObjectHashTables data took 1.09ms +[2025.06.16-08.17.36:020][167]LogPlayLevel: Display: Destroying online subsystem :Context_9 +[2025.06.16-08.17.48:290][542]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-08.17.48:754][593]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.17.48:806][593]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_TopCameraPawn] ([2] browsable assets)... +[2025.06.16-08.17.48:806][593]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_TopCameraPawn] +[2025.06.16-08.17.48:806][593]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_TopCameraPawn" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset" SILENT=true +[2025.06.16-08.17.48:809][593]LogSavePackage: Moving output files for package: /Game/Characters/BP_TopCameraPawn +[2025.06.16-08.17.48:810][593]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_TopCameraPawnA3830EB240C13E8D0B0C86A8D3637071.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset' +[2025.06.16-08.17.48:819][593]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.089 ms (total: 218.973 ms) +[2025.06.16-08.17.48:870][593]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.17.48:870][593]LogContentValidation: Enabled validators: +[2025.06.16-08.17.48:870][593]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.17.48:871][593]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.17.48:871][593]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.17.48:871][593]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.17.48:871][593]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.17.48:871][593]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.17.48:871][593]AssetCheck: /Game/Characters/BP_TopCameraPawn Validating asset +[2025.06.16-08.17.49:787][694]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.17.49:792][694]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.17.49:792][694]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.17.49:793][694]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.268 ms (total: 3.871 ms) +[2025.06.16-08.17.49:793][694]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.17.49:838][694]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.17.49:841][694]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003045s) +[2025.06.16-08.17.49:841][694]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003431s) +[2025.06.16-08.17.49:862][694]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-08.17.49:863][694]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.17.49:864][694]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.17.49:864][694]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.17.49:864][694]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.17.49:864][694]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.17.49:866][694]LogWorldPartition: Display: WorldPartition initialize took 1.089 ms (total: 157.896 ms) +[2025.06.16-08.17.49:866][694]LogPlayLevel: PIE: World Init took: (0.002468s) +[2025.06.16-08.17.49:867][694]LogAudio: Display: Creating Audio Device: Id: 4, Scope: Unique, Realtime: True +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.17.49:867][694]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.17.49:867][694]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.17.49:867][694]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.17.49:867][694]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.17.49:867][694]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.17.49:869][694]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.17.49:894][694]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.17.49:894][694]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.17.49:894][694]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.17.49:895][694]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.17.49:895][694]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=4 +[2025.06.16-08.17.49:895][694]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=4 +[2025.06.16-08.17.49:897][694]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=4 +[2025.06.16-08.17.49:897][694]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=4 +[2025.06.16-08.17.49:897][694]LogInit: FAudioDevice initialized with ID 4. +[2025.06.16-08.17.49:897][694]LogAudio: Display: Audio Device (ID: 4) registered with world 'Dabaza'. +[2025.06.16-08.17.49:897][694]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-08.17.49:899][694]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.17.49:900][694]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.17.49 +[2025.06.16-08.17.49:900][694]LogWorld: Bringing up level for play took: 0.001127 +[2025.06.16-08.17.49:904][694]LogOnline: OSS: Created online subsystem instance for: :Context_10 +[2025.06.16-08.17.49:905][694]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.17.49:905][694]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.17.49:905][694]PIE: Server logged in +[2025.06.16-08.17.49:906][694]PIE: Play in editor total start time 0.114 seconds. +[2025.06.16-08.17.52:538][993]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.17.52:538][993]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.17.52:538][993]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.17.52:539][993]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.17.52:539][993]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.17.52:542][993]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.17.52:545][993]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.17.52:561][993]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.17.52:562][993]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-08.17.52:562][993]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-08.17.52:564][993]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-08.17.52:569][993]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.17.52:605][995]LogPlayLevel: Display: Destroying online subsystem :Context_10 +[2025.06.16-08.18.02:482][108]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.18.02:487][108]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.18.02:487][108]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.18.02:488][108]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.482 ms (total: 5.353 ms) +[2025.06.16-08.18.02:489][108]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.18.02:489][108]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.18.02:491][108]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002154s) +[2025.06.16-08.18.02:491][108]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002321s) +[2025.06.16-08.18.02:503][108]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.18.02:504][108]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.18.02:505][108]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.18.02:505][108]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.18.02:506][108]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.18.02:506][108]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.18.02:506][108]LogWorldPartition: Display: WorldPartition initialize took 999 us (total: 158.895 ms) +[2025.06.16-08.18.02:506][108]LogPlayLevel: PIE: World Init took: (0.002397s) +[2025.06.16-08.18.02:507][108]LogAudio: Display: Creating Audio Device: Id: 5, Scope: Unique, Realtime: True +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.18.02:507][108]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.18.02:507][108]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.18.02:507][108]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.18.02:507][108]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.18.02:507][108]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.18.02:510][108]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.18.02:534][108]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.18.02:535][108]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.18.02:535][108]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.18.02:535][108]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.18.02:535][108]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=5 +[2025.06.16-08.18.02:535][108]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=5 +[2025.06.16-08.18.02:538][108]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=5 +[2025.06.16-08.18.02:538][108]LogInit: FAudioDevice initialized with ID 5. +[2025.06.16-08.18.02:538][108]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=5 +[2025.06.16-08.18.02:538][108]LogAudio: Display: Audio Device (ID: 5) registered with world 'Dabaza'. +[2025.06.16-08.18.02:538][108]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-08.18.02:540][108]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.18.02:541][108]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.18.02 +[2025.06.16-08.18.02:541][108]LogWorld: Bringing up level for play took: 0.001129 +[2025.06.16-08.18.02:543][108]LogOnline: OSS: Created online subsystem instance for: :Context_11 +[2025.06.16-08.18.02:545][108]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.18.02:545][108]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.18.02:545][108]PIE: Server logged in +[2025.06.16-08.18.02:546][108]PIE: Play in editor total start time 0.06 seconds. +[2025.06.16-08.18.03:196][177]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_Event', from offset 0 +[2025.06.16-08.18.03:196][177]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + +[2025.06.16-08.18.06:683][177]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.06:684][177]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.07:768][177]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.18.07:768][177]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.18.07:768][177]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.18.07:768][177]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.18.07:768][177]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.18.07:772][177]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.18.07:775][177]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.18.07:789][177]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.18.07:789][177]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-08.18.07:790][177]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-08.18.07:791][177]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-08.18.07:796][177]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.18.07:847][177]LogAutomationController: Ignoring very large delta of 4.67 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.18.07:848][178]LogPlayLevel: Display: Destroying online subsystem :Context_11 +[2025.06.16-08.18.13:088][762]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.13:088][762]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.17:925][324]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-08.18.18:623][403]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.18:623][403]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.18.26:238][246]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-08.18.26:661][287]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.18.26:719][287]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.18.26:721][287]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.18.26:722][287]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.18.26:722][287]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.18.26:731][287]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.18.26:732][287]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard4594B2AD42120805C8F710A737331795.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.18.26:743][287]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.028 ms (total: 301.001 ms) +[2025.06.16-08.18.26:802][287]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.18.26:802][287]LogContentValidation: Enabled validators: +[2025.06.16-08.18.26:802][287]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.18.26:803][287]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.18.26:803][287]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.18.26:803][287]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.18.26:803][287]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.18.26:803][287]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.18.26:803][287]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.18.27:856][389]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.18.27:862][389]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.18.27:862][389]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.18.27:863][389]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.264 ms (total: 6.618 ms) +[2025.06.16-08.18.27:863][389]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.18.27:898][389]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.18.27:901][389]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003353s) +[2025.06.16-08.18.27:901][389]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003666s) +[2025.06.16-08.18.27:921][389]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.18.27:923][389]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.18.27:924][389]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.18.27:924][389]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.18.27:924][389]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.18.27:924][389]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.18.27:926][389]LogWorldPartition: Display: WorldPartition initialize took 1.074 ms (total: 159.970 ms) +[2025.06.16-08.18.27:926][389]LogPlayLevel: PIE: World Init took: (0.002550s) +[2025.06.16-08.18.27:926][389]LogAudio: Display: Creating Audio Device: Id: 6, Scope: Unique, Realtime: True +[2025.06.16-08.18.27:926][389]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.18.27:926][389]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.18.27:926][389]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.18.27:926][389]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.18.27:927][389]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.18.27:927][389]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.18.27:927][389]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.18.27:927][389]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.18.27:927][389]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.18.27:927][389]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.18.27:927][389]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.18.27:929][389]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.18.27:954][389]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.18.27:954][389]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.18.27:954][389]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.18.27:954][389]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.18.27:955][389]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=6 +[2025.06.16-08.18.27:955][389]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=6 +[2025.06.16-08.18.27:956][389]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=6 +[2025.06.16-08.18.27:957][389]LogInit: FAudioDevice initialized with ID 6. +[2025.06.16-08.18.27:957][389]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=6 +[2025.06.16-08.18.27:957][389]LogAudio: Display: Audio Device (ID: 6) registered with world 'Dabaza'. +[2025.06.16-08.18.27:957][389]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-08.18.27:959][389]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.18.27:960][389]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.18.27 +[2025.06.16-08.18.27:960][389]LogWorld: Bringing up level for play took: 0.001206 +[2025.06.16-08.18.27:963][389]LogOnline: OSS: Created online subsystem instance for: :Context_12 +[2025.06.16-08.18.27:965][389]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.18.27:965][389]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.18.27:966][389]PIE: Server logged in +[2025.06.16-08.18.27:966][389]PIE: Play in editor total start time 0.105 seconds. +[2025.06.16-08.18.28:723][473]LogBlueprintUserMessages: [WBP_SkillCard_C_0] ----------enter +[2025.06.16-08.18.31:186][764]LogBlueprintUserMessages: [WBP_SkillCard_C_0] ----------enter +[2025.06.16-08.18.33:271][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_0] ----------enter +[2025.06.16-08.18.34:587][163]LogBlueprintUserMessages: [WBP_SkillCard_C_0] ----------enter +[2025.06.16-08.18.35:868][312]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.18.35:868][312]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.18.35:868][312]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.18.35:869][312]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.18.35:869][312]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.18.35:871][312]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.18.35:875][312]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.18.35:893][312]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.18.35:893][312]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-08.18.35:893][312]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-08.18.35:895][312]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-08.18.35:898][312]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.18.35:900][312]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.18.35:943][315]LogPlayLevel: Display: Destroying online subsystem :Context_12 +[2025.06.16-08.19.30:474][653]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect +[2025.06.16-08.19.30:475][653]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_9 +[2025.06.16-08.19.30:479][653]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_10 +[2025.06.16-08.19.32:835][861]LogSlate: Window 'WBP_SkillEffect' being destroyed +[2025.06.16-08.19.50:164][840]LogSlate: Took 0.014235 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf' (160K) +[2025.06.16-08.19.55:382][437]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-08.19.55:937][482]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.19.55:994][482]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.19.55:997][482]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.19.55:997][482]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.19.55:997][482]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.19.56:000][482]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.19.56:001][482]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect9D21878641BF05CFEEE2B3800679D62E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.19.56:012][482]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.592 ms (total: 375.593 ms) +[2025.06.16-08.19.56:074][482]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.19.56:074][482]LogContentValidation: Enabled validators: +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.19.56:074][482]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.19.56:075][482]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.20.21:379][436]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.20.21:867][469]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.20.21:932][469]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.20.21:934][469]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.20.21:934][469]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.20.21:934][469]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.20.21:937][469]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.20.21:939][469]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect445A7882410B0AEDC5599ABE5EAA514F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.20.21:947][469]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.079 ms (total: 456.673 ms) +[2025.06.16-08.20.21:981][469]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.20.21:981][469]LogContentValidation: Enabled validators: +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.20.21:981][469]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.20.21:982][469]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.20.22:158][489]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.20.22:217][489]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.20.22:217][489]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.20.22:217][489]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.20.22:221][489]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.20.22:221][489]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect38A60D2841900F984747B78560A7F699.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.20.22:232][489]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.878 ms (total: 530.551 ms) +[2025.06.16-08.20.22:282][489]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.20.22:282][489]LogContentValidation: Enabled validators: +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.20.22:282][489]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.20.22:283][489]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.21.23:959][423]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.21.24:469][468]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.21.24:533][468]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.21.24:534][468]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.21.24:535][468]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.21.24:535][468]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.21.24:540][468]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.21.24:540][468]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectA43D597A472F7FC2972D60B390E24246.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.21.24:551][468]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.657 ms (total: 613.209 ms) +[2025.06.16-08.21.24:615][468]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.21.24:615][468]LogContentValidation: Enabled validators: +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.21.24:615][468]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.21.24:616][468]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.21.38:838][ 95]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.21.42:884][530]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.21.43:325][563]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.21.43:387][563]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.21.43:389][563]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.21.43:390][563]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.21.43:390][563]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.21.43:399][563]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.21.43:400][563]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard8F6B9C84461D769EA8060FA8967EAEA2.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.21.43:411][563]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.606 ms (total: 699.816 ms) +[2025.06.16-08.21.43:462][563]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.21.43:462][563]LogContentValidation: Enabled validators: +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.21.43:462][563]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.21.43:464][563]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.21.44:624][692]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.21.44:630][692]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.21.44:630][692]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.21.44:631][692]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.435 ms (total: 8.053 ms) +[2025.06.16-08.21.44:631][692]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.21.44:631][692]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.21.44:634][692]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002466s) +[2025.06.16-08.21.44:634][692]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002642s) +[2025.06.16-08.21.44:648][692]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-08.21.44:652][692]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.21.44:653][692]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.21.44:653][692]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.21.44:653][692]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.21.44:653][692]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.21.44:654][692]LogWorldPartition: Display: WorldPartition initialize took 1.180 ms (total: 161.151 ms) +[2025.06.16-08.21.44:654][692]LogPlayLevel: PIE: World Init took: (0.002740s) +[2025.06.16-08.21.44:654][692]LogAudio: Display: Creating Audio Device: Id: 7, Scope: Unique, Realtime: True +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.21.44:656][692]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.21.44:656][692]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.21.44:656][692]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.21.44:656][692]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.21.44:656][692]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.21.44:658][692]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.21.44:693][692]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.21.44:693][692]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.21.44:694][692]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.21.44:694][692]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.21.44:695][692]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=7 +[2025.06.16-08.21.44:695][692]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=7 +[2025.06.16-08.21.44:696][692]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=7 +[2025.06.16-08.21.44:696][692]LogInit: FAudioDevice initialized with ID 7. +[2025.06.16-08.21.44:696][692]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=7 +[2025.06.16-08.21.44:696][692]LogAudio: Display: Audio Device (ID: 7) registered with world 'Dabaza'. +[2025.06.16-08.21.44:697][692]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-08.21.44:699][692]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.21.44:700][692]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.21.44 +[2025.06.16-08.21.44:700][692]LogWorld: Bringing up level for play took: 0.001243 +[2025.06.16-08.21.44:702][692]LogOnline: OSS: Created online subsystem instance for: :Context_15 +[2025.06.16-08.21.44:704][692]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.21.44:704][692]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.21.44:705][692]PIE: Server logged in +[2025.06.16-08.21.44:705][692]PIE: Play in editor total start time 0.076 seconds. +[2025.06.16-08.21.52:622][603]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.21.53:240][676]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 316 +[2025.06.16-08.21.53:240][676]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-08.22.02:658][676]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.22.02:658][676]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.22.02:658][676]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.22.02:659][676]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.22.02:659][676]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.22.02:661][676]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.22.02:665][676]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.22.02:679][676]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.22.02:679][676]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-08.22.02:679][676]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-08.22.02:681][676]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-08.22.02:685][676]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.22.02:686][676]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.22.02:700][676]LogAutomationController: Ignoring very large delta of 9.46 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.22.02:701][677]LogPlayLevel: Display: Destroying online subsystem :Context_15 +[2025.06.16-08.22.02:716][679]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-08.22.06:000][ 67]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 343.916962 +[2025.06.16-08.22.06:250][ 97]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.22.06:250][ 97]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 344.159760, Update Interval: 359.624634 +[2025.06.16-08.22.13:808][982]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.22.13:808][982]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.22.35:242][481]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-08.22.36:174][565]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.22.36:180][565]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.22.36:180][565]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.22.36:181][565]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.249 ms (total: 9.303 ms) +[2025.06.16-08.22.36:182][565]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.22.36:182][565]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.22.36:184][565]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002166s) +[2025.06.16-08.22.36:184][565]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002328s) +[2025.06.16-08.22.36:196][565]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.22.36:199][565]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.22.36:200][565]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.22.36:200][565]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.22.36:200][565]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.22.36:200][565]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.22.36:200][565]LogWorldPartition: Display: WorldPartition initialize took 980 us (total: 162.132 ms) +[2025.06.16-08.22.36:200][565]LogPlayLevel: PIE: World Init took: (0.002365s) +[2025.06.16-08.22.36:202][565]LogAudio: Display: Creating Audio Device: Id: 8, Scope: Unique, Realtime: True +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.22.36:202][565]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.22.36:202][565]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.22.36:202][565]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.22.36:202][565]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.22.36:202][565]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.22.36:204][565]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.22.36:229][565]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.22.36:230][565]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.22.36:230][565]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.22.36:230][565]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.22.36:230][565]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=8 +[2025.06.16-08.22.36:230][565]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=8 +[2025.06.16-08.22.36:233][565]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=8 +[2025.06.16-08.22.36:233][565]LogInit: FAudioDevice initialized with ID 8. +[2025.06.16-08.22.36:233][565]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=8 +[2025.06.16-08.22.36:233][565]LogAudio: Display: Audio Device (ID: 8) registered with world 'Dabaza'. +[2025.06.16-08.22.36:233][565]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-08.22.36:235][565]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.22.36:236][565]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.22.36 +[2025.06.16-08.22.36:236][565]LogWorld: Bringing up level for play took: 0.001159 +[2025.06.16-08.22.36:239][565]LogOnline: OSS: Created online subsystem instance for: :Context_16 +[2025.06.16-08.22.36:240][565]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.22.36:240][565]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.22.36:241][565]PIE: Server logged in +[2025.06.16-08.22.36:242][565]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-08.22.43:748][430]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 316 +[2025.06.16-08.22.43:750][430]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-08.22.49:868][430]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.22.49:868][430]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.22.49:869][430]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.22.49:869][430]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.22.49:869][430]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.22.49:872][430]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.22.49:875][430]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.22.49:890][430]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.22.49:890][430]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-08.22.49:890][430]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-08.22.49:892][430]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-08.22.49:896][430]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.22.49:897][430]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.22.49:911][430]LogAutomationController: Ignoring very large delta of 6.16 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.22.49:911][431]LogPlayLevel: Display: Destroying online subsystem :Context_16 +[2025.06.16-08.24.27:370][513]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.24.28:195][592]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.24.28:236][592]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.24.28:237][592]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.24.28:238][592]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.24.28:238][592]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.24.28:248][592]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.24.28:248][592]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardEDC22ACB4807546726A5E080F98FB631.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.24.28:259][592]LogFileHelpers: InternalPromptForCheckoutAndSave took 64.509 ms (total: 764.325 ms) +[2025.06.16-08.24.28:320][592]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.24.28:320][592]LogContentValidation: Enabled validators: +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.24.28:320][592]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.24.28:321][592]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.24.29:559][723]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.24.29:564][723]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.24.29:564][723]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.24.29:565][723]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.155 ms (total: 10.458 ms) +[2025.06.16-08.24.29:565][723]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.24.29:565][723]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.24.29:568][723]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002168s) +[2025.06.16-08.24.29:568][723]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002324s) +[2025.06.16-08.24.29:581][723]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.24.29:585][723]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.24.29:586][723]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.24.29:586][723]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.24.29:586][723]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.24.29:586][723]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.24.29:587][723]LogWorldPartition: Display: WorldPartition initialize took 1.076 ms (total: 163.208 ms) +[2025.06.16-08.24.29:587][723]LogPlayLevel: PIE: World Init took: (0.002657s) +[2025.06.16-08.24.29:588][723]LogAudio: Display: Creating Audio Device: Id: 9, Scope: Unique, Realtime: True +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.24.29:588][723]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.24.29:588][723]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.24.29:588][723]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.24.29:588][723]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.24.29:588][723]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.24.29:591][723]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.24.29:616][723]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.24.29:616][723]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.24.29:617][723]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.24.29:617][723]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.24.29:617][723]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=9 +[2025.06.16-08.24.29:617][723]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=9 +[2025.06.16-08.24.29:619][723]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=9 +[2025.06.16-08.24.29:620][723]LogInit: FAudioDevice initialized with ID 9. +[2025.06.16-08.24.29:620][723]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=9 +[2025.06.16-08.24.29:620][723]LogAudio: Display: Audio Device (ID: 9) registered with world 'Dabaza'. +[2025.06.16-08.24.29:620][723]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-08.24.29:622][723]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.24.29:623][723]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.24.29 +[2025.06.16-08.24.29:623][723]LogWorld: Bringing up level for play took: 0.001214 +[2025.06.16-08.24.29:625][723]LogOnline: OSS: Created online subsystem instance for: :Context_17 +[2025.06.16-08.24.29:627][723]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.24.29:627][723]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.24.29:627][723]PIE: Server logged in +[2025.06.16-08.24.29:629][723]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-08.24.30:160][778]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.000 Y=574.000 +[2025.06.16-08.24.30:160][778]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 316 +[2025.06.16-08.24.30:160][778]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-08.24.44:018][778]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.24.44:018][778]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.24.44:018][778]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.24.44:019][778]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.24.44:019][778]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.24.44:022][778]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.24.44:025][778]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.24.44:041][778]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.24.44:041][778]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-08.24.44:041][778]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-08.24.44:043][778]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-08.24.44:047][778]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.24.44:048][778]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.24.44:063][778]LogAutomationController: Ignoring very large delta of 13.92 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.24.44:064][779]LogPlayLevel: Display: Destroying online subsystem :Context_17 +[2025.06.16-08.24.44:079][781]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-08.25.08:045][514]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.25.08:045][514]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-08.25.09:085][626]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-08.25.09:718][687]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.25.09:771][687]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.25.09:774][687]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.25.09:774][687]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.25.09:774][687]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.25.09:784][687]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.25.09:784][687]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard744DEFA146C276706AF1138208A86491.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.25.09:795][687]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.067 ms (total: 841.393 ms) +[2025.06.16-08.25.09:850][687]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.25.09:850][687]LogContentValidation: Enabled validators: +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.25.09:850][687]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.25.09:851][687]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.25.10:751][781]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.25.10:756][781]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.25.10:756][781]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.25.10:757][781]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.295 ms (total: 11.753 ms) +[2025.06.16-08.25.10:757][781]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.25.10:758][781]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.10:760][781]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002233s) +[2025.06.16-08.25.10:760][781]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002403s) +[2025.06.16-08.25.10:772][781]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.25.10:775][781]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.25.10:776][781]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.25.10:776][781]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.25.10:776][781]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.25.10:776][781]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.25.10:777][781]LogWorldPartition: Display: WorldPartition initialize took 1.039 ms (total: 164.248 ms) +[2025.06.16-08.25.10:777][781]LogPlayLevel: PIE: World Init took: (0.002473s) +[2025.06.16-08.25.10:777][781]LogAudio: Display: Creating Audio Device: Id: 10, Scope: Unique, Realtime: True +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.25.10:779][781]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.25.10:779][781]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.25.10:779][781]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.25.10:779][781]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.25.10:779][781]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.25.10:781][781]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.25.10:806][781]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.25.10:806][781]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.25.10:806][781]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.25.10:806][781]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.25.10:806][781]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=10 +[2025.06.16-08.25.10:807][781]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=10 +[2025.06.16-08.25.10:810][781]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=10 +[2025.06.16-08.25.10:810][781]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=10 +[2025.06.16-08.25.10:810][781]LogInit: FAudioDevice initialized with ID 10. +[2025.06.16-08.25.10:811][781]LogAudio: Display: Audio Device (ID: 10) registered with world 'Dabaza'. +[2025.06.16-08.25.10:811][781]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-08.25.10:813][781]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.25.10:814][781]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.25.10 +[2025.06.16-08.25.10:814][781]LogWorld: Bringing up level for play took: 0.001137 +[2025.06.16-08.25.10:816][781]LogOnline: OSS: Created online subsystem instance for: :Context_18 +[2025.06.16-08.25.10:817][781]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.25.10:818][781]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.25.10:818][781]PIE: Server logged in +[2025.06.16-08.25.10:819][781]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-08.25.11:392][842]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=236.000 Y=575.000 +[2025.06.16-08.25.11:401][843]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=230.000 Y=577.000 +[2025.06.16-08.25.11:410][844]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.000 Y=578.000 +[2025.06.16-08.25.11:425][846]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=226.000 Y=579.000 +[2025.06.16-08.25.11:435][847]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.000 Y=581.000 +[2025.06.16-08.25.11:451][849]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=220.000 Y=582.000 +[2025.06.16-08.25.11:466][851]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=220.000 Y=582.000 +[2025.06.16-08.25.11:485][853]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=220.000 Y=583.000 +[2025.06.16-08.25.11:510][856]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=220.000 Y=583.000 +[2025.06.16-08.25.11:526][858]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.000 Y=583.000 +[2025.06.16-08.25.11:549][861]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.000 Y=583.000 +[2025.06.16-08.25.11:561][862]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=216.000 Y=584.000 +[2025.06.16-08.25.11:576][864]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=215.000 Y=584.000 +[2025.06.16-08.25.11:585][865]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=215.000 Y=585.000 +[2025.06.16-08.25.11:602][867]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:627][870]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:651][873]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:677][876]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:701][879]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:726][882]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:751][885]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:785][888]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:811][891]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:835][894]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:860][897]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:885][900]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:910][903]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:935][906]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:961][909]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.11:985][912]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:010][915]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:035][918]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:061][921]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:086][924]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:111][927]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:136][930]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:161][933]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:186][936]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:210][939]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:235][942]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:261][945]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:286][948]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:311][951]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:335][954]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:361][957]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:385][960]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:411][963]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:435][966]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:461][969]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:485][972]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:510][975]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:535][978]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:561][981]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:585][984]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:611][987]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:636][990]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:661][993]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:685][996]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:711][999]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:726][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=585.000 +[2025.06.16-08.25.12:736][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=216.000 Y=585.000 +[2025.06.16-08.25.12:743][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.000 Y=586.000 +[2025.06.16-08.25.12:759][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=223.000 Y=586.000 +[2025.06.16-08.25.12:769][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.000 Y=589.000 +[2025.06.16-08.25.13:143][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.000 Y=669.000 +[2025.06.16-08.25.14:493][213]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.000 Y=572.000 +[2025.06.16-08.25.14:510][215]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.000 Y=571.000 +[2025.06.16-08.25.14:520][216]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.000 Y=570.000 +[2025.06.16-08.25.14:534][218]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.000 Y=569.000 +[2025.06.16-08.25.14:544][219]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.000 Y=569.000 +[2025.06.16-08.25.14:560][221]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=217.000 Y=569.000 +[2025.06.16-08.25.14:570][222]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=569.000 +[2025.06.16-08.25.14:586][224]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=213.000 Y=569.000 +[2025.06.16-08.25.14:594][225]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=212.000 Y=569.000 +[2025.06.16-08.25.14:609][227]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=211.000 Y=569.000 +[2025.06.16-08.25.14:620][228]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=210.000 Y=568.000 +[2025.06.16-08.25.14:643][231]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=209.000 Y=568.000 +[2025.06.16-08.25.14:670][234]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:694][237]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:719][240]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:745][243]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:770][246]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:795][249]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:820][252]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:846][255]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:870][258]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:895][261]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:920][264]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:945][267]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:970][270]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.14:995][273]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:020][276]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:046][279]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:071][282]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:096][285]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:120][288]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:145][291]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:170][294]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:196][297]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:220][300]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:245][303]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:270][306]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:295][309]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:321][312]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:345][315]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:371][318]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:395][321]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:420][324]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:445][327]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:471][330]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:496][333]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:521][336]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:546][339]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:572][342]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:596][345]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:622][348]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:647][351]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:672][354]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:697][357]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:722][360]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:747][363]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:772][366]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:797][369]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:822][372]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:848][375]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:873][378]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:899][381]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:924][384]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:949][387]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:974][390]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.15:999][393]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:025][396]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:050][399]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:075][402]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:101][405]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:125][408]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:150][411]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:176][414]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:202][417]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:226][420]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:252][423]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:278][426]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:303][429]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:327][432]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:352][435]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:378][438]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:402][441]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:429][444]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:452][447]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:477][450]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:503][453]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:527][456]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:552][459]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:578][462]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:603][465]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:629][468]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:653][471]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:677][474]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:704][477]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:727][480]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:753][483]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:777][486]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:802][489]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:827][492]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:853][495]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:878][498]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:902][501]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:928][504]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:953][507]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.16:978][510]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:003][513]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:029][516]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:054][519]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:079][522]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:104][525]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:128][528]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:154][531]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:179][534]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:204][537]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:230][540]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:254][543]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:278][546]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:303][549]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:329][552]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:354][555]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:379][558]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:403][561]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:428][564]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:454][567]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:479][570]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:504][573]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:530][576]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:556][579]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:580][582]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:605][585]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:630][588]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:656][591]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:681][594]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:705][597]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:729][600]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:755][603]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:780][606]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:805][609]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=568.000 +[2025.06.16-08.25.17:822][611]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=569.000 +[2025.06.16-08.25.17:831][612]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=570.000 +[2025.06.16-08.25.17:847][614]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=572.000 +[2025.06.16-08.25.17:862][616]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=209.000 Y=574.000 +[2025.06.16-08.25.17:872][617]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=211.000 Y=576.000 +[2025.06.16-08.25.17:879][618]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=212.000 Y=578.000 +[2025.06.16-08.25.17:896][620]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=580.000 +[2025.06.16-08.25.17:906][621]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=585.000 +[2025.06.16-08.25.17:921][623]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.000 Y=588.000 +[2025.06.16-08.25.18:304][669]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.000 Y=626.000 +[2025.06.16-08.25.18:747][722]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.25.19:848][854]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=236.000 Y=661.000 +[2025.06.16-08.25.22:222][139]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.000 Y=719.000 +[2025.06.16-08.25.24:188][375]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=185.000 Y=719.000 +[2025.06.16-08.25.24:249][382]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=194.000 Y=688.000 +[2025.06.16-08.25.25:689][555]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.000 Y=621.000 +[2025.06.16-08.25.25:698][556]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=230.000 Y=620.000 +[2025.06.16-08.25.25:707][557]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.000 Y=619.000 +[2025.06.16-08.25.25:722][559]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=618.000 +[2025.06.16-08.25.25:732][560]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=211.000 Y=616.000 +[2025.06.16-08.25.25:738][561]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=207.000 Y=615.000 +[2025.06.16-08.25.25:748][562]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=201.000 Y=614.000 +[2025.06.16-08.25.25:757][563]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=198.000 Y=613.000 +[2025.06.16-08.25.25:772][565]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=195.000 Y=613.000 +[2025.06.16-08.25.25:782][566]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=613.000 +[2025.06.16-08.25.25:799][568]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:824][571]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:848][574]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:874][577]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:898][580]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:923][583]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:948][586]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:974][589]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.25:998][592]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:024][595]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:049][598]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:074][601]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:098][604]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:123][607]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:148][610]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:174][613]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:199][616]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:224][619]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:249][622]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:274][625]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:299][628]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:324][631]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:348][634]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:374][637]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:399][640]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:424][643]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:448][646]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:473][649]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:498][652]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:523][655]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:549][658]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:574][661]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:597][664]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=612.000 +[2025.06.16-08.25.26:622][667]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=195.000 Y=612.000 +[2025.06.16-08.25.26:632][668]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=198.000 Y=612.000 +[2025.06.16-08.25.26:647][670]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=202.000 Y=614.000 +[2025.06.16-08.25.26:657][671]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=209.000 Y=615.000 +[2025.06.16-08.25.26:672][673]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=215.000 Y=616.000 +[2025.06.16-08.25.26:682][674]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=226.000 Y=617.000 +[2025.06.16-08.25.26:748][682]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.25.26:748][682]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-08.25.28:288][861]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.28:288][861]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.28:290][861]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.25.28:290][861]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.28:290][861]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.25.28:292][861]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.25.28:296][861]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.28:315][861]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.25.28:315][861]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-08.25.28:315][861]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-08.25.28:316][861]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-08.25.28:321][861]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.28:323][861]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.25.28:369][862]LogPlayLevel: Display: Destroying online subsystem :Context_18 +[2025.06.16-08.25.29:001][933]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.25.29:006][933]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.25.29:006][933]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.25.29:007][933]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.272 ms (total: 13.026 ms) +[2025.06.16-08.25.29:007][933]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.25.29:007][933]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.29:010][933]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002139s) +[2025.06.16-08.25.29:010][933]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002299s) +[2025.06.16-08.25.29:024][933]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-08.25.29:025][933]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.25.29:026][933]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.25.29:026][933]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.25.29:026][933]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.25.29:026][933]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.25.29:027][933]LogWorldPartition: Display: WorldPartition initialize took 949 us (total: 165.198 ms) +[2025.06.16-08.25.29:027][933]LogPlayLevel: PIE: World Init took: (0.002235s) +[2025.06.16-08.25.29:027][933]LogAudio: Display: Creating Audio Device: Id: 11, Scope: Unique, Realtime: True +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.25.29:027][933]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.25.29:027][933]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.25.29:027][933]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.25.29:027][933]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.25.29:027][933]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.25.29:030][933]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.25.29:055][933]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.25.29:055][933]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.25.29:056][933]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.25.29:056][933]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.25.29:056][933]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=11 +[2025.06.16-08.25.29:056][933]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=11 +[2025.06.16-08.25.29:058][933]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=11 +[2025.06.16-08.25.29:058][933]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=11 +[2025.06.16-08.25.29:058][933]LogInit: FAudioDevice initialized with ID 11. +[2025.06.16-08.25.29:058][933]LogAudio: Display: Audio Device (ID: 11) registered with world 'Dabaza'. +[2025.06.16-08.25.29:058][933]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-08.25.29:060][933]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.25.29:061][933]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.25.29 +[2025.06.16-08.25.29:062][933]LogWorld: Bringing up level for play took: 0.001140 +[2025.06.16-08.25.29:064][933]LogOnline: OSS: Created online subsystem instance for: :Context_19 +[2025.06.16-08.25.29:066][933]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.25.29:066][933]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.25.29:067][933]PIE: Server logged in +[2025.06.16-08.25.29:067][933]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-08.25.29:369][961]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.000 Y=573.000 +[2025.06.16-08.25.29:378][962]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=233.000 Y=579.000 +[2025.06.16-08.25.29:395][964]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.000 Y=583.000 +[2025.06.16-08.25.29:406][965]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.000 Y=587.000 +[2025.06.16-08.25.29:421][967]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.000 Y=588.000 +[2025.06.16-08.25.29:437][969]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=230.000 Y=589.000 +[2025.06.16-08.25.29:456][971]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=230.000 Y=590.000 +[2025.06.16-08.25.29:472][973]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.000 Y=592.000 +[2025.06.16-08.25.29:482][974]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.000 Y=593.000 +[2025.06.16-08.25.29:496][976]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.000 Y=595.000 +[2025.06.16-08.25.29:506][977]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.000 Y=598.000 +[2025.06.16-08.25.29:521][979]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.000 Y=600.000 +[2025.06.16-08.25.29:537][981]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=223.000 Y=602.000 +[2025.06.16-08.25.29:554][983]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.000 Y=603.000 +[2025.06.16-08.25.29:579][986]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.000 Y=604.000 +[2025.06.16-08.25.29:596][988]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.000 Y=606.000 +[2025.06.16-08.25.29:607][989]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=608.000 +[2025.06.16-08.25.29:629][992]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=608.000 +[2025.06.16-08.25.29:646][994]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=220.000 Y=610.000 +[2025.06.16-08.25.29:671][997]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.000 Y=611.000 +[2025.06.16-08.25.29:681][998]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=215.000 Y=612.000 +[2025.06.16-08.25.29:697][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.000 Y=613.000 +[2025.06.16-08.25.29:707][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.000 Y=614.000 +[2025.06.16-08.25.29:721][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=206.000 Y=615.000 +[2025.06.16-08.25.29:731][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=199.000 Y=616.000 +[2025.06.16-08.25.29:747][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=196.000 Y=618.000 +[2025.06.16-08.25.29:757][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=619.000 +[2025.06.16-08.25.29:772][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=192.000 Y=620.000 +[2025.06.16-08.25.29:799][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:826][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:851][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:876][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:902][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:928][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:953][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.29:978][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:013][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:038][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:063][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:089][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:114][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:139][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:164][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:190][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:214][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:240][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:264][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:290][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:315][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:340][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:365][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:390][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=620.000 +[2025.06.16-08.25.30:399][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=619.000 +[2025.06.16-08.25.30:422][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=192.000 Y=619.000 +[2025.06.16-08.25.30:441][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=617.000 +[2025.06.16-08.25.30:455][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=193.000 Y=617.000 +[2025.06.16-08.25.30:468][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=196.000 Y=614.000 +[2025.06.16-08.25.30:477][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=198.000 Y=613.000 +[2025.06.16-08.25.30:492][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=204.000 Y=609.000 +[2025.06.16-08.25.30:502][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=598.000 +[2025.06.16-08.25.30:809][126]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.30:809][126]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.30:809][126]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.25.30:809][126]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.30:809][126]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.25.30:813][126]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.25.30:816][126]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.30:830][126]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.30:830][126]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-08.25.30:830][126]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-08.25.30:832][126]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-08.25.30:837][126]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.25.30:871][128]LogPlayLevel: Display: Destroying online subsystem :Context_19 +[2025.06.16-08.25.40:304][221]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.25.41:104][299]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.25.41:160][299]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.25.41:161][299]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.25.41:162][299]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.25.41:162][299]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.25.41:170][299]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.25.41:171][299]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard3641CE5B4462EB29362D6080276B0695.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.25.41:181][299]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.689 ms (total: 918.082 ms) +[2025.06.16-08.25.41:245][299]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.25.41:245][299]LogContentValidation: Enabled validators: +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.25.41:245][299]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.25.41:246][299]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.25.45:008][676]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-08.25.45:876][761]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.25.45:929][761]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-08.25.45:931][761]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-08.25.45:931][761]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-08.25.45:931][761]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-08.25.45:941][761]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-08.25.45:941][761]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard16F5B09B44BF335B7EF17A93C22E1B7F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-08.25.45:951][761]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.974 ms (total: 992.057 ms) +[2025.06.16-08.25.46:015][761]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.25.46:015][761]LogContentValidation: Enabled validators: +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.25.46:015][761]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.25.46:016][761]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-08.25.48:224][ 10]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.25.48:228][ 10]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.25.48:228][ 10]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.25.48:231][ 10]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.319 ms (total: 14.345 ms) +[2025.06.16-08.25.48:231][ 10]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.25.48:231][ 10]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.48:233][ 10]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002236s) +[2025.06.16-08.25.48:233][ 10]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002392s) +[2025.06.16-08.25.48:246][ 10]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.25.48:249][ 10]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.25.48:251][ 10]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.25.48:251][ 10]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.25.48:251][ 10]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.25.48:251][ 10]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.25.48:252][ 10]LogWorldPartition: Display: WorldPartition initialize took 969 us (total: 166.167 ms) +[2025.06.16-08.25.48:252][ 10]LogPlayLevel: PIE: World Init took: (0.002270s) +[2025.06.16-08.25.48:253][ 10]LogAudio: Display: Creating Audio Device: Id: 12, Scope: Unique, Realtime: True +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.25.48:253][ 10]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.25.48:253][ 10]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.25.48:253][ 10]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.25.48:253][ 10]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.25.48:253][ 10]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.25.48:255][ 10]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.25.48:281][ 10]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.25.48:281][ 10]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.25.48:281][ 10]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.25.48:281][ 10]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.25.48:282][ 10]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=12 +[2025.06.16-08.25.48:282][ 10]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=12 +[2025.06.16-08.25.48:284][ 10]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=12 +[2025.06.16-08.25.48:284][ 10]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=12 +[2025.06.16-08.25.48:284][ 10]LogInit: FAudioDevice initialized with ID 12. +[2025.06.16-08.25.48:284][ 10]LogAudio: Display: Audio Device (ID: 12) registered with world 'Dabaza'. +[2025.06.16-08.25.48:284][ 10]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-08.25.48:286][ 10]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.25.48:287][ 10]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.25.48 +[2025.06.16-08.25.48:287][ 10]LogWorld: Bringing up level for play took: 0.001262 +[2025.06.16-08.25.48:290][ 10]LogOnline: OSS: Created online subsystem instance for: :Context_20 +[2025.06.16-08.25.48:292][ 10]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.25.48:292][ 10]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.25.48:292][ 10]PIE: Server logged in +[2025.06.16-08.25.48:293][ 10]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-08.25.49:001][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:018][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:028][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:042][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:052][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:067][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:078][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:093][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:103][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:128][102]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:144][104]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:153][105]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:177][108]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:203][111]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:237][114]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:262][117]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:286][120]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:311][123]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:336][126]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:362][129]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:386][132]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:412][135]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:437][138]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:461][141]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:486][144]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:512][147]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:536][150]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:562][153]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:586][156]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:611][159]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:636][162]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:662][165]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:686][168]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:711][171]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:736][174]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:762][177]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:787][180]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:812][183]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:836][186]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:860][189]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:887][192]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:902][194]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:912][195]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:927][197]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:937][198]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:952][200]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.49:962][201]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.25.50:328][242]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.50:328][242]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.25.50:329][242]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.25.50:329][242]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.50:329][242]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.25.50:332][242]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.25.50:336][242]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.25.50:352][242]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.25.50:352][242]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-08.25.50:352][242]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-08.25.50:354][242]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-08.25.50:357][242]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.25.50:360][242]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.25.50:416][244]LogPlayLevel: Display: Destroying online subsystem :Context_20 +[2025.06.16-08.26.10:020][509]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText +[2025.06.16-08.26.10:020][509]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_20 +[2025.06.16-08.26.10:027][509]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_21 +[2025.06.16-08.26.43:917][400]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.26.44:354][443]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.26.44:414][443]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.26.44:415][443]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.26.44:415][443]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.26.44:415][443]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.26.44:420][443]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.26.44:421][443]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectEC44629F4544E3CEF39FB2978D761B9C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.26.44:431][443]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.500 ms (total: 1.06 sec) +[2025.06.16-08.26.44:496][443]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.26.44:496][443]LogContentValidation: Enabled validators: +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.26.44:496][443]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.26.44:497][443]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.26.45:596][564]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.26.45:602][564]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.26.45:602][564]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.26.45:604][564]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.307 ms (total: 15.652 ms) +[2025.06.16-08.26.45:604][564]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.26.45:604][564]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.26.45:606][564]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002459s) +[2025.06.16-08.26.45:607][564]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002656s) +[2025.06.16-08.26.45:620][564]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-08.26.45:624][564]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.26.45:625][564]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.26.45:625][564]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.26.45:625][564]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.26.45:625][564]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.26.45:626][564]LogWorldPartition: Display: WorldPartition initialize took 1.032 ms (total: 167.199 ms) +[2025.06.16-08.26.45:626][564]LogPlayLevel: PIE: World Init took: (0.002509s) +[2025.06.16-08.26.45:626][564]LogAudio: Display: Creating Audio Device: Id: 13, Scope: Unique, Realtime: True +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.26.45:627][564]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.26.45:627][564]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.26.45:627][564]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.26.45:627][564]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.26.45:627][564]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.26.45:629][564]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.26.45:656][564]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.26.45:656][564]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.26.45:656][564]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.26.45:656][564]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.26.45:657][564]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=13 +[2025.06.16-08.26.45:657][564]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=13 +[2025.06.16-08.26.45:659][564]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=13 +[2025.06.16-08.26.45:659][564]LogInit: FAudioDevice initialized with ID 13. +[2025.06.16-08.26.45:659][564]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=13 +[2025.06.16-08.26.45:659][564]LogAudio: Display: Audio Device (ID: 13) registered with world 'Dabaza'. +[2025.06.16-08.26.45:659][564]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-08.26.45:661][564]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.26.45:662][564]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.26.45 +[2025.06.16-08.26.45:663][564]LogWorld: Bringing up level for play took: 0.001227 +[2025.06.16-08.26.45:665][564]LogOnline: OSS: Created online subsystem instance for: :Context_23 +[2025.06.16-08.26.45:667][564]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.26.45:667][564]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.26.45:667][564]PIE: Server logged in +[2025.06.16-08.26.45:668][564]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-08.26.46:436][647]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.47:720][800]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.49:039][955]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.50:823][169]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.51:847][292]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.52:807][407]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.53:591][501]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.53:593][501]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.26.54:704][634]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.55:653][748]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.56:986][908]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.58:121][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.26.59:254][180]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.27.00:387][316]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.27.01:371][434]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.27.01:596][461]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.27.01:597][461]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-08.27.02:988][619]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.27.02:988][619]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.27.02:989][619]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.27.02:989][619]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.27.02:989][619]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.27.02:992][619]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.27.02:995][619]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.27.03:011][619]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.27.03:011][619]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-08.27.03:011][619]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-08.27.03:013][619]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-08.27.03:016][619]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.27.03:018][619]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-08.27.03:044][620]LogPlayLevel: Display: Destroying online subsystem :Context_23 +[2025.06.16-08.27.45:786][639]LogSlate: Window 'Color Picker' being destroyed +[2025.06.16-08.27.46:731][748]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.27.47:453][807]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.27.47:516][807]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.27.47:517][807]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.27.47:517][807]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.27.47:517][807]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.27.47:522][807]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.27.47:523][807]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect6E24E0C541BA79C1ACC1A79FC2FFE8EC.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.27.47:533][807]LogFileHelpers: InternalPromptForCheckoutAndSave took 80.358 ms (total: 1.14 sec) +[2025.06.16-08.27.47:596][807]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.27.47:596][807]LogContentValidation: Enabled validators: +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.27.47:596][807]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.27.47:597][807]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.27.48:631][922]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.27.48:636][922]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.27.48:636][922]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.27.48:638][922]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.421 ms (total: 17.074 ms) +[2025.06.16-08.27.48:638][922]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.27.48:638][922]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.27.48:640][922]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002162s) +[2025.06.16-08.27.48:640][922]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002320s) +[2025.06.16-08.27.48:653][922]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-08.27.48:656][922]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.27.48:657][922]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.27.48:657][922]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.27.48:657][922]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.27.48:657][922]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.27.48:658][922]LogWorldPartition: Display: WorldPartition initialize took 1.093 ms (total: 168.293 ms) +[2025.06.16-08.27.48:658][922]LogPlayLevel: PIE: World Init took: (0.002501s) +[2025.06.16-08.27.48:658][922]LogAudio: Display: Creating Audio Device: Id: 14, Scope: Unique, Realtime: True +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.27.48:659][922]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.27.48:659][922]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.27.48:659][922]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.27.48:659][922]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.27.48:659][922]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.27.48:662][922]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.27.48:687][922]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.27.48:688][922]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.27.48:688][922]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.27.48:688][922]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.27.48:688][922]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=14 +[2025.06.16-08.27.48:688][922]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=14 +[2025.06.16-08.27.48:691][922]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=14 +[2025.06.16-08.27.48:691][922]LogInit: FAudioDevice initialized with ID 14. +[2025.06.16-08.27.48:691][922]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=14 +[2025.06.16-08.27.48:691][922]LogAudio: Display: Audio Device (ID: 14) registered with world 'Dabaza'. +[2025.06.16-08.27.48:691][922]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-08.27.48:693][922]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.27.48:694][922]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.27.48 +[2025.06.16-08.27.48:695][922]LogWorld: Bringing up level for play took: 0.001144 +[2025.06.16-08.27.48:696][922]LogOnline: OSS: Created online subsystem instance for: :Context_24 +[2025.06.16-08.27.48:698][922]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.27.48:698][922]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.27.48:699][922]PIE: Server logged in +[2025.06.16-08.27.48:699][922]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-08.27.49:263][982]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.27.50:978][179]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.27.50:978][179]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.27.50:978][179]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.27.50:978][179]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.27.50:980][179]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.27.50:982][179]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.27.50:985][179]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.27.51:001][179]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.27.51:001][179]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-08.27.51:001][179]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-08.27.51:003][179]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-08.27.51:006][179]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.27.51:008][179]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-08.27.51:034][180]LogPlayLevel: Display: Destroying online subsystem :Context_24 +[2025.06.16-08.28.08:216][183]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 706.131104 +[2025.06.16-08.28.08:466][213]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.28.08:466][213]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 706.372314, Update Interval: 356.445801 +[2025.06.16-08.28.40:107][941]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-08.28.41:324][ 55]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.28.41:330][ 55]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.28.41:330][ 55]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.28.41:331][ 55]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.261 ms (total: 18.336 ms) +[2025.06.16-08.28.41:331][ 55]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.28.41:331][ 55]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.28.41:334][ 55]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002195s) +[2025.06.16-08.28.41:334][ 55]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002349s) +[2025.06.16-08.28.41:346][ 55]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.28.41:348][ 55]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.28.41:349][ 55]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.28.41:349][ 55]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.28.41:349][ 55]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.28.41:349][ 55]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.28.41:351][ 55]LogWorldPartition: Display: WorldPartition initialize took 1.025 ms (total: 169.319 ms) +[2025.06.16-08.28.41:351][ 55]LogPlayLevel: PIE: World Init took: (0.002411s) +[2025.06.16-08.28.41:351][ 55]LogAudio: Display: Creating Audio Device: Id: 15, Scope: Unique, Realtime: True +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.28.41:352][ 55]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.28.41:352][ 55]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.28.41:352][ 55]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.28.41:352][ 55]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.28.41:352][ 55]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.28.41:354][ 55]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.28.41:379][ 55]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.28.41:380][ 55]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.28.41:380][ 55]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.28.41:380][ 55]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.28.41:380][ 55]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=15 +[2025.06.16-08.28.41:380][ 55]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=15 +[2025.06.16-08.28.41:384][ 55]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=15 +[2025.06.16-08.28.41:384][ 55]LogInit: FAudioDevice initialized with ID 15. +[2025.06.16-08.28.41:384][ 55]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=15 +[2025.06.16-08.28.41:384][ 55]LogAudio: Display: Audio Device (ID: 15) registered with world 'Dabaza'. +[2025.06.16-08.28.41:384][ 55]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-08.28.41:386][ 55]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.28.41:386][ 55]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.28.41 +[2025.06.16-08.28.41:387][ 55]LogWorld: Bringing up level for play took: 0.001167 +[2025.06.16-08.28.41:389][ 55]LogOnline: OSS: Created online subsystem instance for: :Context_25 +[2025.06.16-08.28.41:391][ 55]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.28.41:391][ 55]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.28.41:391][ 55]PIE: Server logged in +[2025.06.16-08.28.41:392][ 55]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-08.28.41:856][103]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.28.43:258][263]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.28.43:258][263]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.28.43:258][263]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.28.43:260][263]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.28.43:260][263]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.28.43:262][263]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.28.43:265][263]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.28.43:282][263]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.28.43:282][263]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-08.28.43:282][263]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-08.28.43:284][263]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-08.28.43:288][263]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.28.43:290][263]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-08.28.43:329][264]LogPlayLevel: Display: Destroying online subsystem :Context_25 +[2025.06.16-08.29.09:229][999]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.29.09:832][ 62]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.29.09:883][ 62]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-08.29.09:884][ 62]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-08.29.09:884][ 62]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-08.29.09:884][ 62]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-08.29.09:889][ 62]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-08.29.09:890][ 62]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect11EE85B14DA8C2926D16E4B58970672A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-08.29.09:898][ 62]LogFileHelpers: InternalPromptForCheckoutAndSave took 66.282 ms (total: 1.21 sec) +[2025.06.16-08.29.09:930][ 62]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.29.09:930][ 62]LogContentValidation: Enabled validators: +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.29.09:930][ 62]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.29.09:932][ 62]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-08.29.34:618][997]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.29.34:623][997]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.29.34:623][997]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.29.34:625][997]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.439 ms (total: 19.775 ms) +[2025.06.16-08.29.34:625][997]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.29.34:625][997]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.29.34:628][997]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002241s) +[2025.06.16-08.29.34:628][997]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002428s) +[2025.06.16-08.29.34:640][997]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.29.34:645][997]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.29.34:646][997]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.29.34:646][997]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.29.34:646][997]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.29.34:646][997]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.29.34:646][997]LogWorldPartition: Display: WorldPartition initialize took 976 us (total: 170.295 ms) +[2025.06.16-08.29.34:646][997]LogPlayLevel: PIE: World Init took: (0.002376s) +[2025.06.16-08.29.34:647][997]LogAudio: Display: Creating Audio Device: Id: 16, Scope: Unique, Realtime: True +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.29.34:648][997]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.29.34:648][997]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.29.34:648][997]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.29.34:648][997]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.29.34:648][997]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.29.34:650][997]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.29.34:674][997]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.29.34:675][997]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.29.34:675][997]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.29.34:675][997]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.29.34:675][997]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=16 +[2025.06.16-08.29.34:675][997]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=16 +[2025.06.16-08.29.34:678][997]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=16 +[2025.06.16-08.29.34:678][997]LogInit: FAudioDevice initialized with ID 16. +[2025.06.16-08.29.34:678][997]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=16 +[2025.06.16-08.29.34:678][997]LogAudio: Display: Audio Device (ID: 16) registered with world 'Dabaza'. +[2025.06.16-08.29.34:678][997]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-08.29.34:680][997]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.29.34:681][997]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.29.34 +[2025.06.16-08.29.34:682][997]LogWorld: Bringing up level for play took: 0.001124 +[2025.06.16-08.29.34:684][997]LogOnline: OSS: Created online subsystem instance for: :Context_26 +[2025.06.16-08.29.34:685][997]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.29.34:685][997]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.29.34:686][997]PIE: Server logged in +[2025.06.16-08.29.34:687][997]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-08.29.35:300][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.29.36:468][202]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.29.37:758][348]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.29.37:758][348]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.29.37:759][348]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.29.37:759][348]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.29.37:759][348]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.29.37:762][348]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.29.37:766][348]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.29.37:781][348]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.29.37:781][348]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-08.29.37:782][348]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-08.29.37:783][348]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-08.29.37:786][348]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.29.37:789][348]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.29.37:820][349]LogPlayLevel: Display: Destroying online subsystem :Context_26 +[2025.06.16-08.29.46:378][612]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.29.46:384][612]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.29.46:384][612]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.29.46:385][612]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.359 ms (total: 21.134 ms) +[2025.06.16-08.29.46:385][612]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.29.46:385][612]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.29.46:388][612]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002176s) +[2025.06.16-08.29.46:388][612]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002328s) +[2025.06.16-08.29.46:401][612]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.29.46:402][612]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.29.46:403][612]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.29.46:403][612]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.29.46:403][612]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.29.46:404][612]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.29.46:404][612]LogWorldPartition: Display: WorldPartition initialize took 1.080 ms (total: 171.375 ms) +[2025.06.16-08.29.46:405][612]LogPlayLevel: PIE: World Init took: (0.002410s) +[2025.06.16-08.29.46:405][612]LogAudio: Display: Creating Audio Device: Id: 17, Scope: Unique, Realtime: True +[2025.06.16-08.29.46:405][612]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.29.46:405][612]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.29.46:405][612]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.29.46:405][612]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.29.46:405][612]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.29.46:406][612]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.29.46:406][612]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.29.46:406][612]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.29.46:406][612]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.29.46:406][612]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.29.46:406][612]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.29.46:408][612]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.29.46:432][612]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.29.46:432][612]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.29.46:432][612]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.29.46:432][612]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.29.46:433][612]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=17 +[2025.06.16-08.29.46:433][612]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=17 +[2025.06.16-08.29.46:436][612]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=17 +[2025.06.16-08.29.46:436][612]LogInit: FAudioDevice initialized with ID 17. +[2025.06.16-08.29.46:436][612]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=17 +[2025.06.16-08.29.46:436][612]LogAudio: Display: Audio Device (ID: 17) registered with world 'Dabaza'. +[2025.06.16-08.29.46:436][612]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-08.29.46:437][612]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.29.46:438][612]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.29.46 +[2025.06.16-08.29.46:439][612]LogWorld: Bringing up level for play took: 0.001144 +[2025.06.16-08.29.46:441][612]LogOnline: OSS: Created online subsystem instance for: :Context_27 +[2025.06.16-08.29.46:443][612]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.29.46:443][612]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.29.46:443][612]PIE: Server logged in +[2025.06.16-08.29.46:444][612]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-08.29.47:155][690]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.29.57:263][690]LogAutomationController: Ignoring very large delta of 10.11 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.29.57:266][691]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.29.59:688][828]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.29.59:688][828]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.29.59:689][828]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.29.59:689][828]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.29.59:689][828]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.29.59:691][828]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.29.59:696][828]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.29.59:713][828]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.29.59:713][828]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-08.29.59:713][828]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-08.29.59:715][828]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-08.29.59:720][828]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.29.59:747][829]LogPlayLevel: Display: Destroying online subsystem :Context_27 +[2025.06.16-08.30.21:787][974]LogHotReload: New module detected: UnrealEditor-ProjectFish-0001.dll +[2025.06.16-08.30.22:459][976]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-08.30.22:528][976]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-08.30.22:844][976]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-08.30.22:890][976]LogStreaming: Display: FlushAsyncLoading(581): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-08.30.22:892][976]Display: HotReload took 0.4s. +[2025.06.16-08.30.22:892][976]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-08.30.25:194][154]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.30.25:201][154]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.30.25:201][154]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.30.25:202][154]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.284 ms (total: 22.419 ms) +[2025.06.16-08.30.25:217][154]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.30.25:217][154]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.30.25:223][154]LogPlayLevel: PIE: StaticDuplicateObject took: (0.005595s) +[2025.06.16-08.30.25:223][154]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.005763s) +[2025.06.16-08.30.25:274][154]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-08.30.25:276][154]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.30.25:277][154]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.30.25:277][154]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.30.25:277][154]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.30.25:277][154]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.30.25:278][154]LogWorldPartition: Display: WorldPartition initialize took 1.285 ms (total: 172.661 ms) +[2025.06.16-08.30.25:278][154]LogPlayLevel: PIE: World Init took: (0.002970s) +[2025.06.16-08.30.25:279][154]LogAudio: Display: Creating Audio Device: Id: 18, Scope: Unique, Realtime: True +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.30.25:279][154]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.30.25:279][154]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.30.25:279][154]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.30.25:279][154]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.30.25:279][154]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.30.25:281][154]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.30.25:307][154]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.30.25:307][154]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.30.25:307][154]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.30.25:308][154]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.30.25:308][154]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=18 +[2025.06.16-08.30.25:308][154]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=18 +[2025.06.16-08.30.25:310][154]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=18 +[2025.06.16-08.30.25:310][154]LogInit: FAudioDevice initialized with ID 18. +[2025.06.16-08.30.25:310][154]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=18 +[2025.06.16-08.30.25:310][154]LogAudio: Display: Audio Device (ID: 18) registered with world 'Dabaza'. +[2025.06.16-08.30.25:310][154]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-08.30.25:313][154]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.30.25:314][154]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.30.25 +[2025.06.16-08.30.25:315][154]LogWorld: Bringing up level for play took: 0.001322 +[2025.06.16-08.30.25:317][154]LogOnline: OSS: Created online subsystem instance for: :Context_28 +[2025.06.16-08.30.25:319][154]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.30.25:319][154]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.30.25:320][154]PIE: Server logged in +[2025.06.16-08.30.25:321][154]PIE: Play in editor total start time 0.12 seconds. +[2025.06.16-08.30.26:145][245]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.30.34:939][245]LogAutomationController: Ignoring very large delta of 8.79 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.30.34:940][246]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.30.43:206][566]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.30.43:207][566]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-08.30.50:589][588]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.30.50:590][588]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.30.50:590][588]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.30.50:592][588]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.30.50:593][588]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.30.50:597][588]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.30.50:600][588]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.30.50:625][588]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.30.50:626][588]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-08.30.50:626][588]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-08.30.50:627][588]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-08.30.50:641][588]LogUObjectHash: Compacting FUObjectHashTables data took 1.40ms +[2025.06.16-08.30.50:673][589]LogPlayLevel: Display: Destroying online subsystem :Context_28 +[2025.06.16-08.31.58:020][928]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-08.31.58:023][928]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.020 +[2025.06.16-08.31.58:023][928]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_TopCameraPawn] ([2] browsable assets)... +[2025.06.16-08.31.58:023][928]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_TopCameraPawn] +[2025.06.16-08.31.58:023][928]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_TopCameraPawn" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-08.31.58:027][928]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1 +[2025.06.16-08.31.58:027][928]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_TopCameraPawn_Auto1CD1B41AE4D204EA895A854BFE13053DB.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Characters/BP_TopCameraPawn_Auto1.uasset' +[2025.06.16-08.31.58:028][928]LogFileHelpers: Auto-saving content packages took 0.004 +[2025.06.16-08.32.06:961][955]LogHotReload: New module detected: UnrealEditor-ProjectFish-0002.dll +[2025.06.16-08.32.07:300][956]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-08.32.07:380][956]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms +[2025.06.16-08.32.07:625][956]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-08.32.07:659][956]Display: HotReload took 0.4s. +[2025.06.16-08.32.07:659][956]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-08.32.09:757][ 39]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.32.09:763][ 39]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.32.09:764][ 39]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.32.09:765][ 39]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.215 ms (total: 23.634 ms) +[2025.06.16-08.32.09:765][ 39]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.32.09:766][ 39]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.32.09:767][ 39]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002149s) +[2025.06.16-08.32.09:767][ 39]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002288s) +[2025.06.16-08.32.09:820][ 39]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-08.32.09:823][ 39]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.32.09:824][ 39]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.32.09:824][ 39]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.32.09:825][ 39]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.32.09:825][ 39]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.32.09:826][ 39]LogWorldPartition: Display: WorldPartition initialize took 1.279 ms (total: 173.940 ms) +[2025.06.16-08.32.09:826][ 39]LogPlayLevel: PIE: World Init took: (0.002845s) +[2025.06.16-08.32.09:826][ 39]LogAudio: Display: Creating Audio Device: Id: 19, Scope: Unique, Realtime: True +[2025.06.16-08.32.09:827][ 39]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.32.09:827][ 39]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.32.09:827][ 39]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.32.09:828][ 39]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.32.09:828][ 39]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.32.09:828][ 39]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.32.09:828][ 39]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.32.09:828][ 39]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.32.09:828][ 39]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.32.09:828][ 39]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.32.09:828][ 39]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.32.09:829][ 39]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.32.09:855][ 39]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.32.09:856][ 39]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.32.09:856][ 39]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.32.09:856][ 39]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.32.09:856][ 39]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=19 +[2025.06.16-08.32.09:857][ 39]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=19 +[2025.06.16-08.32.09:859][ 39]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=19 +[2025.06.16-08.32.09:859][ 39]LogInit: FAudioDevice initialized with ID 19. +[2025.06.16-08.32.09:859][ 39]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=19 +[2025.06.16-08.32.09:859][ 39]LogAudio: Display: Audio Device (ID: 19) registered with world 'Dabaza'. +[2025.06.16-08.32.09:859][ 39]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-08.32.09:861][ 39]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.32.09:863][ 39]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.32.09 +[2025.06.16-08.32.09:863][ 39]LogWorld: Bringing up level for play took: 0.001208 +[2025.06.16-08.32.09:865][ 39]LogOnline: OSS: Created online subsystem instance for: :Context_29 +[2025.06.16-08.32.09:866][ 39]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.32.09:867][ 39]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.32.09:867][ 39]PIE: Server logged in +[2025.06.16-08.32.09:868][ 39]PIE: Play in editor total start time 0.105 seconds. +[2025.06.16-08.32.10:416][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.16:156][ 97]LogAutomationController: Ignoring very large delta of 5.74 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-08.32.17:757][171]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.32.18:479][251]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.32.18:479][251]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.32.18:479][251]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.32.18:480][251]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.32.18:480][251]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.32.18:483][251]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.32.18:486][251]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.32.18:499][251]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-08.32.18:499][251]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-08.32.18:499][251]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-08.32.18:501][251]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-08.32.18:504][251]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.32.18:506][251]LogUObjectHash: Compacting FUObjectHashTables data took 1.29ms +[2025.06.16-08.32.18:568][253]LogPlayLevel: Display: Destroying online subsystem :Context_29 +[2025.06.16-08.32.50:864][423]LogHotReload: New module detected: UnrealEditor-ProjectFish-0004.dll +[2025.06.16-08.32.51:536][425]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-08.32.51:608][425]LogUObjectHash: Compacting FUObjectHashTables data took 0.65ms +[2025.06.16-08.32.51:793][425]LogUObjectHash: Compacting FUObjectHashTables data took 0.67ms +[2025.06.16-08.32.51:826][425]Display: HotReload took 0.3s. +[2025.06.16-08.32.51:826][425]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-08.32.53:592][553]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-08.32.53:597][553]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-08.32.53:597][553]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-08.32.53:598][553]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.337 ms (total: 24.972 ms) +[2025.06.16-08.32.53:599][553]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-08.32.53:599][553]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.32.53:601][553]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002219s) +[2025.06.16-08.32.53:601][553]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002369s) +[2025.06.16-08.32.53:644][553]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-08.32.53:647][553]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-08.32.53:648][553]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-08.32.53:648][553]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-08.32.53:648][553]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-08.32.53:648][553]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-08.32.53:650][553]LogWorldPartition: Display: WorldPartition initialize took 1.204 ms (total: 175.144 ms) +[2025.06.16-08.32.53:650][553]LogPlayLevel: PIE: World Init took: (0.002703s) +[2025.06.16-08.32.53:650][553]LogAudio: Display: Creating Audio Device: Id: 20, Scope: Unique, Realtime: True +[2025.06.16-08.32.53:650][553]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-08.32.53:650][553]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-08.32.53:651][553]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-08.32.53:651][553]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-08.32.53:651][553]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-08.32.53:651][553]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-08.32.53:651][553]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-08.32.53:651][553]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-08.32.53:651][553]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-08.32.53:651][553]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-08.32.53:651][553]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-08.32.53:653][553]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-08.32.53:680][553]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-08.32.53:681][553]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-08.32.53:681][553]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-08.32.53:681][553]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-08.32.53:681][553]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=20 +[2025.06.16-08.32.53:681][553]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=20 +[2025.06.16-08.32.53:685][553]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=20 +[2025.06.16-08.32.53:685][553]LogInit: FAudioDevice initialized with ID 20. +[2025.06.16-08.32.53:685][553]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=20 +[2025.06.16-08.32.53:685][553]LogAudio: Display: Audio Device (ID: 20) registered with world 'Dabaza'. +[2025.06.16-08.32.53:685][553]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-08.32.53:686][553]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-08.32.53:688][553]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-16.32.53 +[2025.06.16-08.32.53:688][553]LogWorld: Bringing up level for play took: 0.001399 +[2025.06.16-08.32.53:690][553]LogOnline: OSS: Created online subsystem instance for: :Context_30 +[2025.06.16-08.32.53:693][553]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-08.32.53:693][553]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-08.32.53:694][553]PIE: Server logged in +[2025.06.16-08.32.53:695][553]PIE: Play in editor total start time 0.097 seconds. +[2025.06.16-08.32.54:376][626]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.55:434][752]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.56:293][855]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.57:147][957]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.57:879][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.58:630][135]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.32.59:397][227]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.00:239][328]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.01:591][490]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.33.01:715][505]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.02:604][611]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.03:311][696]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.04:318][816]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.05:276][929]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.06:487][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.07:500][193]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-08.33.09:599][444]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-08.33.09:599][444]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-08.33.11:278][640]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.33.11:278][640]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-08.33.11:279][640]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-08.33.11:279][640]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.33.11:279][640]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-08.33.11:282][640]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-08.33.11:286][640]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-08.33.11:302][640]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-08.33.11:302][640]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-08.33.11:302][640]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-08.33.11:305][640]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-08.33.11:311][640]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-08.33.11:350][642]LogPlayLevel: Display: Destroying online subsystem :Context_30 +[2025.06.16-08.33.13:330][867]LogUObjectHash: Compacting FUObjectHashTables data took 0.69ms +[2025.06.16-08.33.14:647][867]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-08.33.14:659][867]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-08.33.14:717][867]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_TopCameraPawn] ([2] browsable assets)... +[2025.06.16-08.33.14:717][867]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_TopCameraPawn] +[2025.06.16-08.33.14:717][867]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_TopCameraPawn" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset" SILENT=true +[2025.06.16-08.33.14:719][867]LogSavePackage: Moving output files for package: /Game/Characters/BP_TopCameraPawn +[2025.06.16-08.33.14:721][867]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_TopCameraPawn60EDC72D48B8285E176E88A77115A185.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset' +[2025.06.16-08.33.14:730][867]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.661 ms (total: 1.28 sec) +[2025.06.16-08.33.14:783][867]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-08.33.14:784][867]LogContentValidation: Enabled validators: +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-08.33.14:784][867]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-08.33.14:784][867]AssetCheck: /Game/Characters/BP_TopCameraPawn Validating asset +[2025.06.16-08.34.11:055][142]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1068.971558 +[2025.06.16-08.34.12:054][145]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.34.12:054][145]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1069.633667, Update Interval: 325.452423 +[2025.06.16-08.39.51:416][163]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1409.332275 +[2025.06.16-08.39.52:421][166]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.39.52:421][166]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1410.000000, Update Interval: 325.227203 +[2025.06.16-08.45.38:112][203]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1756.028931 +[2025.06.16-08.45.39:111][206]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.45.39:111][206]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1756.690674, Update Interval: 325.062408 +[2025.06.16-08.51.56:809][339]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2134.726318 +[2025.06.16-08.51.57:808][342]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.51.57:809][343]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2135.392334, Update Interval: 357.482239 +[2025.06.16-08.58.26:848][509]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2524.763184 +[2025.06.16-08.58.27:850][512]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-08.58.27:850][512]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2525.429932, Update Interval: 328.321777 +[2025.06.16-09.04.29:884][598]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2887.797852 +[2025.06.16-09.04.30:884][601]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.04.30:884][601]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2888.464355, Update Interval: 303.420502 +[2025.06.16-09.10.22:591][656]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3240.503418 +[2025.06.16-09.10.24:255][661]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.10.24:255][661]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3241.832275, Update Interval: 349.797058 +[2025.06.16-09.13.57:261][393]LogAssetEditorSubsystem: Opening Asset editor for DataTable /Game/DataTable/PawnSkills.PawnSkills +[2025.06.16-09.13.57:359][393]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.13.59:095][555]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.17:125][686]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.35:580][261]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.39:032][654]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.40:805][863]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.45:620][415]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.46:441][510]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.14.47:565][641]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.15.00:783][208]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.15.25:266][375]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.15.35:195][544]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.15.47:042][939]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.15.47:634][ 6]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.16.16:898][501]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-09.16.16:900][501]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.038 +[2025.06.16-09.16.16:901][501]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.16.16:901][501]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.16.16:901][501]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/DataTable/PawnSkills_Auto2.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-09.16.16:902][501]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/DataTable/PawnSkills_Auto2 +[2025.06.16-09.16.16:902][501]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills_Auto21609AA324008E98B5D50D995A7AC8604.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/DataTable/PawnSkills_Auto2.uasset' +[2025.06.16-09.16.16:903][501]LogFileHelpers: Auto-saving content packages took 0.003 +[2025.06.16-09.16.55:159][616]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.17.07:775][111]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3645.681885 +[2025.06.16-09.17.08:059][141]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.17.08:059][141]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3645.958496, Update Interval: 316.219971 +[2025.06.16-09.17.08:116][148]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.17.08:173][148]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.17.08:173][148]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.17.08:173][148]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.17.08:175][148]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.17.08:176][148]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsAA96E88B4BE73D4883D1B8901E97614C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.17.08:187][148]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.367 ms (total: 1.35 sec) +[2025.06.16-09.17.08:237][148]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.17.08:237][148]LogContentValidation: Enabled validators: +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.17.08:237][148]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.17.08:237][148]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.17.19:233][404]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.17.20:135][481]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.17.20:197][481]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-09.17.20:197][481]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-09.17.20:197][481]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-09.17.20:207][481]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-09.17.20:209][481]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode4F65482C4FADA68031B8289CA8DFCF2F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-09.17.20:219][481]LogFileHelpers: InternalPromptForCheckoutAndSave took 83.256 ms (total: 1.44 sec) +[2025.06.16-09.17.20:281][481]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.17.20:281][481]LogContentValidation: Enabled validators: +[2025.06.16-09.17.20:281][481]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.17.20:282][481]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.17.20:282][481]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.17.20:282][481]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.17.20:282][481]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.17.20:282][481]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.17.20:282][481]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-09.17.29:780][564]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.17.29:785][564]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.17.29:785][564]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.17.29:786][564]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.442 ms (total: 26.414 ms) +[2025.06.16-09.17.29:787][564]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.17.29:787][564]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.17.29:789][564]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002294s) +[2025.06.16-09.17.29:789][564]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002419s) +[2025.06.16-09.17.29:803][564]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-09.17.29:806][564]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.17.29:807][564]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.17.29:807][564]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.17.29:807][564]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.17.29:807][564]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.17.29:808][564]LogWorldPartition: Display: WorldPartition initialize took 1.005 ms (total: 176.150 ms) +[2025.06.16-09.17.29:808][564]LogPlayLevel: PIE: World Init took: (0.002438s) +[2025.06.16-09.17.29:809][564]LogAudio: Display: Creating Audio Device: Id: 21, Scope: Unique, Realtime: True +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.17.29:809][564]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.17.29:810][564]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.17.29:810][564]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.17.29:810][564]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.17.29:810][564]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.17.29:810][564]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.17.29:812][564]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.17.29:838][564]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.17.29:839][564]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.17.29:839][564]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.17.29:839][564]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.17.29:839][564]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=21 +[2025.06.16-09.17.29:839][564]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=21 +[2025.06.16-09.17.29:841][564]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=21 +[2025.06.16-09.17.29:842][564]LogInit: FAudioDevice initialized with ID 21. +[2025.06.16-09.17.29:842][564]LogAudio: Display: Audio Device (ID: 21) registered with world 'Dabaza'. +[2025.06.16-09.17.29:842][564]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=21 +[2025.06.16-09.17.29:842][564]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-09.17.29:844][564]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.17.29:845][564]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.17.29 +[2025.06.16-09.17.29:845][564]LogWorld: Bringing up level for play took: 0.001293 +[2025.06.16-09.17.29:848][564]LogOnline: OSS: Created online subsystem instance for: :Context_31 +[2025.06.16-09.17.29:850][564]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.17.29:850][564]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.17.29:851][564]PIE: Server logged in +[2025.06.16-09.17.29:851][564]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-09.17.42:155][ 26]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.17.54:154][466]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.18.02:508][453]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.18.02:508][453]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.18.02:509][453]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.18.02:509][453]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.18.02:509][453]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.18.02:512][453]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.18.02:515][453]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.18.02:532][453]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.18.02:532][453]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-09.18.02:533][453]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-09.18.02:534][453]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-09.18.02:540][453]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-09.18.02:570][454]LogPlayLevel: Display: Destroying online subsystem :Context_31 +[2025.06.16-09.18.17:954][194]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-09.18.32:872][238]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.18.32:877][238]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.18.32:877][238]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.18.32:880][238]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.594 ms (total: 28.009 ms) +[2025.06.16-09.18.32:880][238]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.18.32:880][238]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.18.32:883][238]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002572s) +[2025.06.16-09.18.32:883][238]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002722s) +[2025.06.16-09.18.32:897][238]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-09.18.32:899][238]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.18.32:900][238]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.18.32:900][238]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.18.32:900][238]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.18.32:900][238]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.18.32:901][238]LogWorldPartition: Display: WorldPartition initialize took 1.120 ms (total: 177.270 ms) +[2025.06.16-09.18.32:901][238]LogPlayLevel: PIE: World Init took: (0.002582s) +[2025.06.16-09.18.32:903][238]LogAudio: Display: Creating Audio Device: Id: 22, Scope: Unique, Realtime: True +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.18.32:903][238]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.18.32:903][238]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.18.32:903][238]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.18.32:903][238]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.18.32:903][238]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.18.32:905][238]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.18.32:931][238]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.18.32:931][238]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.18.32:932][238]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.18.32:932][238]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.18.32:932][238]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=22 +[2025.06.16-09.18.32:932][238]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=22 +[2025.06.16-09.18.32:935][238]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=22 +[2025.06.16-09.18.32:935][238]LogInit: FAudioDevice initialized with ID 22. +[2025.06.16-09.18.32:935][238]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=22 +[2025.06.16-09.18.32:935][238]LogAudio: Display: Audio Device (ID: 22) registered with world 'Dabaza'. +[2025.06.16-09.18.32:935][238]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-09.18.32:937][238]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.18.32:938][238]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.18.32 +[2025.06.16-09.18.32:938][238]LogWorld: Bringing up level for play took: 0.001221 +[2025.06.16-09.18.32:941][238]LogOnline: OSS: Created online subsystem instance for: :Context_32 +[2025.06.16-09.18.32:943][238]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.18.32:943][238]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.18.32:943][238]PIE: Server logged in +[2025.06.16-09.18.32:944][238]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-09.18.44:545][594]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.19.06:187][594]LogAutomationController: Ignoring very large delta of 21.65 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.19.15:353][595]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.19.27:683][595]LogAutomationController: Ignoring very large delta of 21.50 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.19.27:686][596]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.19.31:974][596]LogAutomationController: Ignoring very large delta of 4.29 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.19.43:648][870]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.19.43:648][870]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.19.43:648][870]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.19.43:649][870]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.19.43:649][870]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.19.43:651][870]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.19.43:656][870]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.19.43:670][870]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.19.43:670][870]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-09.19.43:671][870]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-09.19.43:672][870]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-09.19.43:678][870]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-09.19.43:716][872]LogPlayLevel: Display: Destroying online subsystem :Context_32 +[2025.06.16-09.19.49:845][604]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.19.49:850][604]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.19.49:850][604]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.19.49:852][604]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.281 ms (total: 29.290 ms) +[2025.06.16-09.19.49:852][604]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.19.49:852][604]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.19.49:855][604]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002160s) +[2025.06.16-09.19.49:855][604]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002322s) +[2025.06.16-09.19.49:867][604]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.16-09.19.49:869][604]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.19.49:870][604]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.19.49:870][604]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.19.49:870][604]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.19.49:870][604]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.19.49:871][604]LogWorldPartition: Display: WorldPartition initialize took 973 us (total: 178.243 ms) +[2025.06.16-09.19.49:871][604]LogPlayLevel: PIE: World Init took: (0.002284s) +[2025.06.16-09.19.49:872][604]LogAudio: Display: Creating Audio Device: Id: 23, Scope: Unique, Realtime: True +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.19.49:872][604]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.19.49:872][604]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.19.49:872][604]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.19.49:872][604]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.19.49:872][604]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.19.49:874][604]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.19.49:900][604]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.19.49:900][604]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.19.49:900][604]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.19.49:900][604]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.19.49:901][604]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=23 +[2025.06.16-09.19.49:901][604]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=23 +[2025.06.16-09.19.49:903][604]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=23 +[2025.06.16-09.19.49:903][604]LogInit: FAudioDevice initialized with ID 23. +[2025.06.16-09.19.49:903][604]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=23 +[2025.06.16-09.19.49:903][604]LogAudio: Display: Audio Device (ID: 23) registered with world 'Dabaza'. +[2025.06.16-09.19.49:904][604]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-09.19.49:906][604]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.19.49:906][604]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.19.49 +[2025.06.16-09.19.49:907][604]LogWorld: Bringing up level for play took: 0.001262 +[2025.06.16-09.19.49:910][604]LogOnline: OSS: Created online subsystem instance for: :Context_33 +[2025.06.16-09.19.49:911][604]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.19.49:911][604]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.19.49:912][604]PIE: Server logged in +[2025.06.16-09.19.49:912][604]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-09.19.55:658][276]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.19.55:658][276]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.19.55:658][276]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.19.55:658][276]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.19.55:659][276]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.19.55:663][276]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.19.55:666][276]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.19.55:680][276]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.19.55:681][276]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-09.19.55:681][276]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-09.19.55:683][276]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-09.19.55:688][276]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-09.19.55:735][279]LogPlayLevel: Display: Destroying online subsystem :Context_33 +[2025.06.16-09.20.52:756][723]LogHotReload: New module detected: UnrealEditor-ProjectFish-0005.dll +[2025.06.16-09.20.53:115][724]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-09.20.53:195][724]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-09.20.53:478][724]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-09.20.53:519][724]Display: HotReload took 0.4s. +[2025.06.16-09.20.53:519][724]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-09.21.11:799][798]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.21.11:857][798]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.21.11:857][798]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.21.11:857][798]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.21.11:859][798]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.21.11:859][798]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills470C8C014E275521AD0A329101B6B17E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.21.11:869][798]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.735 ms (total: 1.51 sec) +[2025.06.16-09.21.11:920][798]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.21.11:921][798]LogContentValidation: Enabled validators: +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.21.11:921][798]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.21.11:921][798]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.21.12:938][913]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.21.12:943][913]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.21.12:943][913]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.21.12:946][913]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.531 ms (total: 30.822 ms) +[2025.06.16-09.21.12:946][913]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.21.12:946][913]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.21.12:949][913]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002309s) +[2025.06.16-09.21.12:949][913]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002534s) +[2025.06.16-09.21.13:002][913]LogUObjectHash: Compacting FUObjectHashTables data took 0.99ms +[2025.06.16-09.21.13:004][913]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.21.13:006][913]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.21.13:006][913]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.21.13:006][913]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.21.13:006][913]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.21.13:007][913]LogWorldPartition: Display: WorldPartition initialize took 1.041 ms (total: 179.285 ms) +[2025.06.16-09.21.13:007][913]LogPlayLevel: PIE: World Init took: (0.002613s) +[2025.06.16-09.21.13:007][913]LogAudio: Display: Creating Audio Device: Id: 24, Scope: Unique, Realtime: True +[2025.06.16-09.21.13:007][913]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.21.13:007][913]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.21.13:007][913]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.21.13:008][913]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.21.13:008][913]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.21.13:008][913]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.21.13:008][913]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.21.13:008][913]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.21.13:008][913]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.21.13:008][913]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.21.13:008][913]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.21.13:010][913]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.21.13:037][913]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.21.13:038][913]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.21.13:038][913]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.21.13:038][913]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.21.13:038][913]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=24 +[2025.06.16-09.21.13:038][913]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=24 +[2025.06.16-09.21.13:042][913]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=24 +[2025.06.16-09.21.13:042][913]LogInit: FAudioDevice initialized with ID 24. +[2025.06.16-09.21.13:042][913]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=24 +[2025.06.16-09.21.13:042][913]LogAudio: Display: Audio Device (ID: 24) registered with world 'Dabaza'. +[2025.06.16-09.21.13:042][913]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.16-09.21.13:045][913]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.21.13:046][913]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.21.13 +[2025.06.16-09.21.13:046][913]LogWorld: Bringing up level for play took: 0.001285 +[2025.06.16-09.21.13:048][913]LogOnline: OSS: Created online subsystem instance for: :Context_34 +[2025.06.16-09.21.13:050][913]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.21.13:050][913]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.21.13:051][913]PIE: Server logged in +[2025.06.16-09.21.13:052][913]PIE: Play in editor total start time 0.108 seconds. +[2025.06.16-09.21.25:272][365]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.21.37:274][805]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.21.49:275][245]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.21.49:282][246]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-09.21.51:978][565]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.21.51:978][565]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.21.51:979][565]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.21.51:979][565]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.21.51:979][565]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.21.51:981][565]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.21.51:987][565]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.21.52:012][565]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.21.52:012][565]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.16-09.21.52:013][565]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.16-09.21.52:014][565]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.16-09.21.52:028][565]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-09.21.52:075][566]LogPlayLevel: Display: Destroying online subsystem :Context_34 +[2025.06.16-09.22.47:644][466]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.23.16:144][871]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4014.049072 +[2025.06.16-09.23.16:421][904]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.23.16:421][904]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4014.316650, Update Interval: 315.806152 +[2025.06.16-09.23.51:820][860]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.25.50:585][ 8]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.26.03:326][510]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.26.48:854][924]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.26.48:919][924]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.26.48:919][924]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.26.48:919][924]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.26.48:921][924]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.26.48:921][924]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsEAFCE53C41EBC4B7AA5538BAB2002E0F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.26.48:932][924]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.134 ms (total: 1.58 sec) +[2025.06.16-09.26.48:980][924]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.26.48:980][924]LogContentValidation: Enabled validators: +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.26.48:980][924]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.26.48:980][924]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.26.49:759][ 16]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.26.49:818][ 16]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.26.49:818][ 16]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.26.49:818][ 16]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.26.49:820][ 16]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.26.49:820][ 16]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsE286935049530CF87FD4A185054F0B6F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.26.49:828][ 16]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.549 ms (total: 1.65 sec) +[2025.06.16-09.26.49:882][ 16]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.26.49:882][ 16]LogContentValidation: Enabled validators: +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.26.49:882][ 16]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.26.49:882][ 16]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.27.10:384][467]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.27.10:417][467]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.27.10:417][467]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.27.10:417][467]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.27.10:419][467]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.27.10:419][467]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills985F6D9C41C82CB3F3923398B4641794.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.27.10:430][467]LogFileHelpers: InternalPromptForCheckoutAndSave took 45.567 ms (total: 1.70 sec) +[2025.06.16-09.27.10:485][467]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.27.10:485][467]LogContentValidation: Enabled validators: +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.27.10:485][467]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.27.10:485][467]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.27.52:587][360]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-09.27.53:228][417]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.27.53:285][417]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-09.27.53:285][417]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-09.27.53:285][417]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-09.27.53:297][417]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-09.27.53:297][417]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode7CA3948C4A86F17972AA668E41CE9B1E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-09.27.53:308][417]LogFileHelpers: InternalPromptForCheckoutAndSave took 79.896 ms (total: 1.78 sec) +[2025.06.16-09.27.53:367][417]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.27.53:367][417]LogContentValidation: Enabled validators: +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.27.53:367][417]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.27.53:367][417]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-09.28.00:473][245]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.28.00:478][245]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.28.00:478][245]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.28.00:480][245]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.350 ms (total: 32.172 ms) +[2025.06.16-09.28.00:480][245]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.28.00:480][245]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.28.00:483][245]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002536s) +[2025.06.16-09.28.00:483][245]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002732s) +[2025.06.16-09.28.00:495][245]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.28.00:500][245]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.28.00:501][245]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.28.00:501][245]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.28.00:501][245]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.28.00:501][245]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.28.00:502][245]LogWorldPartition: Display: WorldPartition initialize took 1.068 ms (total: 180.354 ms) +[2025.06.16-09.28.00:502][245]LogPlayLevel: PIE: World Init took: (0.002736s) +[2025.06.16-09.28.00:503][245]LogAudio: Display: Creating Audio Device: Id: 25, Scope: Unique, Realtime: True +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.28.00:503][245]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.28.00:503][245]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.28.00:503][245]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.28.00:504][245]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.28.00:504][245]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.28.00:505][245]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.28.00:531][245]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.28.00:532][245]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.28.00:532][245]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.28.00:532][245]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.28.00:532][245]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=25 +[2025.06.16-09.28.00:532][245]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=25 +[2025.06.16-09.28.00:535][245]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=25 +[2025.06.16-09.28.00:536][245]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=25 +[2025.06.16-09.28.00:536][245]LogInit: FAudioDevice initialized with ID 25. +[2025.06.16-09.28.00:536][245]LogAudio: Display: Audio Device (ID: 25) registered with world 'Dabaza'. +[2025.06.16-09.28.00:536][245]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.16-09.28.00:538][245]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.28.00:539][245]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.28.00 +[2025.06.16-09.28.00:540][245]LogWorld: Bringing up level for play took: 0.001380 +[2025.06.16-09.28.00:543][245]LogOnline: OSS: Created online subsystem instance for: :Context_35 +[2025.06.16-09.28.00:544][245]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.28.00:544][245]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.28.00:545][245]PIE: Server logged in +[2025.06.16-09.28.00:546][245]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-09.28.05:473][826]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.28.10:474][420]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.28.11:949][592]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.28.11:949][592]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.28.11:949][592]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.28.11:949][592]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.28.11:949][592]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.28.11:953][592]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.28.11:956][592]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.28.11:977][592]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.28.11:977][592]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.16-09.28.11:977][592]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.16-09.28.11:978][592]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.16-09.28.11:985][592]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-09.28.12:016][593]LogPlayLevel: Display: Destroying online subsystem :Context_35 +[2025.06.16-09.28.36:039][187]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.28.36:044][187]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.28.36:045][187]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.28.36:045][187]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.486 ms (total: 33.659 ms) +[2025.06.16-09.28.36:047][187]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.28.36:047][187]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.28.36:049][187]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002283s) +[2025.06.16-09.28.36:049][187]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002443s) +[2025.06.16-09.28.36:065][187]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-09.28.36:066][187]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.28.36:067][187]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.28.36:067][187]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.28.36:067][187]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.28.36:067][187]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.28.36:068][187]LogWorldPartition: Display: WorldPartition initialize took 1.052 ms (total: 181.406 ms) +[2025.06.16-09.28.36:068][187]LogPlayLevel: PIE: World Init took: (0.002404s) +[2025.06.16-09.28.36:069][187]LogAudio: Display: Creating Audio Device: Id: 26, Scope: Unique, Realtime: True +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.28.36:069][187]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.28.36:069][187]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.28.36:070][187]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.28.36:070][187]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.28.36:070][187]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.28.36:072][187]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.28.36:098][187]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.28.36:098][187]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.28.36:098][187]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.28.36:098][187]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.28.36:099][187]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=26 +[2025.06.16-09.28.36:099][187]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=26 +[2025.06.16-09.28.36:102][187]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=26 +[2025.06.16-09.28.36:102][187]LogInit: FAudioDevice initialized with ID 26. +[2025.06.16-09.28.36:102][187]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=26 +[2025.06.16-09.28.36:102][187]LogAudio: Display: Audio Device (ID: 26) registered with world 'Dabaza'. +[2025.06.16-09.28.36:102][187]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.16-09.28.36:104][187]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.28.36:105][187]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.28.36 +[2025.06.16-09.28.36:106][187]LogWorld: Bringing up level for play took: 0.001346 +[2025.06.16-09.28.36:108][187]LogOnline: OSS: Created online subsystem instance for: :Context_36 +[2025.06.16-09.28.36:110][187]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.28.36:110][187]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.28.36:111][187]PIE: Server logged in +[2025.06.16-09.28.36:112][187]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-09.28.44:190][704]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.29.11:060][704]LogAutomationController: Ignoring very large delta of 30.36 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.29.11:061][704]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4368.941895 +[2025.06.16-09.29.12:951][705]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.29.12:951][705]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.29.13:631][708]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.29.13:631][708]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4371.178223, Update Interval: 312.933136 +[2025.06.16-09.29.14:788][787]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.29.14:788][787]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.29.14:789][787]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.29.14:789][787]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.29.14:789][787]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.29.14:792][787]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.29.14:796][787]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.29.14:815][787]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.29.14:816][787]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.16-09.29.14:816][787]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.16-09.29.14:818][787]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.16-09.29.14:823][787]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-09.29.14:850][788]LogPlayLevel: Display: Destroying online subsystem :Context_36 +[2025.06.16-09.29.26:891][941]LogHotReload: New module detected: UnrealEditor-ProjectFish-0006.dll +[2025.06.16-09.29.27:562][943]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-09.29.27:634][943]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-09.29.27:931][943]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-09.29.27:975][943]Display: HotReload took 0.4s. +[2025.06.16-09.29.27:975][943]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-09.29.30:124][950]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.29.30:131][950]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.29.30:131][950]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.29.30:134][950]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.368 ms (total: 35.027 ms) +[2025.06.16-09.29.30:134][950]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.29.30:134][950]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.29.30:136][950]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002141s) +[2025.06.16-09.29.30:136][950]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002290s) +[2025.06.16-09.29.30:189][950]LogUObjectHash: Compacting FUObjectHashTables data took 1.00ms +[2025.06.16-09.29.30:194][950]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.29.30:195][950]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.29.30:195][950]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.29.30:195][950]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.29.30:195][950]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.29.30:196][950]LogWorldPartition: Display: WorldPartition initialize took 1.090 ms (total: 182.497 ms) +[2025.06.16-09.29.30:196][950]LogPlayLevel: PIE: World Init took: (0.002653s) +[2025.06.16-09.29.30:197][950]LogAudio: Display: Creating Audio Device: Id: 27, Scope: Unique, Realtime: True +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.29.30:197][950]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.29.30:197][950]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.29.30:197][950]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.29.30:198][950]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.29.30:198][950]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.29.30:200][950]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.29.30:225][950]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.29.30:225][950]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.29.30:225][950]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.29.30:225][950]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.29.30:225][950]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=27 +[2025.06.16-09.29.30:225][950]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=27 +[2025.06.16-09.29.30:228][950]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=27 +[2025.06.16-09.29.30:228][950]LogInit: FAudioDevice initialized with ID 27. +[2025.06.16-09.29.30:228][950]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=27 +[2025.06.16-09.29.30:228][950]LogAudio: Display: Audio Device (ID: 27) registered with world 'Dabaza'. +[2025.06.16-09.29.30:229][950]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.16-09.29.30:231][950]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.29.30:232][950]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.29.30 +[2025.06.16-09.29.30:232][950]LogWorld: Bringing up level for play took: 0.001150 +[2025.06.16-09.29.30:234][950]LogOnline: OSS: Created online subsystem instance for: :Context_37 +[2025.06.16-09.29.30:235][950]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.29.30:235][950]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.29.30:237][950]PIE: Server logged in +[2025.06.16-09.29.30:238][950]PIE: Play in editor total start time 0.107 seconds. +[2025.06.16-09.29.34:794][461]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.29.38:793][941]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-09.29.39:794][ 61]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.16-09.29.40:938][192]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.29.40:938][192]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.29.40:939][192]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.29.40:939][192]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.29.40:939][192]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.29.40:941][192]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.29.40:945][192]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.29.40:964][192]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-09.29.40:968][192]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.16-09.29.40:968][192]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.16-09.29.40:970][192]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.16-09.29.40:973][192]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.29.40:984][192]LogUObjectHash: Compacting FUObjectHashTables data took 1.32ms +[2025.06.16-09.29.41:017][193]LogPlayLevel: Display: Destroying online subsystem :Context_37 +[2025.06.16-09.29.53:718][387]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.29.53:772][387]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.29.53:772][387]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.29.53:772][387]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.29.53:773][387]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.29.53:774][387]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills1ECDAAC444C72D739074CD963996F4AF.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.29.53:783][387]LogFileHelpers: InternalPromptForCheckoutAndSave took 64.403 ms (total: 1.84 sec) +[2025.06.16-09.29.53:833][387]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.29.53:833][387]LogContentValidation: Enabled validators: +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.29.53:833][387]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.29.53:833][387]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.30.44:252][258]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-09.30.44:795][303]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.30.44:849][303]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-09.30.44:849][303]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-09.30.44:849][303]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-09.30.44:863][303]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-09.30.44:863][303]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeEB76BA2747D593DF26E7888161C185A6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-09.30.44:873][303]LogFileHelpers: InternalPromptForCheckoutAndSave took 78.395 ms (total: 1.92 sec) +[2025.06.16-09.30.44:909][303]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.30.44:909][303]LogContentValidation: Enabled validators: +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.30.44:909][303]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.30.44:909][303]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-09.30.46:237][452]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.30.46:242][452]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.30.46:242][452]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.30.46:243][452]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.184 ms (total: 36.212 ms) +[2025.06.16-09.30.46:243][452]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.30.46:243][452]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.30.46:246][452]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002128s) +[2025.06.16-09.30.46:246][452]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002307s) +[2025.06.16-09.30.46:259][452]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-09.30.46:262][452]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.30.46:263][452]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.30.46:263][452]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.30.46:264][452]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.30.46:264][452]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.30.46:265][452]LogWorldPartition: Display: WorldPartition initialize took 1.120 ms (total: 183.618 ms) +[2025.06.16-09.30.46:265][452]LogPlayLevel: PIE: World Init took: (0.002464s) +[2025.06.16-09.30.46:265][452]LogAudio: Display: Creating Audio Device: Id: 28, Scope: Unique, Realtime: True +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.30.46:265][452]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.30.46:265][452]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.30.46:265][452]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.30.46:265][452]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.30.46:267][452]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.30.46:269][452]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.30.46:294][452]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.30.46:294][452]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.30.46:294][452]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.30.46:294][452]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.30.46:295][452]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=28 +[2025.06.16-09.30.46:295][452]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=28 +[2025.06.16-09.30.46:298][452]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=28 +[2025.06.16-09.30.46:298][452]LogInit: FAudioDevice initialized with ID 28. +[2025.06.16-09.30.46:298][452]LogAudio: Display: Audio Device (ID: 28) registered with world 'Dabaza'. +[2025.06.16-09.30.46:298][452]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=28 +[2025.06.16-09.30.46:298][452]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.16-09.30.46:300][452]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.30.46:301][452]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.30.46 +[2025.06.16-09.30.46:301][452]LogWorld: Bringing up level for play took: 0.001149 +[2025.06.16-09.30.46:303][452]LogOnline: OSS: Created online subsystem instance for: :Context_38 +[2025.06.16-09.30.46:305][452]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.30.46:305][452]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.30.46:306][452]PIE: Server logged in +[2025.06.16-09.30.46:307][452]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-09.30.49:728][849]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.30.49:728][849]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.30.49:728][849]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.30.49:729][849]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.30.49:729][849]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.30.49:731][849]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.30.49:736][849]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.30.49:750][849]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-09.30.49:750][849]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.16-09.30.49:750][849]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.16-09.30.49:751][849]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.16-09.30.49:756][849]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.30.49:757][849]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.30.49:809][853]LogPlayLevel: Display: Destroying online subsystem :Context_38 +[2025.06.16-09.30.53:635][290]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.30.53:685][290]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.30.53:685][290]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.30.53:685][290]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.30.53:687][290]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.30.53:687][290]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills4866AE4A4C197251F73873B5D31981CD.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.30.53:698][290]LogFileHelpers: InternalPromptForCheckoutAndSave took 61.577 ms (total: 1.98 sec) +[2025.06.16-09.30.53:750][290]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.30.53:750][290]LogContentValidation: Enabled validators: +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.30.53:750][290]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.30.53:752][290]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.30.54:760][395]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.30.54:765][395]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.30.54:765][395]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.30.54:766][395]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.262 ms (total: 37.474 ms) +[2025.06.16-09.30.54:767][395]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.30.54:767][395]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.30.54:769][395]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002209s) +[2025.06.16-09.30.54:769][395]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002377s) +[2025.06.16-09.30.54:783][395]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-09.30.54:785][395]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.30.54:786][395]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.30.54:786][395]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.30.54:786][395]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.30.54:786][395]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.30.54:787][395]LogWorldPartition: Display: WorldPartition initialize took 986 us (total: 184.605 ms) +[2025.06.16-09.30.54:787][395]LogPlayLevel: PIE: World Init took: (0.002307s) +[2025.06.16-09.30.54:788][395]LogAudio: Display: Creating Audio Device: Id: 29, Scope: Unique, Realtime: True +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.30.54:788][395]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.30.54:788][395]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.30.54:788][395]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.30.54:788][395]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.30.54:788][395]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.30.54:791][395]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.30.54:816][395]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.30.54:816][395]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.30.54:816][395]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.30.54:816][395]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.30.54:817][395]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=29 +[2025.06.16-09.30.54:817][395]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=29 +[2025.06.16-09.30.54:819][395]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=29 +[2025.06.16-09.30.54:819][395]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=29 +[2025.06.16-09.30.54:819][395]LogInit: FAudioDevice initialized with ID 29. +[2025.06.16-09.30.54:819][395]LogAudio: Display: Audio Device (ID: 29) registered with world 'Dabaza'. +[2025.06.16-09.30.54:819][395]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.16-09.30.54:821][395]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.30.54:823][395]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.30.54 +[2025.06.16-09.30.54:823][395]LogWorld: Bringing up level for play took: 0.001250 +[2025.06.16-09.30.54:825][395]LogOnline: OSS: Created online subsystem instance for: :Context_39 +[2025.06.16-09.30.54:827][395]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.30.54:827][395]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.30.54:827][395]PIE: Server logged in +[2025.06.16-09.30.54:829][395]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-09.30.59:759][978]LogTemp: 针对目标 |Skill_2 释放技能效果Charge +[2025.06.16-09.31.01:568][187]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.31.01:568][187]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.31.01:568][187]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.31.01:568][187]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.31.01:568][187]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.31.01:572][187]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.31.01:576][187]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.31.01:590][187]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.31.01:590][187]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.16-09.31.01:591][187]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.16-09.31.01:593][187]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.16-09.31.01:598][187]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-09.31.01:636][189]LogPlayLevel: Display: Destroying online subsystem :Context_39 +[2025.06.16-09.31.07:106][823]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.31.07:165][823]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.31.07:166][823]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.31.07:166][823]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.31.07:167][823]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.31.07:168][823]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills4FF0470044F22F1803BCB7818E49DA4B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.31.07:177][823]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.402 ms (total: 2.06 sec) +[2025.06.16-09.31.07:228][823]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.31.07:228][823]LogContentValidation: Enabled validators: +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.31.07:228][823]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.31.07:228][823]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.31.22:207][ 40]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.31.39:834][447]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.32.02:384][521]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.32.29:196][706]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffce3fc085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd7f61b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8089f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd82bb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd824dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7e7b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd7ef1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccef7c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf635881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.32.36:777][582]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.32.36:838][582]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.32.36:838][582]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.32.36:838][582]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.32.36:853][582]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.32.36:854][582]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills75C15DBD43367121F407309D8FC0B06F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.32.36:864][582]LogFileHelpers: InternalPromptForCheckoutAndSave took 87.449 ms (total: 2.14 sec) +[2025.06.16-09.32.36:918][582]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.32.36:919][582]LogContentValidation: Enabled validators: +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.32.36:919][582]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.32.36:919][582]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.32.37:237][619]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.32.37:287][619]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.32.37:287][619]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.32.37:287][619]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.32.37:288][619]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.32.37:289][619]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills376CA00F4211D6457E529E90A7A55A1E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.32.37:298][619]LogFileHelpers: InternalPromptForCheckoutAndSave took 61.548 ms (total: 2.21 sec) +[2025.06.16-09.32.37:354][619]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.32.37:354][619]LogContentValidation: Enabled validators: +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.32.37:354][619]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.32.37:354][619]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.32.39:634][803]LogSlate: External Image Picker: DecompressImage failed +[2025.06.16-09.32.39:790][804]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_25 +[2025.06.16-09.33.15:326][435]LogStats: ConstructGameplayTagTree GameplayTag tables after adding new tag - 0.000 s +[2025.06.16-09.33.15:362][435]LogSlate: Window 'Rename Gameplay Tag' being destroyed +[2025.06.16-09.33.15:467][436]LogAutomationController: Ignoring very large delta of 4.87 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.33.16:795][539]LogSlate: Window 'Gameplay Tag Manager' being destroyed diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-11.09.13.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-11.09.13.log new file mode 100644 index 0000000..ba488d3 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-11.09.13.log @@ -0,0 +1,56892 @@ +Log file open, 06/16/25 17:33:38 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=35356) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.643127 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-24043E1D45A941CA94F204BCCCBFB8AF + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogConfig: Display: Loading Mac ini files took 0.07 seconds +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading VulkanPC ini files took 0.07 seconds +LogConfig: Display: Loading Android ini files took 0.07 seconds +LogConfig: Display: Loading IOS ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.08 seconds +LogConfig: Display: Loading VisionOS ini files took 0.08 seconds +LogConfig: Display: Loading Linux ini files took 0.08 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.08 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.3 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin ConcertSyncCore +LogPluginManager: Mounting Engine plugin ConcertSyncClient +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.52ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.17ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.17ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.17ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-09.33.39:117][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-09.33.39:117][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-09.33.39:117][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-09.33.39:117][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-09.33.39:117][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-09.33.39:118][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-09.33.39:118][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-09.33.39:118][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-09.33.39:119][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-09.33.39:119][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-09.33.39:121][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-09.33.39:125][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-09.33.39:125][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-09.33.39:126][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-09.33.39:127][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-09.33.39:128][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-09.33.39:129][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-09.33.39:130][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-09.33.39:131][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-09.33.39:132][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-09.33.39:134][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-09.33.39:135][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-09.33.39:137][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-09.33.39:137][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-09.33.39:137][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-09.33.39:148][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-09.33.39:148][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-09.33.39:362][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-09.33.39:362][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-09.33.39:362][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-09.33.39:362][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-09.33.39:363][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-09.33.39:376][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-09.33.39:376][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-09.33.39:376][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-09.33.39:485][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-09.33.39:485][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-09.33.39:485][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-09.33.39:486][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-09.33.39:486][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-09.33.39:595][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-09.33.39:595][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-09.33.39:595][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-09.33.39:597][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-09.33.39:597][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-09.33.39:597][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-09.33.39:597][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-09.33.39:597][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-09.33.39:597][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-09.33.39:597][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-09.33.39:597][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-09.33.39:597][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-09.33.39:597][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-09.33.39:597][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-09.33.39:597][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-09.33.39:610][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-09.33.39:610][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-09.33.39:610][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-09.33.39:610][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-09.33.39:610][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-09.33.39:610][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-09.33.39:610][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-09.33.39:610][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-09.33.39:610][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-09.33.39:610][ 0]LogInit: Computer: T +[2025.06.16-09.33.39:610][ 0]LogInit: User: 99714 +[2025.06.16-09.33.39:610][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-09.33.39:610][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-09.33.42:017][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-09.33.42:017][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-09.33.42:017][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-09.33.42:017][ 0]LogMemory: Process Physical Memory: 617.82 MB used, 631.09 MB peak +[2025.06.16-09.33.42:017][ 0]LogMemory: Process Virtual Memory: 665.07 MB used, 665.07 MB peak +[2025.06.16-09.33.42:017][ 0]LogMemory: Physical Memory: 22148.77 MB used, 10360.54 MB free, 32509.30 MB total +[2025.06.16-09.33.42:017][ 0]LogMemory: Virtual Memory: 39952.34 MB used, 13036.96 MB free, 52989.30 MB total +[2025.06.16-09.33.42:017][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-09.33.42:024][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-09.33.42:043][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-09.33.42:043][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-09.33.42:045][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-09.33.42:045][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-09.33.42:047][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-09.33.42:346][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-09.33.42:346][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-09.33.42:346][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-09.33.42:346][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-09.33.42:346][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-09.33.42:364][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-09.33.42:364][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-09.33.42:547][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-09.33.42:548][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-09.33.42:548][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-09.33.42:548][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-09.33.42:548][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-09.33.42:548][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-09.33.42:549][ 0]LogWindows: Attached monitors: +[2025.06.16-09.33.42:549][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-09.33.42:549][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-09.33.42:549][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-09.33.42:549][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-09.33.42:549][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-09.33.42:549][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-09.33.42:549][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-09.33.42:549][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-09.33.42:549][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-09.33.42:550][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-09.33.42:629][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-09.33.42:629][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-09.33.42:685][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-09.33.42:685][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-09.33.42:685][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-09.33.42:685][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-09.33.42:685][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-09.33.42:685][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-09.33.42:685][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-09.33.42:686][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-09.33.42:745][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B8EFFC52300) +[2025.06.16-09.33.42:745][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B8EFFC52580) +[2025.06.16-09.33.42:746][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B8EFFC52800) +[2025.06.16-09.33.42:746][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-09.33.42:746][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-09.33.42:747][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-09.33.42:747][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-09.33.42:747][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-09.33.42:755][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-09.33.42:757][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-09.33.42:775][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-09.33.42:775][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-09.33.42:831][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-09.33.42:831][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-09.33.42:831][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-09.33.42:831][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-09.33.42:831][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-09.33.42:831][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-09.33.42:831][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-09.33.42:836][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-09.33.42:839][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-09.33.42:879][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-09.33.42:879][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-09.33.42:879][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-09.33.42:879][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-09.33.42:879][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-09.33.42:880][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-09.33.42:880][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-09.33.42:880][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-09.33.42:880][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-09.33.42:880][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-09.33.42:910][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-09.33.42:910][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-09.33.42:940][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-09.33.42:940][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-09.33.42:940][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-09.33.42:940][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-09.33.42:970][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-09.33.42:970][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-09.33.42:970][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-09.33.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-09.33.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-09.33.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-09.33.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-09.33.43:028][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-09.33.43:028][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-09.33.43:065][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-09.33.43:065][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-09.33.43:065][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-09.33.43:065][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-09.33.43:065][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-09.33.43:218][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-09.33.43:227][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-09.33.43:228][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-09.33.43:228][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-09.33.43:228][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-09.33.43:233][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-09.33.43:233][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-09.33.43:233][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-09.33.43:233][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-09.33.43:233][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-09.33.43:286][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-09.33.43:286][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-09.33.43:286][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-09.33.43:286][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-09.33.43:287][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-09.33.43:287][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-09.33.43:287][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-09.33.43:287][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 42244 --child-id Zen_42244_Startup' +[2025.06.16-09.33.43:522][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-09.33.43:522][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.236 seconds +[2025.06.16-09.33.43:523][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-09.33.43:533][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-09.33.43:533][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.03ms. RandomReadSpeed=274.51MBs, RandomWriteSpeed=174.87MBs. Assigned SpeedClass 'Local' +[2025.06.16-09.33.43:534][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-09.33.43:534][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-09.33.43:534][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-09.33.43:534][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-09.33.43:534][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-09.33.43:535][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-09.33.43:535][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-09.33.43:535][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/42244/). +[2025.06.16-09.33.43:535][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/3E656EC445A6D2A75CF9EEB6839BD0AC/'. +[2025.06.16-09.33.43:535][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-09.33.43:535][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-09.33.43:536][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-09.33.43:537][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-09.33.43:781][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-09.33.44:685][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-09.33.44:700][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-09.33.44:702][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-09.33.44:702][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-09.33.44:704][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-09.33.44:704][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-09.33.44:704][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-09.33.44:704][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-09.33.44:733][ 0]LogAssetRegistry: FAssetRegistry took 0.0028 seconds to start up +[2025.06.16-09.33.44:735][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-09.33.44:738][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-09.33.44:885][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-09.33.44:887][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-09.33.44:887][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-09.33.44:887][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-09.33.44:900][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-09.33.44:900][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-09.33.44:919][ 0]LogDeviceProfileManager: Active device profile: [00000B8F1D206E00][00000B8F01DEA000 66] WindowsEditor +[2025.06.16-09.33.44:920][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-09.33.44:920][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-09.33.44:928][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-09.33.44:928][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-09.33.44:960][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:960][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-09.33.44:960][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.44:960][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:960][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-09.33.44:961][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.44:961][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:961][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-09.33.44:961][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:962][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-09.33.44:963][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:964][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:964][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-09.33.44:964][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:964][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:965][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-09.33.44:967][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-09.33.44:968][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-09.33.44:968][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.44:968][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-09.33.44:968][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-09.33.44:968][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-09.33.45:191][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-09.33.45:191][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-09.33.45:191][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-09.33.45:191][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-09.33.45:191][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-09.33.45:447][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.16-09.33.45:464][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.56ms +[2025.06.16-09.33.45:474][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-09.33.45:475][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-09.33.45:630][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-09.33.45:631][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-09.33.45:676][ 0]LogSlate: Border +[2025.06.16-09.33.45:676][ 0]LogSlate: BreadcrumbButton +[2025.06.16-09.33.45:676][ 0]LogSlate: Brushes.Title +[2025.06.16-09.33.45:676][ 0]LogSlate: Default +[2025.06.16-09.33.45:676][ 0]LogSlate: Icons.Save +[2025.06.16-09.33.45:676][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-09.33.45:676][ 0]LogSlate: ListView +[2025.06.16-09.33.45:676][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-09.33.45:676][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-09.33.45:676][ 0]LogSlate: TableView.DarkRow +[2025.06.16-09.33.45:676][ 0]LogSlate: TableView.Row +[2025.06.16-09.33.45:677][ 0]LogSlate: TreeView +[2025.06.16-09.33.45:764][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-09.33.45:863][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-09.33.45:864][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.455 ms +[2025.06.16-09.33.45:881][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.16-09.33.45:928][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-09.33.45:928][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-09.33.45:929][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-09.33.45:929][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-09.33.46:080][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-09.33.46:758][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-09.33.46:758][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-09.33.46:758][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-09.33.46:758][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-09.33.46:857][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-09.33.46:866][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-09.33.46:866][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-09.33.46:867][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:60888'. +[2025.06.16-09.33.46:871][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-09.33.47:046][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-09.33.47:046][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-09.33.47:059][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-09.33.47:408][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 71EF6108A8A94349800000000000F300 | Instance: 38914F5846919B95C28D98ABA9A39454 (T-42244). +[2025.06.16-09.33.48:128][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-09.33.48:915][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-09.33.48:915][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-09.33.48:941][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-09.33.49:061][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.59ms +[2025.06.16-09.33.49:080][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.36ms +[2025.06.16-09.33.49:401][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-09.33.49:449][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-09.33.49:449][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-09.33.49:618][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-09.33.49:618][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-09.33.49:620][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-09.33.49:621][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-09.33.49:621][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-09.33.49:622][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-09.33.49:623][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-09.33.49:624][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-09.33.49:624][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-09.33.49:624][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-09.33.49:625][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-09.33.49:626][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-09.33.49:626][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-09.33.49:627][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-09.33.49:627][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-09.33.49:628][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-09.33.49:628][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-09.33.49:629][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-09.33.49:630][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-09.33.49:631][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-09.33.49:631][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-09.33.49:632][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-09.33.49:634][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-09.33.49:634][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-09.33.49:635][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-09.33.49:636][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-09.33.49:637][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-09.33.49:638][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-09.33.49:638][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-09.33.49:639][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-09.33.49:639][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-09.33.49:640][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-09.33.49:640][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-09.33.49:642][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-09.33.49:643][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-09.33.49:898][ 0]SourceControl: Revision control is disabled +[2025.06.16-09.33.49:958][ 0]SourceControl: Revision control is disabled +[2025.06.16-09.33.50:060][ 0]LogCollectionManager: Loaded 0 collections in 0.000661 seconds +[2025.06.16-09.33.50:062][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-09.33.50:063][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-09.33.50:066][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-09.33.50:156][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-09.33.50:156][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-09.33.50:158][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-09.33.50:159][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-09.33.50:159][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-09.33.50:159][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-09.33.50:186][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-09.33.50:186][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-09.33.50:199][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T09:33:50.198Z using C +[2025.06.16-09.33.50:199][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-09.33.50:199][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-09.33.50:200][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-09.33.50:204][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-09.33.50:205][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-09.33.50:205][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-09.33.50:205][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000204 +[2025.06.16-09.33.50:205][ 0]LogFab: Display: Logging in using persist +[2025.06.16-09.33.50:242][ 0]LogUObjectArray: 52515 objects as part of root set at end of initial load. +[2025.06.16-09.33.50:242][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-09.33.50:255][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-09.33.50:255][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-09.33.50:334][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:334][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:335][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:335][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:335][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:335][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-09.33.50:347][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:364][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:366][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-09.33.50:367][ 0]LogEngine: Initializing Engine... +[2025.06.16-09.33.50:370][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-09.33.50:370][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-09.33.50:437][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-09.33.50:457][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-09.33.50:473][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-09.33.50:473][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-09.33.50:498][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-09.33.50:508][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-09.33.50:528][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-09.33.50:529][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-09.33.50:529][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-09.33.50:529][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-09.33.50:529][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.33.50:529][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.33.50:530][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.33.50:530][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.33.50:530][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.33.50:530][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.33.50:530][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.33.50:530][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.33.50:530][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.33.50:530][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.33.50:530][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.33.50:549][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.33.50:591][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.33.50:591][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.33.50:592][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.33.50:592][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.33.50:593][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-09.33.50:593][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-09.33.50:595][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-09.33.50:595][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-09.33.50:595][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-09.33.50:595][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-09.33.50:595][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-09.33.50:606][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-09.33.50:609][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-09.33.50:609][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-09.33.50:630][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-09.33.50:748][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.50ms +[2025.06.16-09.33.50:749][ 0]LocalizationService: Localization service is disabled +[2025.06.16-09.33.50:773][ 0]LogTimingProfiler: Initialize +[2025.06.16-09.33.50:773][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-09.33.50:773][ 0]LoadingProfiler: Initialize +[2025.06.16-09.33.50:773][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-09.33.50:774][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-09.33.50:774][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-09.33.50:774][ 0]LogMemoryProfiler: Initialize +[2025.06.16-09.33.50:774][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-09.33.51:033][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-09.33.51:069][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-09.33.51:802][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-09.33.51:812][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-09.33.51:862][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-09.33.51:863][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-09.33.51:939][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-09.33.51:939][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-09.33.52:092][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-09.33.52:141][ 0]LogEditorDataStorage: Initializing +[2025.06.16-09.33.52:142][ 0]LogEditorDataStorage: Initialized +[2025.06.16-09.33.52:174][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-09.33.52:175][ 0]SourceControl: Revision control is disabled +[2025.06.16-09.33.52:175][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 14.657 +[2025.06.16-09.33.52:177][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-09.33.52:178][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.33.52:178][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.33.52:182][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-09.33.52:196][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-09.33.52:896][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-09.33.54:703][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-09.33.54:718][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.59s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-09.33.54:730][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-09.33.54:732][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms +[2025.06.16-09.33.54:739][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-09.33.54:739][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-09.33.54:741][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-09.33.54:741][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.33.54:741][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.33.54:801][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-09.33.54:811][ 0]LogWorldPartition: Display: WorldPartition initialize took 70.282 ms +[2025.06.16-09.33.54:820][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-09.33.54:830][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms +[2025.06.16-09.33.54:830][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-09.33.54:831][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.454ms to complete. +[2025.06.16-09.33.54:837][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 17.317 +[2025.06.16-09.33.54:988][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-09.33.55:039][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.33.55:070][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.33.55:100][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.33.55:131][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.33.55:139][ 0]LogSlate: Took 0.000628 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-09.33.55:159][ 0]LogSlate: Took 0.000862 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-09.33.55:162][ 0]LogSlate: Took 0.003560 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-09.33.55:233][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:234][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-09.33.55:235][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:235][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-09.33.55:236][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:238][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:238][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:239][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:240][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:241][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-09.33.55:242][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:242][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:243][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:244][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-09.33.55:244][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:245][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:246][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:246][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:246][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-09.33.55:247][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-09.33.55:394][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:395][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:395][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:395][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:395][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:396][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:396][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:397][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-09.33.55:526][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-09.33.55:531][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-09.33.55:531][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-09.33.55:531][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-09.33.55:566][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-09.33.55:566][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-09.33.55:567][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-09.33.55:567][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-09.33.55:567][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-09.33.55:595][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-09.33.55:595][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-09.33.55:623][ 0]LogSlate: Took 0.000838 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-09.33.55:777][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 92.86 ms. Compile time 26.78 ms, link time 65.96 ms. +[2025.06.16-09.33.55:912][ 0]LogStall: Startup... +[2025.06.16-09.33.55:914][ 0]LogStall: Startup complete. +[2025.06.16-09.33.55:937][ 0]LogLoad: (Engine Initialization) Total time: 18.42 seconds +[2025.06.16-09.33.56:071][ 0]LogAssetRegistry: AssetRegistryGather time 0.1012s: AssetDataDiscovery 0.0565s, AssetDataGather 0.0086s, StoreResults 0.0361s. Wall time 11.3400s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7502. NumUncachedFiles 5. + BackgroundTickInterruptions 0. +[2025.06.16-09.33.56:090][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-09.33.56:090][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-09.33.56:092][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-09.33.56:092][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-09.33.56:156][ 0]LogAutomationController: Ignoring very large delta of 16811363.50 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.33.56:156][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.33.56:158][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-09.33.56:201][ 0]LogPython: registering + +[2025.06.16-09.33.56:203][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 44.813 ms +[2025.06.16-09.33.56:268][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.177649 seconds (Found 7482 uncontrolled assets) +[2025.06.16-09.33.57:781][ 6]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.256421 +[2025.06.16-09.33.57:781][ 6]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-09.33.57:782][ 6]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.575424 +[2025.06.16-09.33.58:091][ 41]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-09.33.58:347][ 62]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.133590 +[2025.06.16-09.33.58:348][ 62]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-09.33.58:348][ 62]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.133590, Update Interval: 335.928223 +[2025.06.16-09.33.58:622][ 95]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.16-11.33.58 Remaining: 7200.53] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15525655.57] State: Valid +[2025.06.16-09.33.58:631][ 96]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-09.33.58:897][128]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-09.33.58:897][128]LogFab: Display: User logged in +[2025.06.16-09.33.58:897][128]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-09.33.59:146][152]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-gsV4KMuqFkGoSCuPvkpowQ-lXthC9ouCkuX9Re9SuRAaQ] +[2025.06.16-09.33.59:461][186]LogSlate: Took 0.014254 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-09.34.00:394][293]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-09.34.00:395][293]LogAssetEditorSubsystem: Opening Asset editor for DataTable /Game/DataTable/PawnSkills.PawnSkills +[2025.06.16-09.34.00:503][293]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.34.08:354][865]LogSlate: Window 'PawnSkills' being destroyed +[2025.06.16-09.34.15:329][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-09.34.15:330][672]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-09.34.15:472][672]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.34.15:473][672]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-09.34.15:473][672]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.34.15:474][672]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.34.15:480][672]LogWorldPartition: Display: WorldPartition initialize took 7.168 ms (total: 77.450 ms) +[2025.06.16-09.34.15:485][672]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.16-09.34.15:485][672]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-09.34.15:531][672]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.34.15:532][672]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.34.15:532][672]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.16-09.34.15:547][672]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-09.34.15:549][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms +[2025.06.16-09.34.15:550][672]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.34.15:550][672]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.34.15:550][672]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-09.34.15:558][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms +[2025.06.16-09.34.15:566][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms +[2025.06.16-09.34.15:579][672]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.16-09.34.15:579][672]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.34.15:580][672]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-09.34.15:580][672]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.34.15:580][672]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.34.15:587][672]LogWorldPartition: Display: WorldPartition initialize took 6.378 ms (total: 83.828 ms) +[2025.06.16-09.34.15:612][672]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-09.34.15:625][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-09.34.15:630][672]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-09.34.15:631][672]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.49ms to complete. +[2025.06.16-09.34.15:701][674]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.34.18:497][991]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.16-09.34.18:499][991]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-09.34.18:519][991]LogStreaming: Display: FlushAsyncLoading(408): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-09.34.19:287][991]LogSlate: Took 0.013644 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-09.34.19:290][991]LogSlate: Took 0.000763 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-09.34.19:316][991]LogSlate: Took 0.000454 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-09.34.28:906][ 82]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.34.29:347][128]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.34.29:959][198]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-09.34.41:391][515]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.34.41:968][550]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.34.42:010][550]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-09.34.42:010][550]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-09.34.42:010][550]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-09.34.42:023][550]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-09.34.42:023][550]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode2F2D4ECF4239108E6E6CEA9113E477EE.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-09.34.42:033][550]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.988 ms +[2025.06.16-09.34.42:088][550]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.34.42:088][550]LogContentValidation: Enabled validators: +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.34.42:089][550]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.34.42:089][550]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-09.34.44:099][776]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.34.44:104][776]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.34.44:104][776]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.34.44:106][776]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.299 ms +[2025.06.16-09.34.44:106][776]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.34.44:109][776]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.16-09.34.44:109][776]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.16-09.34.44:110][776]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.34.44:113][776]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003598s) +[2025.06.16-09.34.44:113][776]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003777s) +[2025.06.16-09.34.44:127][776]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.34.44:128][776]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.34.44:129][776]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.34.44:129][776]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.34.44:129][776]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.34.44:129][776]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.34.44:130][776]LogWorldPartition: Display: WorldPartition initialize took 1.099 ms (total: 84.927 ms) +[2025.06.16-09.34.44:130][776]LogPlayLevel: PIE: World Init took: (0.002423s) +[2025.06.16-09.34.44:130][776]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.16-09.34.44:130][776]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.34.44:132][776]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.34.44:132][776]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.34.44:132][776]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.34.44:132][776]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.34.44:132][776]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.34.44:134][776]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.34.44:158][776]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.34.44:158][776]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.34.44:160][776]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.34.44:160][776]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.34.44:160][776]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.16-09.34.44:160][776]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.16-09.34.44:162][776]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.16-09.34.44:163][776]LogInit: FAudioDevice initialized with ID 2. +[2025.06.16-09.34.44:163][776]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.16-09.34.44:163][776]LogAudio: Display: Audio Device (ID: 2) registered with world 'Dabaza'. +[2025.06.16-09.34.44:163][776]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-09.34.44:165][776]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.34.44:166][776]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.34.44 +[2025.06.16-09.34.44:166][776]LogWorld: Bringing up level for play took: 0.001331 +[2025.06.16-09.34.44:168][776]LogOnline: OSS: Created online subsystem instance for: :Context_2 +[2025.06.16-09.34.44:171][776]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.34.44:171][776]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.34.44:172][776]PIE: Server logged in +[2025.06.16-09.34.44:173][776]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-09.34.47:508][153]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.34.47:509][153]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.34.47:509][153]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.34.47:509][153]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.34.47:509][153]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.34.47:511][153]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.34.47:514][153]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.34.47:528][153]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.34.47:528][153]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-09.34.47:528][153]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-09.34.47:530][153]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-09.34.47:534][153]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-09.34.47:571][155]LogPlayLevel: Display: Destroying online subsystem :Context_2 +[2025.06.16-09.34.59:996][622]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.35.00:001][622]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.35.00:001][622]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.35.00:003][622]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.487 ms (total: 2.787 ms) +[2025.06.16-09.35.00:003][622]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.35.00:003][622]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.00:006][622]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002637s) +[2025.06.16-09.35.00:006][622]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002886s) +[2025.06.16-09.35.00:022][622]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-09.35.00:023][622]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.35.00:025][622]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.35.00:025][622]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.35.00:025][622]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.35.00:025][622]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.35.00:025][622]LogWorldPartition: Display: WorldPartition initialize took 1.153 ms (total: 86.080 ms) +[2025.06.16-09.35.00:027][622]LogPlayLevel: PIE: World Init took: (0.002623s) +[2025.06.16-09.35.00:027][622]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.16-09.35.00:027][622]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.35.00:027][622]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.35.00:027][622]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.35.00:028][622]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.35.00:028][622]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.35.00:028][622]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.35.00:028][622]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.35.00:028][622]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.35.00:028][622]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.35.00:028][622]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.35.00:028][622]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.35.00:030][622]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.35.00:061][622]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.35.00:062][622]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.35.00:062][622]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.35.00:062][622]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.35.00:062][622]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.16-09.35.00:062][622]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.16-09.35.00:065][622]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.16-09.35.00:065][622]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.16-09.35.00:065][622]LogInit: FAudioDevice initialized with ID 3. +[2025.06.16-09.35.00:065][622]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.16-09.35.00:065][622]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-09.35.00:066][622]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.35.00:067][622]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.35.00 +[2025.06.16-09.35.00:068][622]LogWorld: Bringing up level for play took: 0.001138 +[2025.06.16-09.35.00:070][622]LogOnline: OSS: Created online subsystem instance for: :Context_3 +[2025.06.16-09.35.00:072][622]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.35.00:072][622]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.35.00:072][622]PIE: Server logged in +[2025.06.16-09.35.00:073][622]PIE: Play in editor total start time 0.072 seconds. +[2025.06.16-09.35.12:588][111]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.12:588][111]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.12:589][111]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.35.12:589][111]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.12:589][111]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.35.12:595][111]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.35.12:599][111]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.12:612][111]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.12:612][111]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-09.35.12:612][111]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-09.35.12:615][111]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-09.35.12:620][111]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.16-09.35.12:668][114]LogPlayLevel: Display: Destroying online subsystem :Context_3 +[2025.06.16-09.35.24:899][539]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.35.24:904][539]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.35.24:904][539]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.35.24:905][539]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.164 ms (total: 3.952 ms) +[2025.06.16-09.35.24:905][539]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.35.24:905][539]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.24:908][539]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002230s) +[2025.06.16-09.35.24:908][539]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002389s) +[2025.06.16-09.35.24:922][539]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-09.35.24:923][539]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.35.24:925][539]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.35.24:925][539]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.35.24:925][539]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.35.24:925][539]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.35.24:926][539]LogWorldPartition: Display: WorldPartition initialize took 965 us (total: 87.046 ms) +[2025.06.16-09.35.24:926][539]LogPlayLevel: PIE: World Init took: (0.002325s) +[2025.06.16-09.35.24:926][539]LogAudio: Display: Creating Audio Device: Id: 4, Scope: Unique, Realtime: True +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.35.24:926][539]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.35.24:926][539]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.35.24:926][539]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.35.24:927][539]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.35.24:927][539]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.35.24:928][539]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.35.24:953][539]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.35.24:953][539]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.35.24:953][539]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.35.24:953][539]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.35.24:954][539]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=4 +[2025.06.16-09.35.24:954][539]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=4 +[2025.06.16-09.35.24:955][539]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=4 +[2025.06.16-09.35.24:957][539]LogInit: FAudioDevice initialized with ID 4. +[2025.06.16-09.35.24:957][539]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=4 +[2025.06.16-09.35.24:957][539]LogAudio: Display: Audio Device (ID: 4) registered with world 'Dabaza'. +[2025.06.16-09.35.24:957][539]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-09.35.24:959][539]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.35.24:960][539]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.35.24 +[2025.06.16-09.35.24:960][539]LogWorld: Bringing up level for play took: 0.001128 +[2025.06.16-09.35.24:962][539]LogOnline: OSS: Created online subsystem instance for: :Context_4 +[2025.06.16-09.35.24:964][539]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.35.24:964][539]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.35.24:964][539]PIE: Server logged in +[2025.06.16-09.35.24:965][539]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-09.35.32:893][482]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.35.34:892][722]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.35.40:896][441]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.35.40:896][441]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-09.35.42:188][590]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.42:188][590]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.42:190][590]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.35.42:190][590]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.42:191][590]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.35.42:196][590]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.35.42:199][590]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.42:218][590]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.42:218][590]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-09.35.42:218][590]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-09.35.42:220][590]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-09.35.42:225][590]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-09.35.42:253][591]LogPlayLevel: Display: Destroying online subsystem :Context_4 +[2025.06.16-09.35.44:480][854]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.35.44:485][854]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.35.44:485][854]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.35.44:486][854]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.172 ms (total: 5.124 ms) +[2025.06.16-09.35.44:486][854]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.35.44:487][854]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.44:489][854]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002143s) +[2025.06.16-09.35.44:489][854]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002286s) +[2025.06.16-09.35.44:500][854]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-09.35.44:501][854]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.35.44:502][854]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.35.44:502][854]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.35.44:504][854]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.35.44:504][854]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.35.44:504][854]LogWorldPartition: Display: WorldPartition initialize took 1.041 ms (total: 88.087 ms) +[2025.06.16-09.35.44:505][854]LogPlayLevel: PIE: World Init took: (0.002521s) +[2025.06.16-09.35.44:505][854]LogAudio: Display: Creating Audio Device: Id: 5, Scope: Unique, Realtime: True +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.35.44:505][854]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.35.44:505][854]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.35.44:505][854]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.35.44:505][854]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.35.44:505][854]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.35.44:507][854]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.35.44:533][854]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.35.44:533][854]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.35.44:533][854]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.35.44:533][854]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.35.44:533][854]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=5 +[2025.06.16-09.35.44:533][854]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=5 +[2025.06.16-09.35.44:535][854]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=5 +[2025.06.16-09.35.44:535][854]LogInit: FAudioDevice initialized with ID 5. +[2025.06.16-09.35.44:535][854]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=5 +[2025.06.16-09.35.44:535][854]LogAudio: Display: Audio Device (ID: 5) registered with world 'Dabaza'. +[2025.06.16-09.35.44:535][854]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-09.35.44:538][854]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.35.44:539][854]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.35.44 +[2025.06.16-09.35.44:539][854]LogWorld: Bringing up level for play took: 0.001189 +[2025.06.16-09.35.44:541][854]LogOnline: OSS: Created online subsystem instance for: :Context_5 +[2025.06.16-09.35.44:543][854]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.35.44:544][854]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.35.44:544][854]PIE: Server logged in +[2025.06.16-09.35.44:545][854]PIE: Play in editor total start time 0.06 seconds. +[2025.06.16-09.35.45:837][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-09.35.52:480][797]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.35.54:088][981]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.54:088][981]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.35.54:088][981]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.35.54:088][981]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.54:090][981]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.35.54:092][981]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.35.54:095][981]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.35.54:110][981]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.35.54:110][981]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-09.35.54:110][981]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-09.35.54:112][981]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-09.35.54:117][981]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.35.54:152][983]LogPlayLevel: Display: Destroying online subsystem :Context_5 +[2025.06.16-09.36.19:289][954]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.36.19:353][954]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.36.19:353][954]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.36.19:353][954]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.36.19:355][954]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.36.19:355][954]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsD5E8C2B1442282FFA40F8AA5526C0CF6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.36.19:366][954]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.318 ms (total: 142.307 ms) +[2025.06.16-09.36.19:418][954]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.36.19:418][954]LogContentValidation: Enabled validators: +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.36.19:418][954]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.36.19:418][954]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.36.20:746][101]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.36.20:751][101]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.36.20:751][101]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.36.20:752][101]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.169 ms (total: 6.294 ms) +[2025.06.16-09.36.20:752][101]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.36.20:752][101]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.36.20:755][101]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002319s) +[2025.06.16-09.36.20:755][101]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002485s) +[2025.06.16-09.36.20:768][101]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-09.36.20:769][101]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.36.20:771][101]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.36.20:771][101]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.36.20:771][101]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.36.20:771][101]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.36.20:772][101]LogWorldPartition: Display: WorldPartition initialize took 1.157 ms (total: 89.245 ms) +[2025.06.16-09.36.20:772][101]LogPlayLevel: PIE: World Init took: (0.002543s) +[2025.06.16-09.36.20:772][101]LogAudio: Display: Creating Audio Device: Id: 6, Scope: Unique, Realtime: True +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.36.20:773][101]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.36.20:773][101]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.36.20:773][101]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.36.20:773][101]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.36.20:773][101]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.36.20:775][101]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.36.20:808][101]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.36.20:808][101]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.36.20:808][101]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.36.20:808][101]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.36.20:809][101]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=6 +[2025.06.16-09.36.20:809][101]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=6 +[2025.06.16-09.36.20:812][101]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=6 +[2025.06.16-09.36.20:812][101]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=6 +[2025.06.16-09.36.20:812][101]LogInit: FAudioDevice initialized with ID 6. +[2025.06.16-09.36.20:812][101]LogAudio: Display: Audio Device (ID: 6) registered with world 'Dabaza'. +[2025.06.16-09.36.20:812][101]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-09.36.20:814][101]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.36.20:815][101]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.36.20 +[2025.06.16-09.36.20:815][101]LogWorld: Bringing up level for play took: 0.001198 +[2025.06.16-09.36.20:817][101]LogOnline: OSS: Created online subsystem instance for: :Context_6 +[2025.06.16-09.36.20:819][101]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.36.20:819][101]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.36.20:820][101]PIE: Server logged in +[2025.06.16-09.36.20:820][101]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-09.36.28:747][ 44]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.36.30:068][198]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.36.30:068][198]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.36.30:069][198]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.36.30:069][198]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.36.30:069][198]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.36.30:071][198]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.36.30:075][198]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.36.30:089][198]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.36.30:089][198]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-09.36.30:089][198]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-09.36.30:091][198]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-09.36.30:095][198]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.36.30:148][202]LogPlayLevel: Display: Destroying online subsystem :Context_6 +[2025.06.16-09.36.56:069][697]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.36.56:135][697]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.36.56:135][697]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.36.56:135][697]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.36.56:136][697]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.36.56:137][697]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsE9C62EDC4F803E96494251B254BF5712.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.36.56:146][697]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.147 ms (total: 218.454 ms) +[2025.06.16-09.36.56:201][697]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.36.56:201][697]LogContentValidation: Enabled validators: +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.36.56:201][697]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.36.56:202][697]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.36.57:042][793]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.36.57:047][793]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.36.57:047][793]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.36.57:048][793]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.299 ms (total: 7.593 ms) +[2025.06.16-09.36.57:048][793]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.36.57:048][793]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.36.57:051][793]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002341s) +[2025.06.16-09.36.57:051][793]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002497s) +[2025.06.16-09.36.57:063][793]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-09.36.57:065][793]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.36.57:066][793]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.36.57:066][793]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.36.57:066][793]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.36.57:066][793]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.36.57:067][793]LogWorldPartition: Display: WorldPartition initialize took 1.100 ms (total: 90.346 ms) +[2025.06.16-09.36.57:067][793]LogPlayLevel: PIE: World Init took: (0.002498s) +[2025.06.16-09.36.57:067][793]LogAudio: Display: Creating Audio Device: Id: 7, Scope: Unique, Realtime: True +[2025.06.16-09.36.57:067][793]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.36.57:068][793]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.36.57:068][793]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.36.57:068][793]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.36.57:068][793]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.36.57:068][793]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.36.57:070][793]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.36.57:095][793]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.36.57:095][793]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.36.57:095][793]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.36.57:097][793]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.36.57:097][793]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=7 +[2025.06.16-09.36.57:097][793]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=7 +[2025.06.16-09.36.57:099][793]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=7 +[2025.06.16-09.36.57:099][793]LogInit: FAudioDevice initialized with ID 7. +[2025.06.16-09.36.57:099][793]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=7 +[2025.06.16-09.36.57:099][793]LogAudio: Display: Audio Device (ID: 7) registered with world 'Dabaza'. +[2025.06.16-09.36.57:099][793]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-09.36.57:101][793]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.36.57:103][793]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.36.57 +[2025.06.16-09.36.57:103][793]LogWorld: Bringing up level for play took: 0.001259 +[2025.06.16-09.36.57:105][793]LogOnline: OSS: Created online subsystem instance for: :Context_7 +[2025.06.16-09.36.57:107][793]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.36.57:107][793]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.36.57:107][793]PIE: Server logged in +[2025.06.16-09.36.57:108][793]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-09.37.05:035][736]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.37.07:034][976]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.37.08:748][177]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.37.08:748][177]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.37.08:749][177]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.37.08:749][177]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.37.08:749][177]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.37.08:751][177]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.37.08:755][177]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.37.08:769][177]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.37.08:769][177]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-09.37.08:770][177]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-09.37.08:771][177]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-09.37.08:778][177]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-09.37.08:831][179]LogPlayLevel: Display: Destroying online subsystem :Context_7 +[2025.06.16-09.37.52:305][595]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.37.52:367][595]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.37.52:367][595]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.37.52:367][595]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.37.52:369][595]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.37.52:369][595]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsCBC070814844F56600EEDBA45137CA0D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.37.52:380][595]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.329 ms (total: 293.783 ms) +[2025.06.16-09.37.52:430][595]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.37.52:430][595]LogContentValidation: Enabled validators: +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.37.52:432][595]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.37.52:432][595]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.37.53:495][710]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.37.53:501][710]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.37.53:501][710]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.37.53:502][710]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.224 ms (total: 8.817 ms) +[2025.06.16-09.37.53:502][710]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.37.53:502][710]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.37.53:504][710]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002373s) +[2025.06.16-09.37.53:505][710]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002545s) +[2025.06.16-09.37.53:519][710]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-09.37.53:520][710]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.37.53:521][710]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.37.53:521][710]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.37.53:521][710]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.37.53:521][710]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.37.53:522][710]LogWorldPartition: Display: WorldPartition initialize took 1.103 ms (total: 91.449 ms) +[2025.06.16-09.37.53:522][710]LogPlayLevel: PIE: World Init took: (0.002630s) +[2025.06.16-09.37.53:522][710]LogAudio: Display: Creating Audio Device: Id: 8, Scope: Unique, Realtime: True +[2025.06.16-09.37.53:522][710]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.37.53:522][710]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.37.53:523][710]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.37.53:523][710]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.37.53:523][710]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.37.53:523][710]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.37.53:523][710]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.37.53:523][710]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.37.53:523][710]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.37.53:523][710]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.37.53:523][710]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.37.53:525][710]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.37.53:552][710]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.37.53:553][710]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.37.53:553][710]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.37.53:553][710]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.37.53:553][710]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=8 +[2025.06.16-09.37.53:553][710]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=8 +[2025.06.16-09.37.53:555][710]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=8 +[2025.06.16-09.37.53:555][710]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=8 +[2025.06.16-09.37.53:555][710]LogInit: FAudioDevice initialized with ID 8. +[2025.06.16-09.37.53:555][710]LogAudio: Display: Audio Device (ID: 8) registered with world 'Dabaza'. +[2025.06.16-09.37.53:555][710]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-09.37.53:558][710]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.37.53:559][710]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.37.53 +[2025.06.16-09.37.53:559][710]LogWorld: Bringing up level for play took: 0.001113 +[2025.06.16-09.37.53:561][710]LogOnline: OSS: Created online subsystem instance for: :Context_8 +[2025.06.16-09.37.53:563][710]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.37.53:563][710]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.37.53:563][710]PIE: Server logged in +[2025.06.16-09.37.53:564][710]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-09.37.56:489][ 53]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.37.59:492][411]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.38.01:495][650]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.38.02:496][770]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.38.04:258][978]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.38.04:258][978]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.38.04:258][978]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.38.04:258][978]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.38.04:258][978]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.38.04:261][978]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.38.04:265][978]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.38.04:279][978]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.38.04:280][978]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-09.38.04:280][978]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-09.38.04:282][978]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-09.38.04:286][978]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-09.38.04:337][982]LogPlayLevel: Display: Destroying online subsystem :Context_8 +[2025.06.16-09.38.42:300][242]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.38.42:305][242]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.38.42:305][242]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.38.42:307][242]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.244 ms (total: 10.062 ms) +[2025.06.16-09.38.42:307][242]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.38.42:307][242]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.38.42:310][242]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002175s) +[2025.06.16-09.38.42:310][242]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002340s) +[2025.06.16-09.38.42:323][242]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-09.38.42:324][242]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.38.42:325][242]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.38.42:325][242]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.38.42:325][242]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.38.42:325][242]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.38.42:325][242]LogWorldPartition: Display: WorldPartition initialize took 1.116 ms (total: 92.566 ms) +[2025.06.16-09.38.42:327][242]LogPlayLevel: PIE: World Init took: (0.002464s) +[2025.06.16-09.38.42:327][242]LogAudio: Display: Creating Audio Device: Id: 9, Scope: Unique, Realtime: True +[2025.06.16-09.38.42:327][242]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.38.42:327][242]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.38.42:327][242]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.38.42:327][242]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.38.42:328][242]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.38.42:328][242]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.38.42:328][242]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.38.42:328][242]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.38.42:328][242]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.38.42:328][242]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.38.42:328][242]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.38.42:330][242]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.38.42:355][242]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.38.42:355][242]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.38.42:355][242]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.38.42:355][242]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.38.42:357][242]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=9 +[2025.06.16-09.38.42:357][242]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=9 +[2025.06.16-09.38.42:359][242]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=9 +[2025.06.16-09.38.42:359][242]LogInit: FAudioDevice initialized with ID 9. +[2025.06.16-09.38.42:359][242]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=9 +[2025.06.16-09.38.42:359][242]LogAudio: Display: Audio Device (ID: 9) registered with world 'Dabaza'. +[2025.06.16-09.38.42:359][242]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-09.38.42:363][242]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.38.42:364][242]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.38.42 +[2025.06.16-09.38.42:364][242]LogWorld: Bringing up level for play took: 0.001146 +[2025.06.16-09.38.42:367][242]LogOnline: OSS: Created online subsystem instance for: :Context_9 +[2025.06.16-09.38.42:368][242]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.38.42:368][242]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.38.42:369][242]PIE: Server logged in +[2025.06.16-09.38.42:369][242]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-09.38.53:462][563]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.38.53:466][563]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-09.38.53:470][563]LogAutomationController: Ignoring very large delta of 8.18 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.38.53:473][564]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-09.38.53:473][564]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.38.54:885][580]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-09.38.55:998][695]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.38.55:999][695]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.38.55:999][695]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.38.55:999][695]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.38.56:000][695]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.38.56:004][695]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.38.56:008][695]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.38.56:024][695]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.38.56:024][695]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-09.38.56:025][695]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-09.38.56:027][695]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-09.38.56:031][695]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-09.38.56:049][696]LogPlayLevel: Display: Destroying online subsystem :Context_9 +[2025.06.16-09.39.34:932][131]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 344.726837 +[2025.06.16-09.39.35:932][134]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.39.35:932][134]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 345.395874, Update Interval: 303.235565 +[2025.06.16-09.39.38:262][141]LogHotReload: New module detected: UnrealEditor-ProjectFish-0001.dll +[2025.06.16-09.39.38:933][143]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-09.39.38:998][143]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-09.39.39:295][143]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-09.39.39:330][143]LogStreaming: Display: FlushAsyncLoading(583): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-09.39.39:332][143]Display: HotReload took 0.4s. +[2025.06.16-09.39.39:332][143]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-09.39.42:196][152]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-09.39.42:202][152]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-09.39.42:202][152]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-09.39.42:203][152]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.404 ms (total: 11.466 ms) +[2025.06.16-09.39.42:205][152]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-09.39.42:205][152]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.39.42:210][152]LogPlayLevel: PIE: StaticDuplicateObject took: (0.005476s) +[2025.06.16-09.39.42:210][152]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.005679s) +[2025.06.16-09.39.42:258][152]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-09.39.42:259][152]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-09.39.42:260][152]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-09.39.42:261][152]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-09.39.42:261][152]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-09.39.42:261][152]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-09.39.42:262][152]LogWorldPartition: Display: WorldPartition initialize took 1.107 ms (total: 93.673 ms) +[2025.06.16-09.39.42:262][152]LogPlayLevel: PIE: World Init took: (0.002789s) +[2025.06.16-09.39.42:262][152]LogAudio: Display: Creating Audio Device: Id: 10, Scope: Unique, Realtime: True +[2025.06.16-09.39.42:262][152]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-09.39.42:263][152]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-09.39.42:263][152]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-09.39.42:263][152]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-09.39.42:263][152]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-09.39.42:263][152]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-09.39.42:265][152]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-09.39.42:290][152]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-09.39.42:291][152]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-09.39.42:291][152]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-09.39.42:291][152]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-09.39.42:292][152]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=10 +[2025.06.16-09.39.42:292][152]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=10 +[2025.06.16-09.39.42:294][152]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=10 +[2025.06.16-09.39.42:294][152]LogInit: FAudioDevice initialized with ID 10. +[2025.06.16-09.39.42:294][152]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=10 +[2025.06.16-09.39.42:294][152]LogAudio: Display: Audio Device (ID: 10) registered with world 'Dabaza'. +[2025.06.16-09.39.42:294][152]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-09.39.42:296][152]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-09.39.42:297][152]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-17.39.42 +[2025.06.16-09.39.42:297][152]LogWorld: Bringing up level for play took: 0.001161 +[2025.06.16-09.39.42:300][152]LogOnline: OSS: Created online subsystem instance for: :Context_10 +[2025.06.16-09.39.42:301][152]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-09.39.42:301][152]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-09.39.42:302][152]PIE: Server logged in +[2025.06.16-09.39.42:303][152]PIE: Play in editor total start time 0.101 seconds. +[2025.06.16-09.39.48:470][426]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.39.48:478][426]LogAutomationController: Ignoring very large delta of 3.61 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-09.39.48:480][427]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.39.51:486][643]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-09.39.53:148][838]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.39.53:148][838]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-09.39.53:149][838]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-09.39.53:149][838]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.39.53:149][838]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-09.39.53:151][838]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-09.39.53:155][838]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-09.39.53:177][838]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-09.39.53:177][838]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-09.39.53:178][838]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-09.39.53:179][838]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-09.39.53:192][838]LogUObjectHash: Compacting FUObjectHashTables data took 1.34ms +[2025.06.16-09.39.53:221][839]LogPlayLevel: Display: Destroying online subsystem :Context_10 +[2025.06.16-09.40.47:866][309]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.40.47:906][309]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-09.40.47:907][309]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-09.40.47:907][309]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-09.40.47:908][309]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-09.40.47:909][309]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills222B9E0145E0A03F81DB80AA53C9647A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-09.40.47:918][309]LogFileHelpers: InternalPromptForCheckoutAndSave took 51.409 ms (total: 345.193 ms) +[2025.06.16-09.40.47:972][309]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.40.47:973][309]LogContentValidation: Enabled validators: +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.40.47:973][309]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.40.47:973][309]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-09.41.15:567][390]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer +[2025.06.16-09.41.15:568][390]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-09.41.15:574][390]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.16-09.41.15:579][390]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.16-09.41.15:918][390]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.16-09.44.41:155][641]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 650.951233 +[2025.06.16-09.44.41:425][669]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.44.41:425][669]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 651.213013, Update Interval: 354.376648 +[2025.06.16-09.50.42:560][234]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1012.358215 +[2025.06.16-09.50.42:805][260]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.50.42:805][260]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1012.597717, Update Interval: 342.327942 +[2025.06.16-09.51.08:529][298]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.16-09.52.06:301][412]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-09.52.06:302][412]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.020 +[2025.06.16-09.52.06:304][412]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-09.52.06:308][412]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-09.52.06:308][412]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-09.52.06:308][412]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto1.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-09.52.06:314][412]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/UI/WBP_SkillContainer_Auto1 +[2025.06.16-09.52.06:315][412]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer_Auto1BE86DE704FBDC44D9E7050903F76CF62.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto1.uasset' +[2025.06.16-09.52.06:316][412]LogFileHelpers: Auto-saving content packages took 0.012 +[2025.06.16-09.56.34:038][214]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1363.841797 +[2025.06.16-09.56.34:288][244]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-09.56.34:288][244]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1364.083740, Update Interval: 349.819031 +[2025.06.16-09.57.33:194][258]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard +[2025.06.16-09.57.33:195][258]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.16-09.57.33:202][258]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.16-09.57.39:701][984]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-09.57.40:401][ 42]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-09.57.40:460][ 42]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-09.57.40:462][ 42]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-09.57.40:462][ 42]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-09.57.40:462][ 42]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-09.57.40:471][ 42]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-09.57.40:472][ 42]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardA29D3A2242B18B3BB8DEC7ACC7A53FE2.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-09.57.40:481][ 42]LogFileHelpers: InternalPromptForCheckoutAndSave took 79.733 ms (total: 424.926 ms) +[2025.06.16-09.57.40:524][ 42]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-09.57.40:524][ 42]LogContentValidation: Enabled validators: +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-09.57.40:524][ 42]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-09.57.40:526][ 42]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.01.15:968][520]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-10.01.16:571][567]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.01.16:622][567]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.01.16:625][567]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.01.16:625][567]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.01.16:625][567]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.01.16:634][567]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.01.16:635][567]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardA6E2DE5840CE931D0B60E881CBFB724E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.01.16:645][567]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.807 ms (total: 498.733 ms) +[2025.06.16-10.01.16:704][567]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.01.16:705][567]LogContentValidation: Enabled validators: +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.01.16:705][567]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.01.16:705][567]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.01.18:652][784]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.02.21:295][130]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.02.40:327][348]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.02.46:994][122]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1736.798096 +[2025.06.16-10.02.47:243][152]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.02.47:243][152]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1737.037842, Update Interval: 315.135956 +[2025.06.16-10.03.44:337][730]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.03.44:938][779]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.03.44:995][779]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.03.44:997][779]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.03.44:997][779]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.03.44:997][779]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.03.45:003][779]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.03.45:003][779]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer5FA3779549961A7617FAABBF4B6465E0.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.03.45:012][779]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.147 ms (total: 572.881 ms) +[2025.06.16-10.03.45:074][779]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.03.45:074][779]LogContentValidation: Enabled validators: +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.03.45:076][779]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.03.45:076][779]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.05.38:915][820]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.06.01:245][376]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-10.06.02:010][449]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.06.02:077][449]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.06.02:079][449]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.06.02:079][449]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.06.02:079][449]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.06.02:087][449]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.06.02:087][449]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerA0A943F84EA0F536F39AEA8F90E5C147.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.06.02:095][449]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.382 ms (total: 659.264 ms) +[2025.06.16-10.06.02:156][449]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.06.02:156][449]LogContentValidation: Enabled validators: +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.06.02:156][449]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.06.02:157][449]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.06.03:035][545]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.06.03:039][545]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.06.03:039][545]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.06.03:041][545]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.326 ms (total: 12.792 ms) +[2025.06.16-10.06.03:041][545]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.06.03:041][545]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.06.03:044][545]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002363s) +[2025.06.16-10.06.03:044][545]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002482s) +[2025.06.16-10.06.03:057][545]LogUObjectHash: Compacting FUObjectHashTables data took 1.10ms +[2025.06.16-10.06.03:059][545]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.06.03:060][545]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.06.03:060][545]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.06.03:060][545]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.06.03:060][545]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.06.03:062][545]LogWorldPartition: Display: WorldPartition initialize took 1.039 ms (total: 94.713 ms) +[2025.06.16-10.06.03:062][545]LogPlayLevel: PIE: World Init took: (0.002483s) +[2025.06.16-10.06.03:063][545]LogAudio: Display: Creating Audio Device: Id: 11, Scope: Unique, Realtime: True +[2025.06.16-10.06.03:063][545]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.06.03:063][545]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.06.03:063][545]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.06.03:063][545]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.06.03:064][545]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.06.03:064][545]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.06.03:064][545]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.06.03:064][545]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.06.03:064][545]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.06.03:064][545]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.06.03:064][545]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.06.03:067][545]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.06.03:093][545]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.06.03:093][545]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.06.03:093][545]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.06.03:093][545]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.06.03:094][545]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=11 +[2025.06.16-10.06.03:094][545]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=11 +[2025.06.16-10.06.03:096][545]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=11 +[2025.06.16-10.06.03:096][545]LogInit: FAudioDevice initialized with ID 11. +[2025.06.16-10.06.03:096][545]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=11 +[2025.06.16-10.06.03:096][545]LogAudio: Display: Audio Device (ID: 11) registered with world 'Dabaza'. +[2025.06.16-10.06.03:096][545]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-10.06.03:098][545]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.06.03:099][545]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.06.03 +[2025.06.16-10.06.03:100][545]LogWorld: Bringing up level for play took: 0.001450 +[2025.06.16-10.06.03:102][545]LogOnline: OSS: Created online subsystem instance for: :Context_15 +[2025.06.16-10.06.03:120][545]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.06.03:120][545]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.06.03:120][545]PIE: Server logged in +[2025.06.16-10.06.03:121][545]PIE: Play in editor total start time 0.082 seconds. +[2025.06.16-10.06.03:131][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:132][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:132][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:132][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:133][545]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:133][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:133][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:133][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:133][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:133][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:133][545]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:133][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:134][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:134][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:134][545]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:134][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:134][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:134][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:134][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:134][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:134][545]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:135][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:135][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:135][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:135][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:135][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:135][545]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:135][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:135][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:135][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:135][545]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:135][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:136][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:136][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:136][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:136][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:136][545]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:136][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:136][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:136][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:136][545]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:136][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:137][545]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:137][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:137][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:137][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:137][545]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:137][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:163][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:163][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:163][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:163][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:163][546]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:163][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:163][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:164][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:164][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:164][546]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:165][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:165][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:165][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:165][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:165][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:165][546]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:165][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:165][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:165][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:165][546]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:165][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:165][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:166][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:166][546]LogScript: Warning: Accessed None reading structure Endurance + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0528 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:166][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:06C4 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:166][546]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0700 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:166][546]LogScript: Warning: Accessed None reading structure CD + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0715 +[2025.06.16-10.06.03:166][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:167][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:167][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:167][546]LogScript: Warning: Accessed None trying to read property SkillMaterial + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0799 +[2025.06.16-10.06.03:167][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:212][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:213][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:213][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:214][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:214][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:214][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:214][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:214][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:214][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:214][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:215][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:03F2 +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]LogScript: Warning: Accessed None trying to read property Skill + WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard:0513 +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:215][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:217][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:217][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:217][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:217][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:227][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:227][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:227][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:228][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:228][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:230][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:230][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:231][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:238][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:238][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:239][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:239][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:239][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:239][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:240][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:240][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:240][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:241][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:241][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:242][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:250][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:250][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:250][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:250][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:251][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:251][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:252][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:252][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:253][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:253][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:253][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:253][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:253][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:253][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:261][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:261][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:262][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:262][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:263][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:263][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:263][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:271][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:273][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:273][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:273][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:273][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:274][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:274][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:274][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:281][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:281][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:283][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:283][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:284][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:284][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:285][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:285][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:285][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:285][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:293][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:293][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:293][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:293][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:293][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:294][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:294][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:294][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:294][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:294][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:295][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:295][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:296][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:296][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:296][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:296][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:296][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:307][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:307][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:307][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:308][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:308][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:309][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:309][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:309][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:319][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:319][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:320][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:321][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:321][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:322][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:322][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:322][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:322][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:331][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:331][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:331][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:331][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:332][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:332][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:333][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:333][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:334][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:334][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:334][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:342][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:342][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:342][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:344][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:344][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:345][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:345][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:346][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:346][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:346][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:346][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:346][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:346][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:355][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:355][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:355][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:357][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:357][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:358][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:358][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:358][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:358][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:358][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:358][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:368][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:369][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:369][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:369][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:370][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:370][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:370][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:380][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:380][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:380][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:381][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:381][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:382][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:382][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:382][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:390][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:390][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:391][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:391][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:392][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:392][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:392][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:401][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:401][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:401][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:401][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:401][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:402][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:402][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:403][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:403][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:404][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:404][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:404][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:404][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:413][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:413][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:414][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:415][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:415][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:415][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:415][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:422][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:424][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:424][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:425][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:425][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:425][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:425][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:433][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:434][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:434][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:435][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:435][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:435][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:435][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:442][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:443][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:443][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:444][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:444][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:444][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:446][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:446][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:446][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:454][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:454][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:455][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:455][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:456][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:456][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:456][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:456][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:456][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:457][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:457][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:457][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:457][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:457][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:464][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:464][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:466][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:467][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:467][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:467][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:467][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:475][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:475][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:475][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:475][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:476][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:476][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:477][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:477][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:478][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:478][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:478][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:478][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:478][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:478][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:485][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:485][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:486][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:486][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:486][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:486][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:486][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:486][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:487][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:488][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:488][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:489][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:489][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:489][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:495][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:495][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:495][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:496][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:496][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:496][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:497][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:497][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:497][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:498][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:498][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:498][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:498][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:498][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:498][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:506][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:507][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:507][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:507][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:508][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:508][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:509][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:516][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:517][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:517][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:517][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:517][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:518][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:518][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:518][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:526][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:526][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:527][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:527][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:528][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:528][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:529][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:529][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:529][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:529][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:529][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:536][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:536][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:537][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:537][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:538][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:538][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:539][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:539][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:539][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:539][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:539][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:539][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:546][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:546][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:547][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:547][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:548][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:548][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:549][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:549][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:549][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:557][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:557][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:557][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:557][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:557][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:558][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:558][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:559][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:559][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:560][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:560][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:560][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:567][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:567][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:568][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:568][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:569][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:569][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:570][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:570][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:570][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:578][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:578][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:578][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:578][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:579][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:579][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:580][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:580][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:582][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:582][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:582][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:588][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:588][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:588][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:588][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:589][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:589][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:590][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:590][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:591][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:591][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:591][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:591][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:599][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:599][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:600][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:600][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:600][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:600][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:600][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:600][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:600][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:601][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:601][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:602][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:602][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:602][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:602][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:602][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:602][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:602][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:610][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:610][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:610][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:611][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:611][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:611][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:611][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:611][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:611][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:611][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:612][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:612][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:614][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:614][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:614][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:621][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:621][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:621][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:622][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:622][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:624][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:625][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:625][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:631][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:632][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:632][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:632][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:633][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:633][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:633][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:634][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:634][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:634][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:643][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:643][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:643][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:643][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:644][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:644][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:644][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:644][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:644][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:644][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:644][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:645][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:645][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:646][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:646][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:646][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:646][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:646][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:654][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:655][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:655][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:656][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:656][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:656][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:657][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:657][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:658][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:665][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:666][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:666][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:666][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:667][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:667][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:668][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:669][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:669][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:677][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:677][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:677][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:678][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:678][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:678][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:678][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:678][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:678][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:678][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:679][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:679][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:679][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:680][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:680][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:680][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:688][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:688][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:688][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:689][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:689][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:689][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:689][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:689][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:689][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:689][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:690][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:690][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:691][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:691][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:691][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:691][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:691][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:691][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:698][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:698][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:698][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:700][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:700][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:701][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:701][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:702][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:702][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:702][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:702][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:702][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:702][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:702][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:710][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:711][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:711][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:712][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:712][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:714][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:714][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:714][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:714][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:714][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:721][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:721][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:721][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:722][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:722][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:723][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:723][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:724][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:724][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:724][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:724][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:724][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:724][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:724][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:732][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:732][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:733][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:733][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:734][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:734][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:735][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:735][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:735][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:735][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:735][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:735][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:744][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:744][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:744][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:744][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:744][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:745][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:745][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:746][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:746][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:747][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:747][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:747][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:747][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:747][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:754][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:754][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:756][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:756][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:757][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:757][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:757][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:765][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:766][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:766][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:766][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:767][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:767][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:767][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:768][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:768][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:768][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:776][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:776][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:776][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:776][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:777][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:777][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:777][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:777][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:777][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:777][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:778][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:778][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:778][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:779][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:780][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:780][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:780][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:787][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:788][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:788][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:789][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:789][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:790][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:790][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:790][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:798][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:798][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:798][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:799][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:799][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:800][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:800][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:801][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:801][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:801][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:801][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:801][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:808][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:809][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:809][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:810][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:810][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:811][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:811][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:811][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:818][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:818][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:818][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:818][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:819][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:819][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:820][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:820][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:821][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:821][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:821][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:821][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:821][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:828][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:828][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:828][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:828][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:828][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:829][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:829][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:829][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:829][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:829][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:829][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:829][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:830][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:830][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:831][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:831][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:831][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:831][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:831][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:831][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:838][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:839][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:839][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:839][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:840][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:840][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:840][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:841][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:841][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:841][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:849][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:850][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:850][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:851][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:851][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:852][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:852][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:852][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:852][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:859][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:859][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:859][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:859][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:860][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:860][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:862][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:862][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:863][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:863][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:863][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:863][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:869][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:869][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:869][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:870][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:870][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:872][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:872][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:873][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:873][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:873][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:881][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:882][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:882][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:883][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:883][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:883][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:884][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:892][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:893][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:893][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:894][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:894][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:895][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:895][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:895][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:895][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:902][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:902][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:902][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:903][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:903][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:905][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:905][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:906][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:906][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:906][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:906][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:906][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:906][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:912][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:913][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:913][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:914][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:915][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:915][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:915][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:915][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:923][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:925][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:925][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:925][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:926][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:927][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:927][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:933][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:933][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:933][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:935][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:935][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:936][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:936][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:937][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:937][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:937][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:943][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:943][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:945][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:945][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:945][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:945][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:945][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:945][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:945][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:946][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:946][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:947][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:947][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:947][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:947][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:947][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:947][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:947][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:956][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:957][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:957][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:958][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:958][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:958][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:959][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:959][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:959][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:968][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:969][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:969][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:970][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:970][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:971][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:971][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:971][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:980][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:981][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:981][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:982][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:982][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:983][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:983][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:983][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:983][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:983][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:983][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:991][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:991][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:991][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:993][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:993][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:993][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:993][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:993][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.03:993][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:994][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:994][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.03:994][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.03:995][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.03:995][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.03:996][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:003][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:003][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:003][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:004][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:004][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:005][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:005][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:007][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:007][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:007][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:014][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:015][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:015][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:016][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:016][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:016][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:016][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:017][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:017][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:017][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:017][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:017][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:018][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:019][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:019][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:019][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:027][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:027][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:027][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:028][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:028][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:029][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:029][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:029][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:029][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:029][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:029][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:029][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:030][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:030][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:030][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:038][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:038][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:038][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:038][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:038][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:039][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:039][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:039][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:039][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:039][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:039][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:039][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:040][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:040][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:041][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:041][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:041][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:041][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:041][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:041][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:041][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:059][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:059][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:059][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:060][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:060][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:060][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:060][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:060][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:060][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:060][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:061][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:061][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:061][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:062][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:062][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:064][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:070][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:070][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:070][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:072][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:072][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:073][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:073][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:073][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:075][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:082][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:084][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:084][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:085][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:085][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:086][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:086][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:086][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:086][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:086][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:095][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:095][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:095][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:095][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:095][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:096][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:096][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:096][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:096][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:096][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:096][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:096][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:097][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:097][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:098][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:098][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:098][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:098][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:098][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:098][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:107][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:107][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:107][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:107][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:107][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:108][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:108][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:108][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:108][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:108][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:108][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:108][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:109][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:109][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:110][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:110][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:110][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:110][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:110][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:110][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:119][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:119][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:120][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:120][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:120][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:120][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:120][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:120][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:120][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:121][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:121][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:121][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:122][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:122][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:123][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:130][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:132][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:132][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:132][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:132][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:132][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:132][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:132][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:133][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:133][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:134][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:134][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:134][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:134][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:134][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:163][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:163][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:164][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:164][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:164][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:164][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:164][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:164][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:164][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:165][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:165][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:167][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:167][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:167][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:167][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:167][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:167][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:167][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:179][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:180][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:180][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:181][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:182][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:182][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:183][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:183][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:183][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:191][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:191][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:191][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:191][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:192][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:192][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:192][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:192][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:192][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:192][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:192][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:193][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:193][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:193][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:194][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:194][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:195][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:195][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:195][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:204][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:204][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:204][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:204][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:204][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:205][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:205][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:206][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:206][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:207][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:207][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:207][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:207][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:207][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:215][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:217][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:217][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:217][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:217][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:217][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:217][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:217][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:218][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:218][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:218][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:218][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:218][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:218][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:218][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:219][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:219][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:219][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:219][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:219][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:219][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:219][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:228][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:228][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:228][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:229][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:229][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:230][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:230][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:230][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:230][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:230][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:230][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:230][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:231][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:231][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:231][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:240][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:240][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:240][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:241][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:241][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:241][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:241][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:241][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:241][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:241][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:242][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:242][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:244][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:244][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:244][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:244][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:244][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:244][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:252][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:253][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:253][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:253][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:253][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:253][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:253][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:253][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:254][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:254][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:255][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:255][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:255][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:255][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:255][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:255][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:264][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:264][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:264][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:265][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:265][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:266][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:266][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:266][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:266][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:266][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:266][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:266][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:267][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:267][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:267][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:276][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:276][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:276][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:276][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:277][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:277][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:278][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:278][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:280][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:280][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:280][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:280][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:280][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:288][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:288][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:290][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:291][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:291][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:292][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:292][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:292][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:292][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:300][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:301][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:301][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:302][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:302][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:302][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:302][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:302][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:303][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:303][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:304][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:312][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:312][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:313][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:313][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:313][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:313][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:313][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:313][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:314][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:315][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:315][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:316][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:316][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:316][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:316][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:316][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:324][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:325][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:326][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:326][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:327][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:327][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:328][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:328][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:328][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:328][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:337][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:337][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:337][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:337][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:337][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:338][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:338][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:339][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:339][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:340][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:340][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:340][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:340][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:340][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:349][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:349][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:349][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:349][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:349][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:350][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:350][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:351][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:351][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:352][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:352][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:352][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:352][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:352][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:352][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:361][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:361][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:361][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:361][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:362][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:362][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:362][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:362][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:362][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:362][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:362][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:363][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:363][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:364][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:364][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:364][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:373][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:373][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:374][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:374][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:375][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:375][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:377][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:377][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:377][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:377][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:378][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:378][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:378][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:378][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:387][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:387][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:387][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:387][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:388][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:388][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:389][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:389][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:391][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:391][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:391][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:391][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:391][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:391][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:400][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:400][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:400][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:400][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:401][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:401][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:402][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:402][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:402][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:402][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:402][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:402][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:402][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:403][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:403][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:403][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:412][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:412][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:412][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:412][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:413][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:413][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:413][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:413][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:413][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:413][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:413][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:414][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:414][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:414][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:414][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:414][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:414][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:414][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:415][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:415][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:416][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:423][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:423][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:423][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:423][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:425][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:425][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:425][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:425][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:425][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:425][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:425][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:426][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:426][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:426][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:426][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:426][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:426][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:426][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:427][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:428][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:428][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:428][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:435][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:435][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:435][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:436][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:436][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:436][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:436][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:436][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:436][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:437][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:437][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:438][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:439][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:439][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:439][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:447][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:447][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:448][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:448][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:448][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:448][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:448][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:448][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:448][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:449][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:449][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:450][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:451][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:451][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:451][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:458][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:458][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:458][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:458][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:458][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:459][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:459][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:459][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:459][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:459][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:460][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:460][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:460][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:462][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:463][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:463][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:463][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:469][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:469][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:471][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:471][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:471][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:471][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:471][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:471][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:472][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:472][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:472][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:472][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:472][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:473][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:473][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:473][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:473][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:473][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:473][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:473][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:474][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:474][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:474][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:474][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:474][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:474][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:474][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:482][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:482][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:483][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:483][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:483][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:483][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:483][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:483][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:483][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:484][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:484][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:484][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:485][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:485][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:485][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:494][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:494][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:494][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:495][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:495][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:497][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:497][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:498][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:498][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:498][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:498][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:498][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:498][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:498][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:509][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:509][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:509][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:510][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:510][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:511][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:512][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:512][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:512][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:512][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:520][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:520][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:520][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:520][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:521][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:521][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:521][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:521][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:521][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:521][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:521][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:522][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:522][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:522][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:522][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:522][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:522][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:522][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:523][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:523][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:523][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:523][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:524][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:524][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:524][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:524][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:524][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:536][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:537][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:537][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:537][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:537][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:538][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:538][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:538][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:538][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:538][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:538][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:540][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:540][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:540][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:540][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:540][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:540][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:540][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:541][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:542][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:542][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:542][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:550][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:551][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:551][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:552][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:553][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:553][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:554][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:554][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:554][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:554][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:554][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:562][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:562][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:563][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:563][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:563][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:563][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:563][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:564][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:564][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:564][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:564][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:564][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:564][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:565][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:565][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:567][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:567][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:567][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:567][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:567][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:575][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:575][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:575][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:577][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:577][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:577][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:577][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:577][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:577][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:578][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:578][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:579][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:580][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:580][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:580][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:580][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:589][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:589][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:590][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:590][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:590][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:590][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:590][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:590][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:590][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:591][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:592][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:592][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:593][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:593][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:593][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:602][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:602][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:603][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:603][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:603][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:603][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:603][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:603][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:603][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:604][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:604][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:605][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:605][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:605][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:615][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:615][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:616][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:616][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:616][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:616][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:616][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:616][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:616][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:617][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:617][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:617][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:617][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:617][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:618][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:618][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:618][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:618][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:618][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:618][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:618][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:619][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:619][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:619][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:619][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:619][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:619][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:629][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:629][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:630][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:630][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:630][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:630][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:630][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:630][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:630][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:631][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:631][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:631][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:631][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:631][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:632][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:632][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:633][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:633][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:633][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:633][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:633][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:641][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:641][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:641][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:641][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:641][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:642][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:642][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:644][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:644][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:645][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:645][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:645][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:645][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:645][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:653][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:653][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:653][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:654][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:654][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:655][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:655][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:656][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:656][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:656][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:656][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:662][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:662][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:664][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:664][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:664][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:664][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:664][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:664][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:664][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:665][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:666][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:666][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:667][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:667][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:667][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:667][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:680][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:680][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:680][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:680][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:681][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:681][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:682][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:682][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:683][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:683][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:683][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:683][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:683][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:683][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:683][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:697][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:698][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:698][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:699][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:700][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:700][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:700][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:701][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:709][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:709][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:710][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:710][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:711][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:711][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:712][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:712][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:712][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:712][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:712][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:712][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:720][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:720][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:720][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:720][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:720][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:721][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:721][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:721][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:721][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:721][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:721][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:721][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:722][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:722][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:722][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:722][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:722][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:722][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:722][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:723][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:723][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:723][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:732][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:732][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:732][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:732][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:732][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:733][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:733][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:733][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:733][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:733][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:733][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:733][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:734][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:734][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:734][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:734][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:734][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:734][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:734][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:735][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:735][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:735][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:736][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:736][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:736][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:736][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:736][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:744][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:744][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:744][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:744][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:744][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:745][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:745][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:747][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:747][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:747][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:747][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:747][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:747][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:747][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:748][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:748][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:748][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:748][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:748][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:755][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:755][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:756][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:756][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:756][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:757][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:757][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:757][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:757][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:757][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:757][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:758][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:758][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:758][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:758][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:758][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:758][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:758][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:759][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:759][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:760][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:768][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:768][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:768][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:768][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:769][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:769][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:769][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:769][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:769][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:769][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:769][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:770][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:770][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:771][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:771][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:771][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:779][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:779][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:779][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:780][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:780][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:780][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:780][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:780][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:780][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:780][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:781][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:781][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:782][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:782][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:782][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:790][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:790][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:791][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:791][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:791][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:791][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:791][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:791][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:791][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:792][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:793][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:793][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:794][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:794][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:794][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:794][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:802][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:802][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:802][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:802][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:802][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:803][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:803][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:803][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:803][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:803][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:803][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:803][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:804][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:804][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:804][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:804][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:804][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:804][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:804][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:805][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:805][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:805][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:813][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:814][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:814][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:814][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:814][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:814][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:815][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:815][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:815][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:815][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:815][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:815][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:815][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:816][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:816][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:817][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:817][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:817][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:817][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:817][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:817][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:825][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:825][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:825][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:827][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:828][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:828][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:828][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:828][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:828][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:828][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:828][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:829][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:829][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:829][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:829][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:829][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:838][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:839][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:839][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:839][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:839][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:839][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:839][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:839][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:840][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:840][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:841][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:841][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:841][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:841][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:841][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:841][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:850][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:850][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:851][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:851][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:851][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:851][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:851][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:851][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:851][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:852][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:853][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:853][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:854][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:854][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:854][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:854][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:862][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:863][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:864][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:864][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:865][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:865][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:865][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:865][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:865][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:865][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:865][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:866][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:866][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:866][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:866][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:866][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:866][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:874][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:875][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:875][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:876][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:877][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:877][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:878][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:878][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:878][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:878][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:886][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:887][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:887][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:887][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:887][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:887][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:888][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:888][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:889][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:889][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:889][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:889][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:889][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:889][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:889][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:890][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:890][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:890][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:890][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:890][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:890][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:899][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:899][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:899][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:899][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:899][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:900][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:900][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:901][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:901][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:902][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:902][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:902][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:902][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:902][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:902][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:910][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:910][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:911][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:911][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:913][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:913][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:913][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:914][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:915][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:915][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:915][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:924][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:924][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:925][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:925][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:925][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:925][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:925][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:925][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:925][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:926][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:927][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:927][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:927][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:927][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:927][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:927][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:928][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:928][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:928][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:928][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:928][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:937][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:937][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:937][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:937][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:937][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:938][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:938][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:938][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:938][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:938][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:938][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:938][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:939][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:939][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:939][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:939][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:939][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:939][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:939][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:940][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:941][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:941][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:948][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:948][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:948][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:948][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:949][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:949][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:949][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:949][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:949][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:949][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:949][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:950][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:950][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:950][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:950][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:951][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:951][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:951][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:951][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:951][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:951][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:951][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:952][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:952][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:952][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:952][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:952][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:959][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:959][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:959][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:960][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:960][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:960][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:960][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:960][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:960][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:960][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:961][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:961][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:962][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:963][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:963][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:963][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:963][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:970][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:970][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:971][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:971][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:971][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:971][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:971][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:971][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:972][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:973][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:973][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:973][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:973][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:973][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:973][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:973][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:974][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:974][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:974][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:974][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:974][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:974][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:981][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:981][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:982][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:982][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:982][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:982][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:982][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:982][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:983][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:984][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:984][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:984][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:984][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:984][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:984][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:984][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:985][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:985][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:985][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:985][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:985][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:985][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:992][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:992][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:992][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:992][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:994][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:994][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:996][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.04:996][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:996][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:996][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:996][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:996][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:997][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:997][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.04:997][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.04:997][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.04:997][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:004][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:004][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:004][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:004][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:005][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:005][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:007][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:007][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:008][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:008][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:008][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:008][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:008][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:008][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:015][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:015][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:017][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:017][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:017][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:017][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:017][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:017][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:017][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:018][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:019][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:019][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:020][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:020][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:020][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:020][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:027][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:027][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:027][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:027][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:028][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:028][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:029][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:029][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:029][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:029][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:029][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:029][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:030][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:031][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:031][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:031][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:038][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:038][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:038][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:038][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:040][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:040][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:040][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:040][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:040][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:040][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:040][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:041][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:041][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:042][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:042][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:042][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:049][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:049][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:050][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:050][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:050][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:050][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:050][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:050][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:050][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:051][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:051][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:051][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:051][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:051][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:052][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:052][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:053][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:053][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:053][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:053][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:053][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:061][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:061][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:061][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:061][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:062][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:062][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:062][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:062][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:062][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:062][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:062][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:063][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:063][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:064][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:064][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:065][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:073][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:073][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:073][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:074][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:074][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:074][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:074][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:074][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:074][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:075][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:075][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:076][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:077][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:077][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:077][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:077][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:083][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:083][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:084][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:084][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:086][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:086][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:087][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:088][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:088][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:088][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:095][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:096][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:096][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:096][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:096][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:096][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:097][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:097][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:097][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:098][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:099][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:099][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:099][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:099][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:106][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:107][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:107][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:107][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:107][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:107][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:108][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:108][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:108][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:108][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:108][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:108][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:109][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:109][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:109][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:109][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:109][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:109][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:109][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:110][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:110][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:110][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:118][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:118][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:118][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:118][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:119][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:119][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:119][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:119][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:119][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:119][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:120][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:120][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:120][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:121][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:122][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:122][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:122][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:129][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:129][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:130][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:130][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:130][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:130][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:130][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:131][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:131][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:131][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:131][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:131][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:131][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:132][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:132][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:132][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:132][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:132][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:132][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:132][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:133][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:133][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:133][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:133][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:133][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:133][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:133][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:142][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:142][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:142][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:142][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:143][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:143][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:143][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:143][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:143][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:143][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:143][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:144][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:144][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:144][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:144][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:144][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:144][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:144][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:145][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:145][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:145][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:154][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:155][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:156][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:156][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:157][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:157][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:157][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:157][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:157][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:157][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:157][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:158][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:158][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:158][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:158][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:158][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:158][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:165][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:165][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:166][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:166][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:166][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:166][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:166][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:167][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:167][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:167][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:167][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:167][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:167][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:168][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:168][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:170][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:170][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:170][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:177][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:177][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:177][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:177][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:177][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:178][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:178][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:178][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:178][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:178][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:178][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:178][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:179][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:179][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:180][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:180][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:180][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:180][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:180][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:180][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:180][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:188][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:188][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:188][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:189][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:189][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:189][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:189][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:189][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:189][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:190][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:191][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:191][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:191][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:191][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:191][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:191][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:191][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:192][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:192][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:192][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:192][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:192][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:199][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:199][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:199][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:199][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:199][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:201][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:201][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:201][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:201][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:201][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:201][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:201][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:202][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:202][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:203][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:203][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:203][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:203][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:203][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:203][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:203][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:211][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:211][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:211][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:211][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:212][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:212][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:212][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:212][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:212][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:212][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:212][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:213][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:213][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:213][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:213][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:213][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:214][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:214][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:214][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:214][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:214][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:214][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:215][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:215][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:215][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:215][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:215][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:222][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:222][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:223][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:223][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:223][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:223][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:223][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:223][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:224][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:225][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:225][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:225][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:227][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:235][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:235][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:235][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:235][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:236][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:236][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:236][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:236][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:236][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:236][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:236][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:237][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:237][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:237][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:237][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:237][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:237][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:237][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:238][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:238][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:239][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:245][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:245][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:245][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:245][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:247][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:247][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:247][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:247][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:247][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:247][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:247][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:248][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:248][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:248][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:248][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:248][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:248][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:248][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:249][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:250][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:250][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:257][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:257][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:257][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:257][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:258][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:258][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:258][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:258][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:258][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:258][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:259][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:259][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:259][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:260][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:262][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:262][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:262][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:269][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:269][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:269][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:269][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:270][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:270][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:271][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:271][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:271][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:271][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:271][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:271][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:271][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:272][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:272][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:272][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:280][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:280][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:280][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:281][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:281][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:282][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:282][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:282][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:282][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:282][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:282][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:282][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:283][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:284][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:284][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:284][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:291][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:291][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:291][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:291][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:291][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:293][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:293][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:293][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:293][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:293][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:293][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:294][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:294][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:294][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:294][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:294][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:294][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:294][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:295][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:295][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:295][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:295][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:295][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:296][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:296][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:296][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:296][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:303][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:303][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:303][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:304][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:304][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:304][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:304][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:304][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:304][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:305][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:305][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:305][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:305][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:305][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:306][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:306][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:306][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:307][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:314][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:314][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:315][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:315][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:317][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:317][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:317][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:317][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:317][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:317][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:317][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:318][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:319][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:319][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:319][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:326][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:326][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:327][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:327][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:327][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:327][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:327][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:327][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:328][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:329][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:329][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:329][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:329][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:329][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:329][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:330][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:330][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:330][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:330][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:330][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:330][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:330][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:338][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:338][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:338][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:339][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:339][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:341][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:341][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:342][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:342][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:342][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:342][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:342][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:342][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:343][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:350][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:350][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:350][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:351][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:351][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:352][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:352][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:352][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:352][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:352][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:352][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:352][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:353][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:354][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:354][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:361][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:361][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:361][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:362][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:362][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:362][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:362][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:362][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:362][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:362][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:364][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:364][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:365][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:365][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:365][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:365][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:365][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:366][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:366][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:366][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:366][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:366][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:374][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:375][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:375][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:376][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:376][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:376][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:377][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:377][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:378][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:378][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:378][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:378][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:386][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:386][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:386][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:386][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:387][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:387][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:387][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:387][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:387][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:387][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:387][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:388][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:388][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:388][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:388][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:388][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:388][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:389][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:390][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:390][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:390][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:390][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:397][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:397][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:397][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:397][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:397][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:399][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:399][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:399][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:399][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:399][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:399][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:399][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:400][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:400][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:400][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:400][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:400][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:400][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:401][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:401][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:401][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:401][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:401][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:402][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:402][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:402][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:402][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:408][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:408][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:409][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:409][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:409][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:409][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:409][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:409][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:409][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:411][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:412][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:412][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:412][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:412][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:412][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:412][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:412][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:413][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:413][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:413][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:413][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:413][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:420][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:420][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:420][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:421][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:421][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:421][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:421][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:421][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:421][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:421][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:422][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:422][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:422][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:424][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:425][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:425][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:425][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:431][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:431][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:431][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:433][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:433][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:433][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:433][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:433][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:433][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:434][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:434][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:434][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:434][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:434][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:435][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:435][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:435][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:435][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:435][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:435][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:435][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:436][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:436][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:436][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:436][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:436][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:436][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:443][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:443][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:443][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:444][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:444][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:444][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:444][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:444][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:444][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:444][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:445][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:445][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:447][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:447][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:447][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:447][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:447][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:448][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:448][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:448][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:455][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:455][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:457][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:457][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:457][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:457][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:457][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:458][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:458][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:458][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:458][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:458][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:458][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:458][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:459][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:459][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:459][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:459][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:459][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:459][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:459][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:467][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:467][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:467][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:467][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:468][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:468][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:468][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:468][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:468][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:468][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:469][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:469][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:469][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:470][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:471][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:471][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:471][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:478][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:478][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:479][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:479][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:480][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:480][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:480][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:480][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:481][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:481][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:481][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:481][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:482][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:483][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:483][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:483][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:490][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:490][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:490][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:491][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:491][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:491][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:491][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:491][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:491][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:492][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:493][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:493][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:493][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:494][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:494][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:494][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:494][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:494][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:495][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:495][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:495][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:495][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:502][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:502][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:503][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:503][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:504][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:504][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:505][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:505][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:505][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:505][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:505][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:505][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:506][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:506][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:507][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:507][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:507][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:507][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:507][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:507][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:507][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:514][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:514][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:514][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:514][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:515][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:515][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:517][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:517][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:517][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:517][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:517][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:517][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:518][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:519][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:519][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:519][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:526][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:526][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:526][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:526][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:527][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:527][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:527][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:527][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:527][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:527][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:527][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:528][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:528][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:528][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:528][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:528][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:528][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:528][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:529][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:529][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:529][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:529][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:529][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:530][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:530][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:530][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:530][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:537][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:538][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:538][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:538][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:538][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:539][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:539][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:539][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:539][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:539][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:539][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:539][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:540][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:540][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:540][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:540][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:540][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:540][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:541][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:542][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:542][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:542][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:549][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:549][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:549][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:550][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:550][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:550][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:550][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:550][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:550][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:551][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:552][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:552][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:552][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:552][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:552][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:552][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:553][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:553][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:553][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:553][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:553][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:560][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:560][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:561][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:561][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:561][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:561][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:561][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:561][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:562][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:563][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:563][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:563][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:563][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:563][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:563][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:563][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:564][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:564][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:564][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:564][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:564][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:564][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:571][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:572][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:572][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:572][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:572][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:573][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:573][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:573][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:573][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:573][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:573][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:574][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:574][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:574][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:574][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:574][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:574][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:574][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:575][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:575][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:575][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:583][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:583][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:583][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:584][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:584][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:585][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:585][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:585][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:585][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:585][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:585][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:585][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:587][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:587][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:587][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:587][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:587][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:588][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:588][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:588][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:588][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:595][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:595][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:595][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:596][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:596][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:596][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:596][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:597][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:597][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:597][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:597][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:597][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:597][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:598][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:598][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:598][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:598][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:598][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:598][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:599][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:599][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:600][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:607][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:607][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:607][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:607][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:608][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:608][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:608][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:608][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:608][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:608][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:609][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:609][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:610][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:611][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:611][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:611][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:611][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:618][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:619][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:619][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:619][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:619][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:619][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:620][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:620][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:620][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:620][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:620][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:620][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:621][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:621][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:621][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:621][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:621][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:621][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:621][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:622][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:622][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:623][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:630][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:631][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:631][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:631][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:631][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:632][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:632][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:632][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:632][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:632][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:632][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:633][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:633][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:633][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:633][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:633][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:633][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:633][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:634][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:635][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:635][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:635][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:642][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:642][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:642][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:643][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:643][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:643][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:643][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:643][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:643][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:644][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:645][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:645][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:647][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:647][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:647][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:647][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:654][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:654][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:654][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:654][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:655][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:655][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:655][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:655][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:655][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:655][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:655][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:656][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:656][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:657][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:657][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:658][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:658][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:658][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:658][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:658][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:658][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:666][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:666][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:666][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:666][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:667][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:667][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:667][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:667][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:667][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:667][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:668][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:668][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:669][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:669][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:669][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:669][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:669][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:670][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:670][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:670][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:670][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:670][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:677][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:677][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:677][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:678][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:678][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:678][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:678][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:678][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:678][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:679][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:680][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:680][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:680][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:680][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:680][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:680][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:681][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:681][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:681][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:681][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:681][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:681][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:688][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:688][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:688][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:688][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:690][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:690][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:690][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:690][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:690][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:690][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:691][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:692][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:692][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:693][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:693][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:693][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:693][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:700][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:700][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:700][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:700][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:701][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:701][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:701][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:701][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:701][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:701][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:702][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:702][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:702][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:703][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:703][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:703][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:703][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:703][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:704][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:704][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:704][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:704][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:712][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:713][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:713][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:713][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:713][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:714][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:714][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:714][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:714][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:714][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:714][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:715][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:715][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:715][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:715][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:715][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:715][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:715][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:716][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:716][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:716][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:716][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:716][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:717][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:717][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:717][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:717][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:723][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:724][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:724][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:724][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:725][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:725][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:725][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:725][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:726][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:726][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:726][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:726][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:726][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:727][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:727][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:728][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:728][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:728][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:728][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:728][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:728][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:735][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:735][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:735][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:735][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:735][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:737][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:737][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:737][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:737][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:737][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:737][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:738][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:738][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:739][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:739][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:739][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:739][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:739][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:739][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:747][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:747][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:747][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:748][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:748][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:748][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:748][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:748][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:748][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:749][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:749][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:749][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:749][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:749][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:750][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:750][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:750][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:750][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:750][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:750][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:750][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:751][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:751][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:751][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:751][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:751][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:751][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:759][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:759][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:759][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:760][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:760][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:760][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:760][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:760][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:760][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:761][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:762][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:762][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:762][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:762][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:762][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:762][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:763][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:763][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:763][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:763][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:763][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:763][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:770][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:771][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:771][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:771][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:771][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:771][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:772][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:772][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:772][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:772][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:772][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:772][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:773][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:773][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:773][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:773][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:773][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:773][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:773][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:775][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:775][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:775][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:782][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:782][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:783][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:783][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:783][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:783][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:783][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:784][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:784][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:784][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:784][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:784][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:784][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:785][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:785][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:787][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:787][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:787][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:787][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:787][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:793][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:794][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:794][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:794][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:794][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:795][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:795][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:797][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:797][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:797][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:797][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:797][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:797][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:798][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:798][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:799][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:807][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:807][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:807][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:807][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:808][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:808][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:808][767]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:808][767]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:808][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:808][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:809][767]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:810][767]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:810][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:810][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:810][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:810][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:810][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:811][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:811][767]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:811][767]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:811][767]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:811][767]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:818][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:818][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:819][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:819][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:820][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:820][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:820][768]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:820][768]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:820][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:820][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:821][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:821][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:821][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:821][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:821][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:822][768]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:822][768]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:822][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:822][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:822][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:822][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:823][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:823][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:823][768]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:823][768]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:823][768]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:823][768]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:830][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:831][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:831][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:831][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:831][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:831][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:832][769]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:832][769]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:832][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:832][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:832][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:832][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:832][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:833][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:833][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:833][769]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:833][769]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:833][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:833][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:834][769]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:834][769]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:834][769]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:842][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:842][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:843][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:843][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:843][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:843][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:843][770]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:843][770]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:844][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:844][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:844][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:844][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:844][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:845][770]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:845][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:847][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:847][770]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:847][770]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:847][770]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:847][770]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:854][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:855][771]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:857][771]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:857][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:857][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:857][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:857][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:858][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:858][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:858][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:858][771]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:858][771]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:858][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:858][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:859][771]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:859][771]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:860][771]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:867][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:867][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:867][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:867][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:867][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:868][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:868][772]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:868][772]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:868][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:868][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:868][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:869][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:869][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:869][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:869][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:869][772]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:869][772]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:869][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:871][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:871][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:871][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:871][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:871][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:872][772]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:872][772]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:872][772]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:872][772]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:878][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:878][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:879][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:879][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:879][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:879][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:880][773]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:880][773]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:880][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:880][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:880][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:880][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:882][773]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:882][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:883][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:883][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:883][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:883][773]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:883][773]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:883][773]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:883][773]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:890][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:890][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:891][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:891][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:891][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:891][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:891][774]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:891][774]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:893][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:893][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:893][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:893][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:893][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:894][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:894][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:894][774]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:894][774]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:894][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:894][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:894][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:895][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:895][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:895][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:895][774]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:895][774]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:895][774]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:895][774]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:903][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:903][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:903][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:903][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:903][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:905][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:905][775]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:905][775]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:905][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:905][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:905][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:905][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:906][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:906][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:906][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:906][775]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:906][775]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:906][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:906][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:907][775]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:907][775]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:908][775]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:914][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:915][776]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:915][776]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:916][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:916][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:916][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:916][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:916][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:917][776]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:917][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:918][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:918][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:918][776]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:918][776]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:918][776]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:918][776]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:924][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:924][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:924][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:924][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:925][777]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:925][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:927][777]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:927][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:928][777]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:928][777]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:928][777]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:928][777]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:934][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:934][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:935][778]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:935][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:937][778]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:937][778]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:937][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:938][778]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:939][778]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:939][778]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:939][778]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:945][779]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:945][779]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:947][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:948][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:948][779]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:948][779]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:948][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:948][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:948][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:948][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:950][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:950][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:950][779]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:950][779]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:950][779]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:950][779]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:956][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:956][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:957][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:957][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:957][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:957][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:957][780]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:957][780]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:958][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:958][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:958][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:958][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:958][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:959][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:959][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:959][780]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:959][780]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:959][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:959][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:959][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:960][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:960][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:960][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:960][780]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:960][780]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:960][780]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:960][780]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:967][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:967][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:967][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:967][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:968][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:968][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:968][781]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:968][781]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:968][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:968][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:968][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:969][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:969][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:969][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:969][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:969][781]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:969][781]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:969][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:970][781]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:971][781]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:971][781]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:971][781]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:977][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:977][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:978][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:978][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:978][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:978][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:978][782]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:978][782]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:978][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:979][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:979][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:979][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:979][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:979][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:980][782]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:980][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:981][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:981][782]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:981][782]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:981][782]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:981][782]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:987][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:988][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:988][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:988][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:988][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:988][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:989][783]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:989][783]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:989][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:989][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:989][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:989][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:989][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:990][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:990][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:990][783]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:990][783]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.05:990][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:990][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:990][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:991][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:991][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:991][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:991][783]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:991][783]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:991][783]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.05:991][783]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:998][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:998][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.05:999][784]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.05:999][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:000][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:000][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:000][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:000][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:000][784]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:000][784]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:000][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:001][784]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:001][784]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:001][784]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:008][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:008][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:008][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:008][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:008][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:010][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:010][785]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:010][785]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:010][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:010][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:010][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:010][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:011][785]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:011][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:012][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:012][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:012][785]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:012][785]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:012][785]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:012][785]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:019][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:019][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:019][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:019][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:019][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:020][786]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:020][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:022][786]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:022][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:023][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:023][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:023][786]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:023][786]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:023][786]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:023][786]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:029][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:030][787]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:030][787]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:031][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:031][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:031][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:031][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:031][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:032][787]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:032][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:034][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:034][787]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:034][787]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:035][787]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:035][787]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:040][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:041][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:041][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:041][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:041][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:042][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:042][788]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:042][788]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:042][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:042][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:042][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:042][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:044][788]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:044][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:045][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:045][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:045][788]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:045][788]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:045][788]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:045][788]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:052][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:052][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:053][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:053][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:053][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:053][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:053][789]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:053][789]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:053][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:054][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:054][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:054][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:054][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:054][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:055][789]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:055][789]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:057][789]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:057][789]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:057][789]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:062][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:062][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:063][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:063][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:063][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:063][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:063][790]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:064][790]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:064][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:064][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:064][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:064][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:064][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:066][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:066][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:066][790]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:066][790]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:066][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:066][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:066][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:067][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:067][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:067][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:067][790]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:067][790]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:067][790]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:067][790]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:074][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:074][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:074][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:075][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:075][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:075][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:075][791]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:075][791]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:075][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:075][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:076][791]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:076][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:077][791]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:077][791]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:077][791]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:084][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:084][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:085][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:085][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:085][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:085][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:085][792]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:085][792]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:085][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:086][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:086][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:086][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:087][792]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:087][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:088][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:088][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:088][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:088][792]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:088][792]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:088][792]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:088][792]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:095][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:095][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:095][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:095][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:095][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:096][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:096][793]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:096][793]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:097][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:097][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:097][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:097][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:098][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:098][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:098][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:098][793]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:098][793]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:098][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:099][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:099][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:099][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:099][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:099][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:100][793]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:100][793]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:100][793]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:100][793]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:106][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:106][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:106][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:107][794]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:107][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:109][794]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:109][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:110][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:110][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:110][794]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:110][794]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:110][794]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:110][794]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:117][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:117][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:117][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:117][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:117][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:118][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:118][795]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:118][795]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:118][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:118][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:118][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:118][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:119][795]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:119][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:120][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:120][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:120][795]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:120][795]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:120][795]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:120][795]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:127][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:127][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:127][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:127][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:128][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:128][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:128][796]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:128][796]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:128][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:128][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:129][796]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:129][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:130][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:130][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:130][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:130][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:130][796]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:131][796]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:131][796]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:131][796]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:137][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:137][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:137][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:137][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:137][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:138][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:138][797]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:138][797]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:138][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:138][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:138][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:138][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:139][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:139][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:139][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:139][797]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:139][797]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:139][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:140][797]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:141][797]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:141][797]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:147][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:147][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:148][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:148][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:148][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:149][798]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:149][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:150][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:150][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:150][798]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:150][798]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:150][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:150][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:150][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:151][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:151][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:151][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:151][798]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:151][798]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:151][798]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:151][798]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:157][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:157][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:158][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:158][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:158][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:158][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:158][799]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:158][799]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:158][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:159][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:159][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:159][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:159][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:159][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:160][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:160][799]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:160][799]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:160][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:160][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:160][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:160][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:161][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:161][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:161][799]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:161][799]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:161][799]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:161][799]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:167][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:167][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:169][800]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:169][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:170][800]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:170][800]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:171][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:172][800]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:172][800]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:172][800]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:172][800]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:178][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:178][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:178][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:179][801]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:179][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:180][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:180][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:180][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:180][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:180][801]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:180][801]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:181][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:183][801]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:183][801]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:183][801]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:183][801]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:188][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:188][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:188][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:189][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:189][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:189][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:189][802]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:189][802]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:189][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:189][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:191][802]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:191][802]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:191][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:192][802]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:193][802]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:193][802]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:193][802]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:199][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:199][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:199][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:199][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:200][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:200][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:200][803]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:200][803]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:200][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:200][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:201][803]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:201][803]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:201][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:202][803]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:203][803]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:203][803]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:203][803]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:209][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:209][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:210][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:210][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:210][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:210][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:210][804]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:210][804]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:210][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:211][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:212][804]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:212][804]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:214][804]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:214][804]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:214][804]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:219][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:219][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:221][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:221][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:221][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:221][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:221][805]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:221][805]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:221][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:222][805]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:222][805]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:223][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:225][805]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:225][805]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:225][805]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:225][805]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:231][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:231][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:232][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:232][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:232][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:232][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:232][806]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:232][806]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:233][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:234][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:234][806]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:234][806]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:234][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:234][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:234][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:234][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:235][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:235][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:235][806]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:235][806]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:235][806]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:235][806]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:242][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:242][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:242][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:242][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:243][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:243][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:243][807]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:243][807]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:243][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:243][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:243][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:244][807]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:244][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:246][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:246][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:246][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:246][807]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:246][807]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:246][807]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:246][807]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:252][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:253][808]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:253][808]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:253][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:254][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:254][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:254][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:254][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:254][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:255][808]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:255][808]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:257][808]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:257][808]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:257][808]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:263][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:263][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:264][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:264][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:264][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:264][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:264][809]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:264][809]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:264][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:265][809]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:266][809]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:266][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:266][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:267][809]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:268][809]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:268][809]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:273][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:274][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:274][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:274][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:274][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:275][810]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:275][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:277][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:277][810]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:277][810]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:277][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:277][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:277][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:277][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:278][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:278][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:278][810]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:278][810]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:278][810]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:278][810]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:284][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:284][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:284][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:284][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:285][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:285][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:285][811]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:285][811]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:285][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:285][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:285][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:287][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:287][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:287][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:287][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:287][811]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:287][811]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:287][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:288][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:288][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:288][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:288][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:288][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:289][811]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:289][811]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:289][811]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:289][811]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:294][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:295][812]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:295][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:297][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:297][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:297][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:297][812]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:297][812]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:297][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:297][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:298][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:298][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:298][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:299][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:299][812]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:299][812]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:299][812]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:300][812]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:305][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:305][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:305][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:305][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:307][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:307][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:307][813]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:307][813]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:307][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:307][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:307][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:308][813]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:308][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:310][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:310][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:310][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:310][813]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:310][813]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:310][813]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:310][813]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:316][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:317][814]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:317][814]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:317][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:319][814]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:319][814]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:320][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:321][814]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:321][814]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:321][814]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:321][814]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:327][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:327][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:327][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:327][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:327][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:328][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:328][815]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:328][815]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:328][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:328][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:328][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:328][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:329][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:329][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:329][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:329][815]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:329][815]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:329][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:329][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:331][815]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:331][815]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:331][815]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:338][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:338][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:338][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:338][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:339][816]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:339][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:340][816]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:340][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:342][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:342][816]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:342][816]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:342][816]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:342][816]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:348][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:348][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:349][817]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:349][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:351][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:351][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:351][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:351][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:351][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:352][817]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:352][817]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:352][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:352][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:352][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:352][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:352][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:353][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:353][817]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:353][817]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:353][817]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:353][817]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:359][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:360][818]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:360][818]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:360][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:361][818]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:361][818]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:361][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:363][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:363][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:363][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:363][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:363][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:364][818]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:364][818]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:364][818]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:364][818]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:369][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:370][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:370][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:370][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:370][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:371][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:371][819]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:371][819]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:371][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:371][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:371][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:372][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:372][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:372][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:372][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:372][819]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:372][819]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:373][819]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:374][819]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:374][819]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:374][819]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:380][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:381][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:381][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:381][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:381][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:382][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:382][820]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:382][820]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:382][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:382][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:382][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:382][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:383][820]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:383][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:385][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:385][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:385][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:385][820]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:385][820]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:385][820]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:385][820]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:391][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:391][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:392][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:392][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:392][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:392][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:392][821]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:392][821]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:392][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:393][821]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:393][821]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:395][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:396][821]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:396][821]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:396][821]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:396][821]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:402][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:402][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:403][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:403][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:403][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:403][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:403][822]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:404][822]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:404][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:404][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:404][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:404][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:404][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:405][822]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:405][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:406][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:406][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:406][822]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:406][822]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:406][822]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:406][822]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:413][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:413][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:413][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:413][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:414][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:414][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:414][823]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:414][823]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:414][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:414][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:414][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:415][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:415][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:415][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:415][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:415][823]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:416][823]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:416][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:416][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:416][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:416][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:416][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:417][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:417][823]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:417][823]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:417][823]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:417][823]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:422][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:424][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:424][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:424][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:424][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:424][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:425][824]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:425][824]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:425][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:425][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:425][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:425][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:425][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:426][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:426][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:426][824]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:426][824]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:426][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:426][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:427][824]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:427][824]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:427][824]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:433][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:433][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:433][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:434][825]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:434][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:436][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:436][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:436][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:436][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:436][825]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:436][825]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:436][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:437][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:437][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:437][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:437][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:437][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:438][825]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:438][825]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:438][825]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:438][825]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:444][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:444][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:445][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:445][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:445][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:445][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:446][826]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:446][826]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:446][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:446][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:446][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:446][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:447][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:447][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:447][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:447][826]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:447][826]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:447][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:448][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:448][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:448][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:448][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:448][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:449][826]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:449][826]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:449][826]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:449][826]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:456][827]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:456][827]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:457][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:458][827]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:458][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:460][827]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:460][827]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:460][827]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:460][827]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:465][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:466][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:466][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:466][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:466][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:467][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:467][828]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:467][828]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:467][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:467][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:467][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:468][828]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:468][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:469][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:469][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:469][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:470][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:470][828]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:470][828]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:470][828]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:470][828]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:476][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:477][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:477][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:477][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:477][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:477][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:478][829]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:478][829]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:478][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:478][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:478][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:478][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:479][829]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:479][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:480][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:480][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:480][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:480][829]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:480][829]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:481][829]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:481][829]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:488][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:489][830]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:489][830]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:489][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:489][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:489][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:489][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:490][830]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:490][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:492][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:492][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:492][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:492][830]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:492][830]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:492][830]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:492][830]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:498][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:498][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:498][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:499][831]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:499][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:501][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:501][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:501][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:501][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:501][831]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:501][831]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:502][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:502][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:502][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:502][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:502][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:503][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:503][831]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:503][831]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:503][831]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:503][831]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:509][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:510][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:510][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:510][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:510][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:511][832]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:511][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:512][832]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:512][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:514][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:514][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:514][832]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:514][832]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:514][832]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:514][832]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:520][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:521][833]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:521][833]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:523][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:523][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:523][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:523][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:523][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:524][833]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:524][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:525][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:525][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:525][833]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:525][833]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:525][833]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:525][833]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:531][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:532][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:532][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:533][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:533][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:533][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:533][834]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:533][834]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:533][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:534][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:534][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:534][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:534][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:534][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:535][834]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:535][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:537][834]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:537][834]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:537][834]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:537][834]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:543][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:544][835]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:544][835]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:544][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:544][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:544][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:544][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:545][835]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:545][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:547][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:547][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:547][835]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:547][835]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:547][835]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:547][835]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:554][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:554][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:554][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:554][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:555][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:555][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:555][836]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:555][836]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:555][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:555][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:555][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:556][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:556][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:557][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:557][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:557][836]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:557][836]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:557][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:557][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:557][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:558][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:558][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:558][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:558][836]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:558][836]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:558][836]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:558][836]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:564][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:564][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:565][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:565][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:565][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:565][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:565][837]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:565][837]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:566][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:566][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:567][837]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:567][837]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:567][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:568][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:568][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:568][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:568][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:568][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:569][837]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:569][837]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:569][837]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:569][837]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:575][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:575][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:576][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:576][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:576][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:576][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:576][838]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:577][838]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:577][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:577][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:577][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:577][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:578][838]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:578][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:580][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:580][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:580][838]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:580][838]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:580][838]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:580][838]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:585][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:587][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:587][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:587][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:587][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:587][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:588][839]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:588][839]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:588][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:588][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:588][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:589][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:589][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:589][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:589][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:589][839]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:589][839]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:589][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:590][839]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:591][839]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:591][839]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:591][839]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:597][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:598][840]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:598][840]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:600][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:601][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:601][840]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:601][840]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:601][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:601][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:601][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:602][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:602][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:602][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:602][840]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:602][840]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:602][840]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:602][840]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:609][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:609][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:609][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:609][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:609][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:611][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:611][841]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:611][841]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:611][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:611][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:611][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:612][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:612][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:612][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:612][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:612][841]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:612][841]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:612][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:613][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:613][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:613][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:613][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:614][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:614][841]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:614][841]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:614][841]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:614][841]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:620][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:620][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:621][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:621][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:621][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:621][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:621][842]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:621][842]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:621][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:622][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:622][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:622][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:622][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:623][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:623][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:623][842]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:623][842]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:623][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:623][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:623][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:625][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:625][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:625][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:625][842]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:625][842]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:625][842]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:626][842]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:631][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:631][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:631][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:633][843]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:633][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:634][843]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:634][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:635][843]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:635][843]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:635][843]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:642][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:642][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:642][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:642][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:643][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:643][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:643][844]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:643][844]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:643][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:643][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:643][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:645][844]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:645][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:646][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:646][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:647][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:647][844]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:647][844]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:647][844]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:647][844]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:653][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:653][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:653][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:653][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:654][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:654][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:654][845]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:654][845]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:654][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:654][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:655][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:655][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:655][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:655][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:655][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:657][845]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:657][845]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:657][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:657][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:657][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:657][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:657][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:658][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:658][845]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:658][845]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:658][845]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:658][845]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:664][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:664][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:664][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:665][846]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:665][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:667][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:667][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:667][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:667][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:667][846]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:667][846]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:667][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:668][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:668][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:668][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:668][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:669][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:669][846]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:669][846]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:669][846]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:669][846]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:675][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:675][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:675][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:675][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:675][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:676][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:676][847]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:676][847]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:676][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:677][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:677][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:677][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:677][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:678][847]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:678][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:679][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:679][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:679][847]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:679][847]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:679][847]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:679][847]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:686][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:686][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:686][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:686][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:687][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:687][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:687][848]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:688][848]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:688][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:688][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:688][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:689][848]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:689][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:690][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:690][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:690][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:690][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:690][848]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:691][848]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:691][848]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:691][848]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:697][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:697][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:697][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:697][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:698][849]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:698][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:700][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:700][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:700][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:700][849]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:700][849]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:700][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:701][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:701][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:701][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:701][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:701][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:702][849]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:702][849]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:702][849]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:702][849]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:708][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:708][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:708][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:708][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:709][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:709][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:709][850]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:709][850]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:709][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:709][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:709][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:710][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:710][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:710][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:710][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:710][850]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:711][850]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:711][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:711][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:711][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:711][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:712][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:712][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:712][850]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:712][850]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:712][850]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:712][850]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:718][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:719][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:719][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:719][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:719][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:720][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:720][851]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:720][851]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:720][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:720][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:720][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:720][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:722][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:722][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:722][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:722][851]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:722][851]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:722][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:722][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:723][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:723][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:723][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:723][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:723][851]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:724][851]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:724][851]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:724][851]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:729][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:729][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:731][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:731][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:731][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:731][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:732][852]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:732][852]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:732][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:732][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:732][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:733][852]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:733][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:734][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:734][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:734][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:734][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:734][852]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:735][852]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:735][852]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:735][852]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:741][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:741][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:742][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:742][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:742][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:743][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:743][853]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:743][853]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:743][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:743][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:743][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:744][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:744][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:744][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:744][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:744][853]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:744][853]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:745][853]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:745][853]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:745][853]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:753][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:753][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:754][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:754][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:754][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:754][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:754][854]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:754][854]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:755][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:757][854]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:757][854]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:757][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:757][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:757][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:757][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:758][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:758][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:758][854]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:758][854]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:758][854]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:758][854]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:764][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:765][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:765][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:765][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:765][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:766][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:766][855]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:766][855]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:766][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:766][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:767][855]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:767][855]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:769][855]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:770][855]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:770][855]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:770][855]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:775][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:775][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:777][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:777][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:777][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:777][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:777][856]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:778][856]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:778][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:779][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:779][856]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:779][856]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:779][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:779][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:779][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:780][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:780][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:780][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:780][856]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:780][856]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:780][856]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:780][856]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:787][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:787][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:788][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:788][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:788][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:788][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:788][857]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:788][857]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:788][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:790][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:790][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:790][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:790][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:791][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:791][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:791][857]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:791][857]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:791][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:791][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:792][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:792][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:792][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:792][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:792][857]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:793][857]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:793][857]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:793][857]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:799][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:799][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:800][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:800][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:800][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:800][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:800][858]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:800][858]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:800][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:801][858]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:801][858]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:803][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:804][858]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:804][858]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:804][858]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:804][858]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:810][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:810][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:811][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:811][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:811][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:811][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:811][859]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:811][859]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:811][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:812][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:812][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:812][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:812][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:813][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:813][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:813][859]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:813][859]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:813][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:813][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:813][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:815][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:815][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:815][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:815][859]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:815][859]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:815][859]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:815][859]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:821][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:822][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:822][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:822][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:822][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:823][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:823][860]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:823][860]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:823][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:823][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:823][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:824][860]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:824][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:826][860]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:827][860]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:827][860]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:833][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:833][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:833][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:833][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:833][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:835][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:835][861]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:835][861]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:835][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:835][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:835][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:835][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:836][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:836][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:837][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:837][861]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:837][861]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:837][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:837][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:837][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:838][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:838][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:838][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:838][861]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:838][861]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:838][861]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:839][861]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:845][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:845][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:845][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:845][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:845][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:847][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:847][862]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:847][862]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:847][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:847][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:847][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:847][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:848][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:848][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:848][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:848][862]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:848][862]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:848][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:848][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:850][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:850][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:850][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:850][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:850][862]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:851][862]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:851][862]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:851][862]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:856][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:857][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:857][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:857][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:857][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:858][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:858][863]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:858][863]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:858][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:858][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:858][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:860][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:860][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:860][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:860][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:860][863]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:860][863]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:860][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:861][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:861][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:861][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:861][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:861][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:862][863]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:862][863]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:862][863]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:862][863]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:869][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:869][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:869][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:870][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:870][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:870][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:870][864]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:870][864]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:870][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:871][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:872][864]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:872][864]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:872][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:872][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:872][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:872][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:874][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:874][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:874][864]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:874][864]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:874][864]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:874][864]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:880][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:880][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:881][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:881][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:881][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:881][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:882][865]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:882][865]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:882][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:882][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:882][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:883][865]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:883][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:884][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:884][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:884][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:884][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:884][865]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:886][865]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:886][865]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:886][865]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:891][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:891][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:893][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:893][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:893][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:893][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:893][866]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:893][866]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:894][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:895][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:895][866]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:895][866]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:895][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:895][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:895][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:896][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:896][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:897][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:897][866]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:897][866]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:897][866]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:897][866]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:903][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:904][867]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:904][867]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:905][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:907][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:907][867]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:907][867]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:907][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:907][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:907][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:907][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:908][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:908][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:908][867]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:908][867]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:908][867]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:908][867]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:915][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:915][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:916][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:916][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:916][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:917][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:917][868]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:917][868]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:917][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:917][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:917][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:918][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:918][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:918][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:918][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:918][868]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:918][868]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:919][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:919][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:919][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:919][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:919][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:920][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:920][868]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:920][868]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:920][868]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:920][868]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:927][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:927][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:927][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:927][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:928][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:928][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:928][869]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:928][869]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:928][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:928][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:929][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:929][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:929][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:929][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:929][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:930][869]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:930][869]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:930][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:930][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:930][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:931][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:931][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:931][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:931][869]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:932][869]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:932][869]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:932][869]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:938][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:939][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:939][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:939][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:939][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:939][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:940][870]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:940][870]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:940][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:940][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:940][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:940][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:941][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:941][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:941][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:941][870]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:941][870]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:941][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:942][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:942][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:942][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:942][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:942][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:943][870]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:943][870]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:943][870]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:943][870]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:949][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:949][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:950][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:950][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:950][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:950][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:950][871]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:950][871]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:951][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:953][871]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:953][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:954][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:954][871]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:954][871]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:954][871]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:954][871]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:960][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:961][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:961][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:961][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:962][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:962][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:962][872]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:962][872]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:962][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:962][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:962][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:963][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:963][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:963][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:963][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:964][872]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:964][872]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:964][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:964][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:964][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:964][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:965][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:965][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:965][872]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:965][872]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:965][872]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:965][872]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:971][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:972][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:972][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:972][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:972][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:972][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:973][873]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:973][873]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:973][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:973][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:973][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:973][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:973][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:975][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:975][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:975][873]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:975][873]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:975][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:975][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:975][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:976][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:976][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:976][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:976][873]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:976][873]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:976][873]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:977][873]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:982][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:982][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:983][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:983][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:983][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:983][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:984][874]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:984][874]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:984][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:984][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:984][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:984][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:985][874]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:985][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:987][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:987][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:987][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:987][874]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:987][874]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:987][874]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:988][874]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:993][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:993][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:993][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:993][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:995][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:995][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:995][875]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:995][875]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.06:995][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:995][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:996][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:996][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:996][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:996][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:996][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:997][875]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:997][875]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.06:997][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:997][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:997][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:997][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:998][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:998][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:998][875]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.06:999][875]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.06:999][875]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.06:999][875]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:004][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:005][876]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:005][876]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:005][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:007][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:007][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:007][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:007][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:007][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:008][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:008][876]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:008][876]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:008][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:008][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:008][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:009][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:009][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:009][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:009][876]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:009][876]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:009][876]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:010][876]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:016][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:016][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:017][877]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:017][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:018][877]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:018][877]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:018][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:020][877]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:021][877]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:021][877]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:027][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:027][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:027][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:027][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:028][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:028][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:028][878]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:028][878]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:028][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:028][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:029][878]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:031][878]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:031][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:031][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:031][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:031][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:031][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:032][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:032][878]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:032][878]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:032][878]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:032][878]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:038][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:039][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:039][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:039][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:039][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:040][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:040][879]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:040][879]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:040][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:040][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:040][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:041][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:041][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:041][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:041][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:042][879]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:042][879]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:042][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:042][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:042][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:042][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:043][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:043][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:043][879]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:043][879]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:043][879]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:043][879]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:050][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:050][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:050][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:050][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:050][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:052][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:052][880]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:052][880]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:052][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:052][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:052][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:053][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:053][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:053][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:053][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:053][880]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:054][880]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:054][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:054][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:054][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:054][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:055][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:055][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:055][880]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:055][880]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:055][880]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:055][880]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:061][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:061][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:061][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:062][881]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:062][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:064][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:064][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:064][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:064][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:065][881]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:065][881]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:065][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:065][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:065][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:065][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:066][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:066][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:066][881]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:066][881]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:066][881]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:066][881]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:072][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:073][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:073][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:073][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:073][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:073][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:074][882]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:074][882]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:074][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:074][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:074][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:074][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:075][882]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:075][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:077][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:077][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:077][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:077][882]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:077][882]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:077][882]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:077][882]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:084][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:084][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:084][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:085][883]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:085][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:086][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:086][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:086][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:086][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:087][883]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:087][883]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:087][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:087][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:087][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:087][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:088][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:088][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:088][883]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:088][883]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:088][883]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:088][883]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:094][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:094][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:094][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:094][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:096][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:096][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:096][884]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:096][884]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.06.07:096][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:097][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:097][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:097][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:097][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:097][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:098][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:098][884]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:098][884]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.06.07:098][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:098][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:099][884]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.06.07:099][884]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_9.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.06.07:099][884]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.06.07:129][885]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.06.07:129][885]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.06.07:129][885]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.06.07:129][885]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.06.07:129][885]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.06.07:132][885]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.06.07:135][885]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.06.07:148][885]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.06.07:148][885]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-10.06.07:148][885]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-10.06.07:151][885]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-10.06.07:155][885]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.06.07:156][885]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.06.07:256][886]LogPlayLevel: Display: Destroying online subsystem :Context_15 +[2025.06.16-10.06.32:631][820]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.06.32:637][820]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.06.32:637][820]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.06.32:638][820]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.280 ms (total: 14.073 ms) +[2025.06.16-10.06.32:638][820]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.06.32:638][820]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.06.32:640][820]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002225s) +[2025.06.16-10.06.32:640][820]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002365s) +[2025.06.16-10.06.32:653][820]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.06.32:654][820]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.06.32:655][820]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.06.32:655][820]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.06.32:655][820]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.06.32:655][820]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.06.32:657][820]LogWorldPartition: Display: WorldPartition initialize took 1.083 ms (total: 95.796 ms) +[2025.06.16-10.06.32:657][820]LogPlayLevel: PIE: World Init took: (0.002428s) +[2025.06.16-10.06.32:657][820]LogAudio: Display: Creating Audio Device: Id: 12, Scope: Unique, Realtime: True +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.06.32:658][820]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.06.32:658][820]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.06.32:658][820]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.06.32:658][820]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.06.32:658][820]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.06.32:660][820]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.06.32:686][820]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.06.32:686][820]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.06.32:686][820]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.06.32:686][820]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.06.32:687][820]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=12 +[2025.06.16-10.06.32:687][820]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=12 +[2025.06.16-10.06.32:689][820]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=12 +[2025.06.16-10.06.32:689][820]LogInit: FAudioDevice initialized with ID 12. +[2025.06.16-10.06.32:689][820]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=12 +[2025.06.16-10.06.32:689][820]LogAudio: Display: Audio Device (ID: 12) registered with world 'Dabaza'. +[2025.06.16-10.06.32:689][820]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-10.06.32:691][820]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.06.32:692][820]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.06.32 +[2025.06.16-10.06.32:692][820]LogWorld: Bringing up level for play took: 0.001154 +[2025.06.16-10.06.32:694][820]LogOnline: OSS: Created online subsystem instance for: :Context_16 +[2025.06.16-10.06.32:696][820]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 316 +[2025.06.16-10.06.32:696][820]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.06.46:874][820]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.06.46:874][820]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.06.46:874][820]PIE: Server logged in +[2025.06.16-10.06.46:875][820]PIE: Play in editor total start time 14.239 seconds. +[2025.06.16-10.06.46:897][820]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.06.46:897][820]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.06.46:899][820]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.06.46:899][820]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.06.46:899][820]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.06.46:988][820]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.06.46:991][820]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.06.47:007][820]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.06.47:007][820]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-10.06.47:007][820]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-10.06.47:009][820]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-10.06.47:014][820]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.06.47:030][820]LogAutomationController: Ignoring very large delta of 14.40 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.06.47:032][821]LogPlayLevel: Display: Destroying online subsystem :Context_16 +[2025.06.16-10.06.47:047][823]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-10.06.49:422][100]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.07.18:134][497]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.07.18:140][497]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.07.18:140][497]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.07.18:141][497]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.297 ms (total: 15.371 ms) +[2025.06.16-10.07.18:141][497]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.07.18:141][497]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.07.18:144][497]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002439s) +[2025.06.16-10.07.18:144][497]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002572s) +[2025.06.16-10.07.18:155][497]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.07.18:156][497]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.07.18:157][497]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.07.18:158][497]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.07.18:158][497]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.07.18:158][497]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.07.18:159][497]LogWorldPartition: Display: WorldPartition initialize took 1.017 ms (total: 96.814 ms) +[2025.06.16-10.07.18:159][497]LogPlayLevel: PIE: World Init took: (0.002360s) +[2025.06.16-10.07.18:159][497]LogAudio: Display: Creating Audio Device: Id: 13, Scope: Unique, Realtime: True +[2025.06.16-10.07.18:159][497]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.07.18:159][497]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.07.18:160][497]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.07.18:160][497]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.07.18:160][497]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.07.18:160][497]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.07.18:160][497]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.07.18:160][497]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.07.18:160][497]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.07.18:160][497]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.07.18:160][497]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.07.18:163][497]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.07.18:188][497]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.07.18:188][497]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.07.18:188][497]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.07.18:188][497]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.07.18:188][497]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=13 +[2025.06.16-10.07.18:188][497]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=13 +[2025.06.16-10.07.18:190][497]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=13 +[2025.06.16-10.07.18:190][497]LogInit: FAudioDevice initialized with ID 13. +[2025.06.16-10.07.18:190][497]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=13 +[2025.06.16-10.07.18:190][497]LogAudio: Display: Audio Device (ID: 13) registered with world 'Dabaza'. +[2025.06.16-10.07.18:190][497]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-10.07.18:192][497]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.07.18:193][497]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.07.18 +[2025.06.16-10.07.18:194][497]LogWorld: Bringing up level for play took: 0.001153 +[2025.06.16-10.07.18:195][497]LogOnline: OSS: Created online subsystem instance for: :Context_17 +[2025.06.16-10.07.18:198][497]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 316 +[2025.06.16-10.07.18:198][497]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.07.23:903][497]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 316 +[2025.06.16-10.07.23:903][497]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.07.30:735][497]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.07.30:736][497]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.07.30:736][497]PIE: Server logged in +[2025.06.16-10.07.30:737][497]PIE: Play in editor total start time 12.598 seconds. +[2025.06.16-10.07.30:778][497]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.07.30:778][497]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.07.30:778][497]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.07.30:778][497]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.07.30:778][497]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.07.30:852][497]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.07.30:856][497]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.07.30:871][497]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.07.30:871][497]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-10.07.30:871][497]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-10.07.30:874][497]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-10.07.30:879][497]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.07.30:894][497]LogAutomationController: Ignoring very large delta of 12.76 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.07.30:894][498]LogPlayLevel: Display: Destroying online subsystem :Context_17 +[2025.06.16-10.07.30:912][500]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-10.07.41:115][661]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.07.41:707][726]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.07.42:242][783]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.07.45:352][141]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.07.53:842][129]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.07.53:902][129]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.07.53:902][129]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.07.53:902][129]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.07.53:903][129]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.07.53:904][129]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsF61E316E46548BDB9759759A78FCBA55.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.07.53:915][129]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.651 ms (total: 732.916 ms) +[2025.06.16-10.07.53:982][129]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.07.53:982][129]LogContentValidation: Enabled validators: +[2025.06.16-10.07.53:982][129]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.07.53:982][129]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.07.53:983][129]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.07.53:983][129]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.07.53:983][129]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.07.53:983][129]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.07.53:983][129]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.08.03:537][249]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.08.03:542][249]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.08.03:542][249]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.08.03:544][249]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.309 ms (total: 16.680 ms) +[2025.06.16-10.08.03:544][249]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.08.03:544][249]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.03:547][249]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002250s) +[2025.06.16-10.08.03:547][249]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002396s) +[2025.06.16-10.08.03:562][249]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.08.03:563][249]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.08.03:564][249]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.08.03:564][249]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.08.03:564][249]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.08.03:564][249]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.08.03:565][249]LogWorldPartition: Display: WorldPartition initialize took 1.061 ms (total: 97.875 ms) +[2025.06.16-10.08.03:565][249]LogPlayLevel: PIE: World Init took: (0.002428s) +[2025.06.16-10.08.03:566][249]LogAudio: Display: Creating Audio Device: Id: 14, Scope: Unique, Realtime: True +[2025.06.16-10.08.03:566][249]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.08.03:566][249]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.08.03:566][249]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.08.03:566][249]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.08.03:567][249]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.08.03:567][249]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.08.03:567][249]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.08.03:567][249]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.08.03:567][249]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.08.03:567][249]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.08.03:567][249]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.08.03:569][249]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.08.03:595][249]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.08.03:596][249]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.08.03:596][249]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.08.03:596][249]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.08.03:596][249]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=14 +[2025.06.16-10.08.03:596][249]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=14 +[2025.06.16-10.08.03:599][249]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=14 +[2025.06.16-10.08.03:599][249]LogInit: FAudioDevice initialized with ID 14. +[2025.06.16-10.08.03:599][249]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=14 +[2025.06.16-10.08.03:599][249]LogAudio: Display: Audio Device (ID: 14) registered with world 'Dabaza'. +[2025.06.16-10.08.03:599][249]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-10.08.03:601][249]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.08.03:602][249]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.08.03 +[2025.06.16-10.08.03:602][249]LogWorld: Bringing up level for play took: 0.001099 +[2025.06.16-10.08.03:604][249]LogOnline: OSS: Created online subsystem instance for: :Context_18 +[2025.06.16-10.08.03:606][249]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 316 +[2025.06.16-10.08.03:606][249]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.08.13:844][249]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 316 +[2025.06.16-10.08.13:844][249]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.08.19:280][249]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.08.19:280][249]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.08.19:282][249]PIE: Server logged in +[2025.06.16-10.08.19:282][249]PIE: Play in editor total start time 15.74 seconds. +[2025.06.16-10.08.19:289][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:289][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:289][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:290][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:290][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:291][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:291][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:293][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:293][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:302][249]LogAutomationController: Ignoring very large delta of 15.77 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.08.19:305][250]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.08.19:305][250]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:308][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:308][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:309][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:309][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:311][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:311][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:311][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:311][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:311][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:311][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:403][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:404][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:404][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:406][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:406][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:407][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:407][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:407][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:407][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:407][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:407][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:432][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:432][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:432][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:432][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:432][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:434][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:434][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:435][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:435][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:436][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:436][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:436][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:440][253]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-10.08.19:445][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:445][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:445][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:445][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:447][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:447][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:447][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:447][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:447][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:447][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:447][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:448][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:448][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:449][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:449][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:449][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:449][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:449][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:449][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:449][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:459][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:459][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:459][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:460][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:460][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:462][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:462][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:462][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:462][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:462][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:462][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:462][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:463][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:463][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:464][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:472][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:472][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:472][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:474][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:474][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:475][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:475][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:476][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:476][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:476][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:476][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:485][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:485][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:485][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:487][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:487][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:487][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:488][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:488][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:489][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:498][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:498][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:498][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:498][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:499][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:499][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:500][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:500][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:500][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:500][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:500][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:500][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:500][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:501][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:501][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:501][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:501][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:501][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:501][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:509][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:510][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:510][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:510][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:511][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:511][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:511][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:512][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:512][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:512][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:520][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:520][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:520][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:522][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:522][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:522][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:522][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:522][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:522][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:522][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:523][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:523][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:524][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:524][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:524][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:524][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:524][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:532][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:534][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:534][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:535][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:535][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:536][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:536][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:536][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:536][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:543][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:544][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:544][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:545][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:545][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:545][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:545][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:554][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:554][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:554][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:555][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:555][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:556][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:556][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:556][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:556][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:556][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:556][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:556][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:557][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:557][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:557][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:565][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:565][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:565][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:567][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:567][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:568][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:568][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:568][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:575][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:575][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:577][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:577][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:578][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:578][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:578][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:586][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:586][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:586][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:587][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:587][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:588][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:588][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:589][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:589][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:589][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:589][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:589][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:595][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:597][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:597][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:597][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:598][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:598][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:598][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:599][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:599][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:599][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:607][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:607][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:608][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:608][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:608][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:608][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:608][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:608][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:608][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:609][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:609][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:609][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:618][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:618][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:619][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:619][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:619][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:620][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:620][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:620][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:628][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:628][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:628][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:629][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:629][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:629][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:629][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:629][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:629][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:629][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:630][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:630][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:630][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:631][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:631][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:632][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:638][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:638][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:639][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:639][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:639][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:639][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:639][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:639][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:639][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:640][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:641][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:641][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:642][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:642][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:642][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:642][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:649][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:649][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:649][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:649][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:650][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:650][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:650][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:650][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:650][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:650][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:650][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:651][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:651][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:652][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:652][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:652][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:652][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:652][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:652][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:652][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:660][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:660][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:661][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:661][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:661][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:663][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:663][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:663][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:670][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:670][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:670][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:671][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:671][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:672][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:672][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:674][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:674][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:674][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:674][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:674][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:674][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:681][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:681][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:681][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:681][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:682][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:682][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:683][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:683][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:684][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:684][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:684][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:684][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:691][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:691][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:691][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:692][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:692][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:693][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:693][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:694][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:694][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:694][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:694][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:694][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:700][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:702][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:702][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:703][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:703][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:703][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:704][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:704][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:704][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:712][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:712][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:712][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:713][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:713][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:713][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:713][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:713][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:713][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:713][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:714][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:714][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:715][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:715][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:715][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:722][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:722][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:722][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:722][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:722][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:723][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:723][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:724][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:724][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:725][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:725][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:725][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:725][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:725][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:732][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:732][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:732][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:732][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:733][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:733][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:734][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:734][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:735][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:735][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:735][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:735][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:735][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:735][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:743][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:743][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:743][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:743][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:744][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:744][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:744][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:744][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:744][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:744][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:744][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:745][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:745][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:747][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:747][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:747][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:754][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:754][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:754][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:754][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:755][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:755][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:755][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:755][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:755][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:755][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:755][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:756][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:756][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:756][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:756][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:756][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:756][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:756][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:757][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:757][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:757][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:765][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:766][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:766][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:767][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:767][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:767][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:768][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:768][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:769][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:776][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:776][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:777][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:777][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:779][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:779][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:780][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:780][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:780][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:780][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:780][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:788][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:788][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:788][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:788][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:788][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:789][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:789][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:790][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:790][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:790][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:791][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:798][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:798][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:798][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:798][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:798][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:799][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:799][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:800][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:800][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:801][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:801][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:801][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:801][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:801][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:809][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:810][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:810][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:811][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:811][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:812][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:812][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:812][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:812][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:820][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:820][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:820][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:821][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:821][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:821][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:822][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:822][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:823][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:830][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:830][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:830][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:831][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:831][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:832][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:832][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:834][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:834][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:834][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:834][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:834][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:834][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:841][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:841][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:841][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:841][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:842][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:842][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:843][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:843][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:844][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:844][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:844][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:844][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:844][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:844][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:852][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:852][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:853][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:853][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:854][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:854][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:855][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:855][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:855][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:855][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:855][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:855][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:855][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:862][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:862][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:862][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:862][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:862][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:863][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:863][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:863][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:863][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:863][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:863][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:863][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:864][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:864][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:866][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:866][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:866][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:866][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:866][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:866][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:873][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:873][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:873][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:873][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:873][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:874][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:874][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:875][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:875][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:875][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:875][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:883][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:883][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:883][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:883][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:883][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:884][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:884][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:885][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:885][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:885][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:887][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:893][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:893][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:895][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:895][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:896][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:896][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:896][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:896][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:897][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:897][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:897][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:898][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:905][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:905][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:905][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:906][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:906][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:906][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:907][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:907][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:908][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:908][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:908][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:908][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:908][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:908][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:916][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:916][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:917][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:917][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:918][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:918][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:918][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:918][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:918][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:918][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:926][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:926][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:927][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:928][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:928][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:928][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:928][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:929][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:929][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:929][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:929][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:929][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:929][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:929][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:937][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:937][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:937][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:937][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:937][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:938][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:938][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:939][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:939][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:940][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:940][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:940][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:947][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:947][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:947][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:947][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:948][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:948][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:949][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:949][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:950][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:950][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:950][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:950][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:950][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:958][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:958][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:958][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:959][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:959][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:960][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:960][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:961][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:961][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:961][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:961][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:961][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:961][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:961][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:969][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:969][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:969][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:969][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:970][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:970][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:971][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:971][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:972][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:972][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:972][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:972][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:972][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:972][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:972][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:980][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:981][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:981][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:981][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:982][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:982][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:982][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:983][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:983][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:983][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:992][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:992][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:993][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:993][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:994][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:994][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.19:994][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.19:995][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.19:995][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.19:995][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:003][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:003][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:003][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:003][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:003][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:004][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:004][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:005][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:005][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:005][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:007][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:014][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:014][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:015][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:015][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:017][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:017][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:017][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:017][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:017][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:024][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:024][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:025][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:025][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:027][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:027][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:028][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:028][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:028][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:028][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:028][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:028][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:035][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:035][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:035][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:037][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:037][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:038][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:038][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:039][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:039][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:039][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:039][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:039][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:039][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:039][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:047][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:047][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:047][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:048][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:048][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:048][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:048][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:048][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:048][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:049][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:049][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:051][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:051][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:051][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:051][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:051][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:051][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:057][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:057][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:057][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:059][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:059][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:059][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:059][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:059][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:059][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:059][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:060][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:060][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:060][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:061][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:061][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:061][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:069][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:070][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:070][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:070][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:070][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:070][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:070][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:070][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:071][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:071][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:072][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:072][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:072][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:072][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:072][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:079][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:079][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:079][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:080][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:080][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:080][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:080][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:080][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:080][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:080][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:081][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:081][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:081][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:082][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:082][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:082][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:090][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:090][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:090][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:090][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:090][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:091][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:091][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:091][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:091][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:091][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:091][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:091][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:092][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:092][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:093][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:093][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:093][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:093][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:093][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:093][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:093][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:101][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:101][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:101][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:102][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:102][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:104][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:104][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:105][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:105][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:105][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:105][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:105][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:105][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:111][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:113][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:113][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:113][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:114][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:114][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:116][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:116][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:116][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:116][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:123][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:123][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:123][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:123][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:124][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:124][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:124][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:124][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:124][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:124][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:125][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:125][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:125][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:126][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:126][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:127][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:134][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:135][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:135][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:135][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:136][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:136][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:137][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:137][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:138][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:145][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:145][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:145][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:147][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:147][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:147][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:148][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:148][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:148][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:156][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:156][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:157][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:158][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:158][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:158][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:158][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:158][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:158][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:158][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:159][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:159][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:159][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:159][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:159][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:167][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:167][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:167][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:167][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:168][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:168][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:169][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:169][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:170][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:170][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:170][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:170][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:170][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:170][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:170][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:178][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:178][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:178][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:179][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:179][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:180][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:180][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:182][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:182][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:182][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:182][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:182][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:182][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:189][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:189][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:191][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:192][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:192][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:193][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:193][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:193][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:193][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:193][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:200][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:201][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:201][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:201][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:201][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:201][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:201][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:201][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:202][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:202][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:203][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:203][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:203][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:203][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:203][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:211][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:211][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:211][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:211][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:211][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:212][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:212][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:213][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:213][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:214][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:214][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:214][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:214][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:214][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:214][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:222][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:222][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:222][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:222][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:222][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:223][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:223][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:224][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:224][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:225][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:225][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:225][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:225][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:225][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:225][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:233][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:233][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:233][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:234][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:234][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:234][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:236][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:237][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:237][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:244][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:245][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:245][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:245][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:247][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:248][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:248][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:254][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:254][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:255][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:255][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:257][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:257][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:258][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:258][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:258][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:258][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:258][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:258][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:265][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:265][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:265][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:266][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:266][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:266][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:266][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:267][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:267][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:268][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:268][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:269][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:269][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:269][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:269][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:269][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:285][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:285][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:285][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:285][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:285][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:287][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:287][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:287][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:287][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:287][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:287][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:287][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:288][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:288][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:289][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:289][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:289][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:289][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:289][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:289][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:297][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:297][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:298][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:298][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:299][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:299][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:299][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:300][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:300][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:300][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:308][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:308][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:308][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:308][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:308][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:309][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:309][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:310][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:310][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:312][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:312][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:312][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:312][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:312][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:318][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:318][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:319][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:319][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:321][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:321][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:322][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:322][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:322][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:322][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:322][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:322][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:330][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:330][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:330][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:330][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:331][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:331][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:332][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:332][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:333][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:333][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:333][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:333][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:333][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:333][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:333][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:341][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:342][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:342][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:342][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:342][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:342][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:342][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:343][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:343][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:344][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:344][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:344][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:344][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:344][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:344][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:344][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:352][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:353][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:353][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:353][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:353][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:353][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:353][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:353][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:354][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:354][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:354][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:354][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:354][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:354][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:354][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:355][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:355][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:355][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:355][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:355][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:355][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:355][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:363][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:363][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:363][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:364][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:364][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:364][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:364][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:364][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:364][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:365][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:365][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:367][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:367][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:367][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:367][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:367][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:367][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:367][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:374][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:376][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:376][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:376][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:377][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:378][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:378][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:379][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:379][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:379][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:379][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:385][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:385][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:385][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:385][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:385][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:387][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:387][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:387][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:387][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:387][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:387][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:387][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:388][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:388][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:389][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:389][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:389][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:389][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:389][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:389][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:389][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:397][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:398][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:398][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:398][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:398][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:398][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:398][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:399][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:399][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:400][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:400][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:400][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:400][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:400][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:400][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:400][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:408][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:408][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:408][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:408][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:409][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:409][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:410][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:410][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:411][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:411][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:411][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:411][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:411][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:411][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:411][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:419][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:419][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:419][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:419][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:420][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:420][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:421][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:421][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:421][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:421][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:421][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:421][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:421][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:423][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:423][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:423][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:431][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:432][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:432][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:432][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:432][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:432][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:432][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:433][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:433][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:434][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:434][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:434][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:434][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:434][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:434][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:442][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:443][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:443][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:443][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:443][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:443][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:443][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:443][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:444][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:444][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:445][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:445][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:445][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:445][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:445][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:445][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:452][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:452][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:452][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:453][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:453][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:453][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:453][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:453][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:453][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:454][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:455][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:455][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:455][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:455][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:464][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:464][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:464][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:464][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:464][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:465][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:465][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:465][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:465][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:465][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:465][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:465][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:466][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:466][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:467][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:467][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:467][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:467][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:467][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:467][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:467][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:475][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:475][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:475][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:475][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:476][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:476][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:476][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:476][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:476][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:476][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:476][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:477][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:477][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:477][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:477][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:477][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:477][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:477][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:478][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:478][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:479][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:486][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:486][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:486][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:487][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:487][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:487][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:487][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:487][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:487][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:487][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:488][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:488][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:488][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:489][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:489][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:490][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:497][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:498][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:498][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:498][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:498][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:498][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:498][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:499][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:499][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:501][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:501][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:501][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:501][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:501][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:508][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:508][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:509][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:509][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:509][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:509][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:509][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:509][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:509][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:510][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:510][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:511][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:511][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:511][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:519][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:519][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:519][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:520][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:520][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:522][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:522][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:523][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:523][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:523][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:523][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:523][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:523][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:523][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:530][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:530][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:531][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:531][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:531][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:531][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:531][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:531][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:532][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:532][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:534][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:534][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:535][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:541][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:541][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:541][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:541][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:543][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:543][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:543][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:543][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:543][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:543][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:543][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:544][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:544][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:544][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:544][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:544][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:544][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:544][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:545][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:545][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:545][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:553][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:554][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:554][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:554][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:554][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:554][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:554][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:555][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:555][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:556][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:556][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:556][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:556][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:556][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:556][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:556][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:564][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:564][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:564][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:564][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:564][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:565][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:565][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:566][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:566][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:567][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:567][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:567][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:567][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:567][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:574][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:574][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:574][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:574][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:574][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:575][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:575][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:577][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:577][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:578][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:578][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:578][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:578][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:578][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:578][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:585][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:586][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:586][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:586][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:587][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:587][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:588][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:589][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:589][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:589][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:595][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:595][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:595][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:595][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:595][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:597][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:597][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:597][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:597][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:597][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:597][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:597][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:598][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:598][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:599][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:599][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:599][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:599][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:599][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:599][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:599][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:607][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:607][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:607][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:608][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:609][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:609][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:609][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:609][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:609][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:609][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:609][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:611][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:611][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:611][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:611][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:611][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:617][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:618][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:618][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:618][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:618][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:618][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:619][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:619][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:620][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:620][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:621][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:621][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:621][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:621][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:621][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:628][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:629][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:630][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:630][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:630][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:630][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:630][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:630][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:631][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:631][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:631][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:631][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:631][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:631][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:631][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:632][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:632][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:632][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:632][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:632][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:632][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:632][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:639][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:640][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:640][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:640][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:640][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:640][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:641][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:641][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:641][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:641][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:641][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:641][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:642][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:642][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:644][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:644][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:644][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:644][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:644][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:644][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:651][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:651][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:651][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:652][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:652][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:652][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:652][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:652][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:652][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:652][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:653][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:653][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:654][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:655][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:655][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:655][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:663][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:663][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:663][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:663][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:663][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:664][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:664][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:664][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:664][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:664][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:664][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:664][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:665][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:665][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:666][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:666][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:666][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:666][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:666][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:666][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:666][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:674][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:674][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:674][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:674][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:674][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:675][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:675][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:675][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:675][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:675][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:675][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:676][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:676][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:676][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:676][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:676][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:676][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:676][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:677][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:677][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:678][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:685][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:687][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:687][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:687][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:687][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:687][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:687][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:688][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:688][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:689][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:689][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:689][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:689][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:689][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:689][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:689][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:696][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:697][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:697][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:698][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:699][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:699][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:700][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:700][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:700][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:700][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:701][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:708][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:708][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:709][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:709][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:709][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:709][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:709][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:709][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:709][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:710][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:710][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:711][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:712][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:712][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:719][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:720][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:720][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:722][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:722][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:722][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:722][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:722][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:722][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:722][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:723][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:723][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:723][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:723][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:723][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:723][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:730][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:730][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:731][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:731][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:731][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:731][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:731][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:731][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:731][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:732][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:732][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:733][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:733][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:734][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:741][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:742][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:742][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:742][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:742][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:742][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:742][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:743][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:743][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:744][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:744][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:744][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:744][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:744][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:744][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:744][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:752][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:752][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:752][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:753][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:753][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:753][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:753][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:753][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:753][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:753][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:754][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:754][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:754][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:755][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:755][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:755][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:763][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:763][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:763][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:764][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:764][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:764][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:764][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:764][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:764][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:765][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:766][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:766][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:766][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:766][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:766][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:766][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:766][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:767][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:767][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:767][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:767][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:767][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:774][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:774][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:774][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:774][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:775][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:775][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:776][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:776][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:776][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:777][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:777][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:778][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:778][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:778][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:784][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:785][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:785][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:785][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:787][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:787][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:788][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:789][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:789][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:789][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:795][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:797][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:797][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:797][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:798][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:798][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:799][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:800][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:800][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:800][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:808][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:808][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:808][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:808][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:808][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:809][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:809][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:809][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:809][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:809][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:809][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:809][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:810][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:810][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:810][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:810][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:810][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:810][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:810][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:811][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:811][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:811][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:819][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:819][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:819][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:819][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:819][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:820][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:820][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:821][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:821][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:821][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:821][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:821][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:822][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:823][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:823][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:830][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:830][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:830][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:831][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:831][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:832][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:832][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:832][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:832][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:832][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:832][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:832][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:833][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:833][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:833][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:841][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:841][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:842][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:842][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:842][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:842][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:843][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:843][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:843][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:843][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:843][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:843][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:843][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:844][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:844][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:845][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:845][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:845][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:845][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:845][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:845][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:852][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:853][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:853][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:854][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:855][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:855][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:855][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:855][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:855][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:855][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:855][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:856][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:856][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:856][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:856][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:856][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:856][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:862][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:863][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:863][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:863][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:865][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:866][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:866][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:867][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:867][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:867][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:867][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:874][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:874][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:874][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:875][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:875][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:875][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:875][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:875][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:875][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:876][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:877][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:877][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:878][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:878][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:878][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:878][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:885][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:885][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:887][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:887][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:887][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:887][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:887][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:887][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:887][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:888][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:888][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:889][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:890][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:890][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:890][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:890][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:897][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:897][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:897][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:897][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:898][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:898][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:898][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:898][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:898][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:898][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:898][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:899][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:899][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:900][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:900][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:900][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:908][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:908][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:908][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:909][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:909][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:909][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:909][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:909][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:909][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:909][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:910][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:910][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:910][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:911][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:911][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:911][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:918][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:920][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:920][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:920][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:920][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:920][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:921][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:921][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:921][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:921][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:921][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:921][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:921][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:922][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:922][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:923][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:923][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:923][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:923][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:923][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:923][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:930][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:930][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:930][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:931][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:931][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:931][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:931][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:931][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:931][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:931][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:932][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:933][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:933][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:933][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:933][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:933][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:933][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:934][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:934][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:934][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:934][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:934][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:941][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:941][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:941][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:942][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:942][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:942][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:942][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:942][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:942][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:943][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:944][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:944][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:944][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:945][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:946][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:946][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:946][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:952][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:952][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:953][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:953][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:953][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:953][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:953][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:953][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:953][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:955][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:956][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:956][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:956][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:956][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:963][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:963][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:965][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:965][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:965][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:965][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:965][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:965][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:965][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:966][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:966][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:967][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:967][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:967][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:967][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:967][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:967][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:967][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:974][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:974][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:974][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:975][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:975][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:975][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:975][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:975][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:975][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:975][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:977][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:977][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:978][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:979][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:979][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:979][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:986][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:987][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:987][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:987][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:987][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:987][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:987][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:987][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:988][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:988][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:989][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:989][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:989][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:989][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:989][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.20:989][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:997][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:997][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:997][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:998][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:998][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:998][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:998][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.20:998][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.20:998][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.20:999][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:000][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:000][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:001][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:001][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:001][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:001][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:009][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:009][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:010][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:010][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:010][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:010][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:010][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:010][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:011][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:012][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:012][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:013][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:013][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:013][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:013][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:020][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:021][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:021][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:021][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:021][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:021][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:022][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:022][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:022][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:022][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:022][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:022][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:022][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:024][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:024][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:025][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:025][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:025][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:025][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:025][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:025][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:031][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:031][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:032][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:032][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:032][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:032][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:032][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:032][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:034][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:034][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:034][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:034][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:034][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:035][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:035][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:035][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:035][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:035][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:035][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:035][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:036][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:036][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:036][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:036][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:036][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:036][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:036][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:043][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:043][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:043][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:045][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:045][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:045][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:045][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:045][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:045][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:045][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:046][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:046][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:046][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:047][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:047][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:047][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:055][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:055][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:055][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:055][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:056][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:056][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:056][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:056][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:056][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:056][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:057][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:057][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:057][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:058][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:059][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:059][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:059][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:067][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:067][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:067][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:067][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:067][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:068][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:068][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:068][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:068][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:068][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:068][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:068][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:069][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:069][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:070][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:070][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:070][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:070][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:070][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:070][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:070][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:078][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:078][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:078][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:078][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:078][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:079][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:079][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:079][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:079][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:079][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:079][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:080][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:080][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:080][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:080][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:080][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:080][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:081][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:082][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:082][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:082][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:089][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:089][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:089][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:090][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:090][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:090][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:090][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:090][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:090][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:090][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:091][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:091][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:092][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:094][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:094][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:094][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:094][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:101][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:102][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:102][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:102][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:102][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:102][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:102][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:102][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:103][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:103][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:104][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:104][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:104][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:104][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:104][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:104][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:112][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:112][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:112][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:112][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:113][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:113][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:113][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:113][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:113][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:113][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:113][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:114][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:114][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:114][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:114][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:114][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:114][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:114][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:115][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:115][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:115][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:123][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:123][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:124][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:124][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:124][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:124][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:124][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:125][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:125][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:125][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:127][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:128][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:128][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:128][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:128][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:135][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:135][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:135][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:137][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:137][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:138][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:138][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:138][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:138][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:138][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:138][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:138][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:146][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:147][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:147][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:147][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:147][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:148][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:148][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:148][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:148][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:148][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:148][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:149][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:149][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:149][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:149][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:149][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:149][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:149][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:150][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:150][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:151][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:158][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:158][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:158][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:158][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:158][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:159][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:159][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:159][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:159][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:159][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:159][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:160][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:160][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:160][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:160][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:160][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:160][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:160][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:161][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:161][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:162][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:169][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:169][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:169][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:170][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:170][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:170][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:170][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:170][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:170][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:170][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:171][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:171][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:171][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:172][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:172][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:173][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:180][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:180][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:182][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:182][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:182][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:182][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:182][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:182][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:182][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:183][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:183][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:184][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:185][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:185][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:185][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:192][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:193][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:193][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:193][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:193][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:194][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:194][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:194][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:194][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:194][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:194][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:194][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:195][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:195][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:195][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:195][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:195][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:195][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:195][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:196][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:196][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:196][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:204][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:204][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:204][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:204][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:205][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:205][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:207][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:207][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:207][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:207][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:207][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:207][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:207][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:208][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:208][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:208][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:208][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:208][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:208][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:215][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:217][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:217][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:217][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:217][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:217][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:217][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:217][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:218][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:218][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:219][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:219][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:219][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:219][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:219][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:219][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:227][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:227][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:228][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:228][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:228][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:228][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:228][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:228][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:228][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:229][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:230][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:230][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:231][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:231][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:231][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:231][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:238][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:238][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:238][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:239][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:239][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:239][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:239][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:239][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:239][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:240][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:241][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:241][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:242][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:242][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:242][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:249][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:249][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:249][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:249][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:250][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:250][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:250][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:250][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:250][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:250][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:251][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:251][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:252][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:252][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:252][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:252][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:253][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:253][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:253][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:253][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:253][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:253][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:260][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:260][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:260][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:262][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:262][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:263][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:263][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:263][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:263][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:263][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:263][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:263][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:264][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:264][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:264][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:271][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:271][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:273][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:273][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:273][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:273][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:273][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:273][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:273][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:274][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:274][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:274][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:274][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:274][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:275][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:275][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:275][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:275][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:275][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:275][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:275][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:276][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:276][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:276][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:276][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:276][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:276][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:284][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:284][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:284][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:284][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:285][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:285][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:287][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:287][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:287][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:287][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:287][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:287][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:287][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:288][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:288][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:288][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:288][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:288][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:288][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:295][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:297][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:297][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:297][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:297][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:297][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:297][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:298][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:298][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:299][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:299][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:299][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:299][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:299][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:299][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:299][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:305][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:307][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:307][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:307][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:308][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:309][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:309][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:309][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:309][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:309][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:309][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:310][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:310][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:310][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:310][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:310][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:310][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:318][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:318][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:319][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:319][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:319][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:319][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:319][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:320][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:320][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:320][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:320][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:320][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:320][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:321][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:321][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:322][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:322][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:322][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:322][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:322][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:322][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:331][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:331][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:331][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:331][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:332][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:332][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:332][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:332][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:332][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:333][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:333][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:335][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:336][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:336][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:336][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:344][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:344][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:345][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:345][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:345][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:345][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:345][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:345][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:345][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:347][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:347][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:347][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:347][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:347][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:348][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:348][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:349][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:349][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:349][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:349][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:349][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:357][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:358][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:358][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:358][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:358][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:358][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:359][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:359][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:359][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:359][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:359][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:359][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:360][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:360][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:360][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:360][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:360][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:360][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:360][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:361][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:361][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:361][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:369][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:369][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:370][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:370][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:370][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:370][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:370][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:370][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:370][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:371][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:372][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:372][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:373][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:373][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:373][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:373][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:380][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:380][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:382][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:382][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:382][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:382][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:382][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:383][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:383][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:383][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:383][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:383][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:383][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:384][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:384][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:384][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:384][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:384][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:384][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:384][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:385][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:385][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:385][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:385][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:385][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:385][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:385][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:392][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:393][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:393][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:393][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:393][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:395][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:395][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:395][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:395][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:395][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:395][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:395][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:396][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:396][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:397][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:397][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:397][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:397][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:397][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:397][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:405][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:405][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:405][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:405][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:406][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:406][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:406][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:406][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:406][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:406][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:407][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:407][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:407][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:408][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:409][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:409][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:409][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:416][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:417][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:417][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:418][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:418][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:418][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:418][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:418][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:419][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:419][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:420][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:420][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:420][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:420][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:420][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:420][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:428][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:429][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:429][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:429][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:429][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:429][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:430][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:430][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:430][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:430][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:430][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:430][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:430][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:431][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:431][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:432][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:432][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:432][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:432][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:432][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:432][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:439][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:439][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:439][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:439][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:441][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:441][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:441][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:441][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:441][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:441][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:441][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:442][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:442][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:442][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:442][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:442][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:442][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:443][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:443][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:443][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:443][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:443][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:444][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:444][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:444][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:444][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:444][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:451][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:451][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:451][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:451][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:453][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:453][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:453][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:453][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:453][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:453][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:453][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:454][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:454][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:455][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:455][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:455][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:463][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:463][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:464][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:464][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:464][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:464][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:464][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:464][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:464][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:466][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:467][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:467][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:467][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:467][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:467][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:467][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:467][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:468][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:468][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:468][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:468][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:468][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:476][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:476][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:476][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:476][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:477][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:477][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:477][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:477][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:477][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:477][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:478][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:478][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:479][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:479][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:479][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:487][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:487][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:488][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:488][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:488][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:488][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:488][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:488][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:488][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:490][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:491][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:491][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:491][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:491][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:491][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:491][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:491][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:492][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:492][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:492][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:492][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:492][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:500][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:501][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:501][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:501][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:501][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:501][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:501][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:501][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:502][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:502][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:503][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:503][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:503][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:503][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:503][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:503][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:510][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:510][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:510][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:510][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:512][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:512][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:512][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:512][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:512][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:512][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:512][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:513][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:513][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:513][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:513][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:513][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:513][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:513][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:514][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:514][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:515][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:522][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:522][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:522][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:523][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:523][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:523][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:523][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:523][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:523][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:524][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:525][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:525][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:525][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:525][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:525][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:525][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:526][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:526][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:526][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:526][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:526][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:534][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:534][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:535][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:535][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:535][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:535][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:535][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:535][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:535][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:536][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:537][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:537][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:537][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:537][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:537][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:537][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:537][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:538][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:538][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:538][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:538][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:538][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:545][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:547][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:547][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:547][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:547][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:547][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:547][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:547][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:548][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:548][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:548][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:548][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:548][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:548][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:549][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:549][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:550][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:557][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:557][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:557][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:557][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:558][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:558][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:558][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:558][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:558][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:558][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:559][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:560][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:560][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:561][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:561][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:561][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:561][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:569][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:569][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:569][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:570][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:570][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:570][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:570][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:570][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:570][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:570][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:571][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:572][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:572][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:573][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:573][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:573][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:573][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:581][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:581][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:582][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:582][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:582][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:583][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:583][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:584][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:584][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:584][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:584][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:584][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:584][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:584][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:585][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:585][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:585][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:585][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:585][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:585][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:585][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:593][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:593][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:593][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:593][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:594][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:594][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:594][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:594][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:594][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:596][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:597][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:597][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:597][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:597][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:597][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:597][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:598][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:598][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:598][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:598][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:598][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:598][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:605][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:605][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:607][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:607][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:607][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:607][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:608][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:608][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:608][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:608][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:608][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:608][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:608][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:609][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:609][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:609][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:609][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:609][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:609][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:610][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:610][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:611][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:618][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:619][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:621][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:621][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:622][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:622][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:622][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:622][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:622][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:622][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:622][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:623][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:623][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:623][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:623][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:623][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:623][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:631][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:632][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:632][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:632][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:632][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:632][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:632][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:633][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:633][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:634][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:634][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:634][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:634][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:634][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:634][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:634][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:642][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:642][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:642][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:642][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:643][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:643][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:644][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:644][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:644][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:644][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:644][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:644][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:644][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:645][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:645][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:645][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:654][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:654][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:654][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:655][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:655][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:655][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:655][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:655][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:655][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:656][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:656][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:657][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:658][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:658][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:658][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:658][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:665][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:665][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:667][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:668][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:668][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:669][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:669][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:669][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:669][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:669][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:676][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:676][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:677][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:677][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:677][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:677][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:677][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:677][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:678][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:679][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:679][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:679][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:679][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:679][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:679][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:679][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:680][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:680][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:680][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:680][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:680][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:680][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:688][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:688][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:688][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:688][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:689][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:689][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:689][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:689][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:689][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:689][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:690][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:690][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:690][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:691][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:692][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:692][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:692][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:699][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:699][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:699][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:699][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:699][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:700][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:700][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:700][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:700][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:700][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:700][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:701][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:701][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:701][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:701][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:701][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:701][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:701][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:702][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:702][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:702][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:702][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:702][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:703][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:703][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:703][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:703][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:711][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:711][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:711][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:712][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:712][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:713][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:713][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:713][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:713][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:713][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:713][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:714][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:715][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:715][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:715][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:715][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:721][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:721][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:723][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:723][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:723][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:723][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:723][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:724][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:724][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:724][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:724][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:724][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:724][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:725][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:725][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:725][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:725][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:725][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:725][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:726][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:726][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:726][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:726][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:726][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:727][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:727][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:727][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:733][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:734][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:734][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:734][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:734][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:735][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:735][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:737][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:737][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:737][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:737][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:737][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:737][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:737][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:738][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:738][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:738][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:738][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:738][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:738][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:745][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:745][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:745][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:745][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:745][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:747][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:747][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:747][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:747][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:747][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:747][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:747][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:748][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:748][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:748][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:748][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:748][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:748][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:748][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:749][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:749][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:749][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:757][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:757][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:757][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:757][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:758][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:758][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:758][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:758][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:758][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:758][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:759][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:759][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:759][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:759][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:759][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:760][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:760][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:760][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:760][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:760][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:760][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:760][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:761][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:761][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:761][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:761][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:761][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:769][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:769][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:769][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:769][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:770][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:770][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:771][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:771][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:771][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:771][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:771][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:771][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:772][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:773][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:773][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:773][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:780][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:781][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:781][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:781][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:781][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:782][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:782][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:782][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:782][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:782][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:783][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:783][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:783][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:783][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:783][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:784][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:784][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:785][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:785][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:785][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:785][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:792][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:792][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:792][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:792][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:793][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:793][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:793][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:793][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:793][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:793][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:794][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:794][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:794][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:795][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:795][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:795][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:795][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:795][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:795][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:795][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:796][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:796][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:796][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:797][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:797][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:797][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:797][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:804][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:804][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:804][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:805][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:805][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:805][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:805][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:805][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:805][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:805][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:807][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:807][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:808][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:808][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:808][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:808][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:808][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:809][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:809][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:809][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:809][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:809][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:815][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:817][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:817][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:817][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:817][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:817][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:818][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:818][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:818][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:818][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:818][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:818][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:819][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:819][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:820][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:820][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:820][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:820][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:820][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:820][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:820][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:829][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:829][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:830][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:831][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:831][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:831][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:831][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:831][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:831][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:832][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:832][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:832][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:832][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:833][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:833][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:833][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:833][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:833][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:833][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:834][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:834][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:834][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:834][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:835][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:835][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:835][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:835][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:844][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:844][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:844][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:844][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:845][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:845][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:845][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:845][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:845][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:845][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:846][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:846][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:847][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:848][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:848][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:848][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:848][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:855][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:855][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:857][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:857][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:857][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:857][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:857][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:858][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:858][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:858][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:858][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:858][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:858][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:859][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:859][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:859][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:859][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:860][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:860][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:860][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:860][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:867][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:867][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:868][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:868][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:868][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:868][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:868][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:869][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:869][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:869][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:869][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:869][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:870][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:870][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:870][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:870][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:870][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:870][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:871][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:871][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:871][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:871][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:871][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:872][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:872][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:872][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:872][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:880][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:880][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:881][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:881][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:881][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:881][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:882][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:882][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:882][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:882][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:882][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:882][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:883][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:883][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:883][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:883][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:883][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:883][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:884][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:885][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:885][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:885][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:892][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:892][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:893][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:893][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:893][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:893][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:894][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:894][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:894][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:894][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:894][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:894][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:895][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:895][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:897][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:897][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:897][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:897][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:897][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:897][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:905][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:905][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:906][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:906][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:906][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:906][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:907][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:907][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:907][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:907][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:907][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:907][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:908][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:908][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:908][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:908][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:908][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:908][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:909][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:909][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:909][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:909][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:909][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:910][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:910][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:910][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:910][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:917][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:918][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:918][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:918][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:918][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:919][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:919][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:919][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:919][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:919][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:919][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:919][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:920][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:920][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:920][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:920][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:920][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:920][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:921][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:921][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:921][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:921][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:921][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:922][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:922][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:922][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:922][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:930][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:930][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:930][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:930][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:931][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:931][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:931][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:931][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:931][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:931][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:932][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:932][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:932][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:932][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:932][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:933][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:933][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:933][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:933][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:933][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:933][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:933][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:934][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:934][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:934][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:934][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:934][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:942][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:942][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:942][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:943][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:943][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:943][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:943][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:944][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:944][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:944][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:944][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:944][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:944][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:945][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:945][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:946][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:946][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:946][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:947][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:947][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:947][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:954][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:954][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:955][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:955][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:957][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:957][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:957][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:957][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:957][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:957][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:957][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:958][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:958][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:958][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:958][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:958][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:959][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:959][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:959][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:959][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:966][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:967][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:967][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:967][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:967][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:968][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:968][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:968][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:968][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:968][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:968][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:968][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:969][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:969][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:969][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:969][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:969][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:969][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:969][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:970][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:970][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:971][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:978][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:978][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:978][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:978][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:979][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:979][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:980][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:980][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:980][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:980][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:980][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:980][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:982][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:983][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:983][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:983][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:989][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:990][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:990][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:990][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:990][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:991][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:991][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:991][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.21:991][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:991][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:991][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:992][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:992][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:992][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:992][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:992][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:992][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.21:992][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:993][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:993][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:993][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:993][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:993][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:994][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.21:994][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.21:994][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.21:994][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:001][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:001][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:002][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:002][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:002][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:002][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:002][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:003][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:003][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:003][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:003][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:003][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:003][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:004][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:004][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:004][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:004][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:004][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:004][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:004][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:005][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:005][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:005][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:005][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:005][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:005][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:005][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:013][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:014][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:014][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:014][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:015][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:015][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:017][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:017][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:018][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:025][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:025][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:025][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:025][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:026][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:026][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:026][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:026][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:026][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:026][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:027][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:027][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:027][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:027][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:027][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:028][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:028][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:028][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:028][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:028][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:028][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:028][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:029][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:029][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:029][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:029][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:029][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:035][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:037][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:037][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:037][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:037][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:038][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:038][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:038][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:038][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:038][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:038][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:039][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:039][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:039][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:039][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:039][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:039][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:039][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:040][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:041][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:041][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:041][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:048][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:048][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:049][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:049][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:049][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:049][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:050][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:050][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:050][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:050][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:050][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:050][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:051][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:051][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:052][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:052][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:052][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:052][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:052][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:052][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:052][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:059][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:060][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:060][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:060][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:060][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:061][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:061][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:061][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:061][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:061][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:061][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:062][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:062][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:062][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:063][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:063][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:063][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:063][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:063][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:063][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:064][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:064][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:064][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:064][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:064][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:064][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:064][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:073][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:073][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:073][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:073][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:074][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:074][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:074][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:074][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:074][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:074][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:074][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:075][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:075][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:075][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:075][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:075][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:075][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:075][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:076][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:076][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:076][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:076][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:077][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:077][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:077][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:077][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:077][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:084][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:084][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:084][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:085][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:085][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:087][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:087][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:087][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:087][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:087][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:087][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:087][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:088][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:088][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:088][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:096][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:096][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:096][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:097][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:097][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:099][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:099][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:099][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:099][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:099][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:099][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:100][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:101][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:101][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:101][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:108][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:109][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:109][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:109][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:109][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:110][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:110][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:110][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:110][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:110][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:110][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:111][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:111][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:111][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:111][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:111][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:111][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:111][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:112][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:113][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:113][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:113][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:121][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:121][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:121][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:122][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:122][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:122][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:122][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:122][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:122][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:123][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:124][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:124][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:124][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:124][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:124][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:124][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:124][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:125][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:125][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:125][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:125][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:125][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:132][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:132][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:132][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:132][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:132][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:133][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:133][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:133][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:133][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:133][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:133][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:133][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:135][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:135][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:135][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:135][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:135][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:135][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:135][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:136][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:136][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:137][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:143][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:144][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:144][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:144][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:144][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:144][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:145][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:145][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:147][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:147][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:147][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:147][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:147][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:147][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:147][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:148][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:148][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:148][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:148][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:148][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:155][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:155][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:155][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:155][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:157][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:157][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:157][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:157][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:157][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:157][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:158][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:159][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:159][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:159][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:159][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:159][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:159][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:160][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:160][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:160][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:160][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:160][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:168][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:168][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:168][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:168][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:169][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:169][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:169][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:169][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:169][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:169][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:170][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:170][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:171][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:172][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:172][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:172][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:172][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:179][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:180][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:180][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:180][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:180][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:180][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:182][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:182][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:182][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:182][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:182][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:182][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:183][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:183][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:183][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:183][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:183][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:183][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:183][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:184][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:184][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:185][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:192][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:193][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:193][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:193][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:193][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:193][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:194][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:194][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:194][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:194][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:194][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:194][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:194][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:195][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:195][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:195][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:195][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:195][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:195][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:195][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:196][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:196][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:196][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:196][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:197][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:197][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:197][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:203][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:203][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:204][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:204][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:204][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:204][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:204][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:204][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:204][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:206][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:207][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:207][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:207][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:207][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:207][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:207][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:208][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:208][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:208][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:208][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:208][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:208][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:216][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:216][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:217][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:217][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:217][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:217][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:218][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:218][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:218][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:218][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:218][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:218][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:219][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:219][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:219][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:219][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:219][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:219][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:219][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:220][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:220][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:220][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:228][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:228][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:228][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:229][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:229][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:229][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:229][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:229][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:229][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:229][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:231][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:232][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:232][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:233][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:233][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:233][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:233][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:239][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:239][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:240][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:240][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:240][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:240][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:240][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:241][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:241][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:241][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:241][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:241][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:241][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:242][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:242][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:242][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:242][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:242][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:242][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:244][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:244][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:244][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:244][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:244][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:245][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:245][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:245][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:251][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:251][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:252][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:252][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:252][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:252][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:252][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:253][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:253][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:253][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:253][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:253][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:253][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:254][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:254][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:254][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:254][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:254][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:254][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:254][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:256][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:256][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:256][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:256][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:256][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:256][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:256][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:264][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:264][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:264][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:264][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:265][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:265][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:266][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:266][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:266][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:266][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:266][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:266][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:267][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:268][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:268][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:268][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:276][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:276][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:276][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:277][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:277][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:277][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:277][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:277][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:277][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:278][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:279][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:279][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:279][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:279][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:279][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:279][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:280][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:280][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:280][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:280][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:280][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:280][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:287][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:287][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:287][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:287][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:288][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:288][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:289][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:289][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:289][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:289][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:289][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:290][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:290][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:290][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:290][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:290][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:290][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:290][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:291][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:291][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:291][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:291][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:291][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:292][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:292][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:292][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:292][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:299][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:299][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:300][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:300][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:300][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:300][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:300][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:300][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:301][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:301][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:301][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:301][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:301][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:302][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:302][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:303][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:303][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:303][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:303][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:303][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:303][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:310][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:311][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:311][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:311][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:311][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:313][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:313][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:313][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:313][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:313][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:313][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:313][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:314][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:314][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:315][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:315][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:315][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:315][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:315][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:323][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:323][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:323][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:323][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:323][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:324][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:324][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:324][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:324][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:324][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:324][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:324][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:325][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:325][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:327][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:327][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:327][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:327][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:327][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:327][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:334][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:334][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:336][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:336][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:336][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:336][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:336][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:336][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:337][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:337][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:337][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:337][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:337][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:338][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:338][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:338][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:338][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:338][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:338][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:339][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:339][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:340][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:347][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:347][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:347][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:348][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:348][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:348][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:348][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:348][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:348][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:348][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:349][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:349][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:349][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:349][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:349][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:350][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:350][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:350][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:350][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:350][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:350][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:350][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:351][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:351][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:351][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:351][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:351][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:360][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:360][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:360][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:360][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:361][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:361][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:361][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:361][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:361][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:361][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:362][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:362][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:362][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:363][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:364][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:364][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:364][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:372][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:372][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:372][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:372][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:373][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:373][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:373][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:373][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:373][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:373][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:373][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:374][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:374][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:374][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:374][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:374][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:374][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:374][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:375][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:375][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:375][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:384][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:384][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:384][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:385][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:385][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:387][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:387][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:387][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:387][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:387][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:387][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:387][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:388][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:389][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:389][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:389][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:396][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:396][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:397][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:397][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:397][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:397][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:397][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:398][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:398][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:398][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:398][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:398][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:399][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:399][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:399][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:399][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:399][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:399][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:399][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:401][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:401][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:401][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:401][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:401][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:402][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:402][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:402][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:408][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:408][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:409][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:409][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:409][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:409][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:410][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:410][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:410][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:410][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:410][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:412][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:412][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:412][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:412][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:412][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:412][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:412][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:413][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:413][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:413][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:413][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:413][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:414][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:414][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:414][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:414][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:420][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:422][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:422][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:422][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:422][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:423][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:423][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:423][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:423][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:423][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:423][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:423][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:424][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:424][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:424][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:424][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:424][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:424][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:425][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:426][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:426][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:426][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:433][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:433][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:433][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:434][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:434][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:434][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:434][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:434][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:434][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:434][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:435][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:435][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:437][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:437][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:438][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:445][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:445][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:445][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:445][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:447][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:447][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:447][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:447][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:447][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:447][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:448][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:448][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:449][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:450][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:450][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:450][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:450][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:458][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:458][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:458][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:459][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:459][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:459][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:459][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:459][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:459][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:460][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:460][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:460][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:460][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:461][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:461][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:461][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:461][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:461][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:461][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:462][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:462][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:462][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:462][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:462][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:463][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:463][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:463][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:470][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:470][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:470][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:470][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:471][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:471][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:471][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:471][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:471][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:471][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:471][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:473][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:473][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:473][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:473][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:473][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:473][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:473][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:474][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:475][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:475][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:475][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:483][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:483][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:483][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:484][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:484][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:484][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:484][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:484][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:484][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:485][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:486][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:486][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:486][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:486][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:486][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:486][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:487][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:487][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:487][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:487][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:487][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:487][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:495][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:495][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:495][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:495][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:497][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:497][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:497][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:497][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:497][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:497][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:497][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:498][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:498][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:498][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:498][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:498][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:498][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:498][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:499][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:500][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:500][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:500][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:507][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:508][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:508][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:508][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:508][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:508][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:509][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:509][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:509][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:509][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:509][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:510][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:510][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:510][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:510][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:510][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:511][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:511][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:511][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:511][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:511][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:512][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:512][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:512][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:512][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:512][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:512][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:520][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:521][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:521][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:521][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:521][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:521][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:522][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:522][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:522][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:522][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:522][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:522][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:523][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:523][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:523][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:523][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:523][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:523][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:524][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:524][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:524][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:524][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:524][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:525][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:525][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:525][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:525][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:532][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:532][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:532][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:533][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:533][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:533][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:533][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:533][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:533][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:535][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:535][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:535][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:535][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:535][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:536][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:536][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:537][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:537][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:537][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:537][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:545][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:545][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:545][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:545][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:546][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:546][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:546][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:546][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:546][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:547][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:547][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:547][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:548][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:548][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:548][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:548][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:548][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:549][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:549][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:549][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:549][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:557][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:557][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:558][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:558][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:558][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:558][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:558][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:558][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:558][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:559][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:559][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:559][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:559][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:560][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:560][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:560][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:560][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:560][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:562][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:562][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:562][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:562][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:562][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:563][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:563][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:563][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:563][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:571][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:571][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:571][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:573][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:573][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:573][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:573][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:573][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:573][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:574][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:574][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:574][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:574][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:575][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:575][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:575][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:575][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:575][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:575][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:576][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:576][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:576][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:584][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:585][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:585][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:585][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:585][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:585][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:587][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:587][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:587][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:587][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:587][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:588][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:588][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:588][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:588][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:588][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:589][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:589][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:589][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:589][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:589][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:589][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:590][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:590][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:590][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:590][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:590][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:599][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:599][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:599][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:600][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:600][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:600][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:600][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:600][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:600][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:601][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:601][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:601][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:601][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:602][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:602][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:602][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:602][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:602][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:602][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:602][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:603][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:603][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:603][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:603][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:603][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:604][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:604][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:612][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:612][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:613][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:613][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:613][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:613][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:614][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:614][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:614][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:614][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:614][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:615][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:615][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:617][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:617][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:617][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:617][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:617][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:617][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:618][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:626][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:627][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:627][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:627][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:627][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:628][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:628][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:628][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:628][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:628][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:628][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:629][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:629][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:629][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:629][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:629][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:630][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:630][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:630][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:630][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:630][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:631][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:631][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:631][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:631][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:631][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:631][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:639][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:640][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:640][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:640][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:640][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:641][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:641][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:641][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:641][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:641][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:641][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:642][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:642][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:642][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:642][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:642][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:642][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:643][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:643][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:643][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:643][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:643][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:644][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:644][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:644][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:644][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:644][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:653][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:653][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:653][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:653][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:654][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:654][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:654][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:654][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:654][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:654][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:655][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:655][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:655][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:657][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:657][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:657][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:657][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:657][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:658][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:658][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:658][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:658][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:666][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:666][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:667][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:667][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:667][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:667][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:668][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:668][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:668][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:668][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:668][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:668][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:669][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:669][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:669][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:669][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:669][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:669][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:670][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:670][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:670][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:670][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:670][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:671][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:671][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:671][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:671][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:680][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:680][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:680][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:680][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:681][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:681][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:681][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:681][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:681][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:681][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:682][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:682][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:682][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:682][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:682][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:683][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:683][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:683][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:683][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:683][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:683][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:684][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:684][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:684][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:684][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:684][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:684][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:692][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:692][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:693][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:693][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:693][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:694][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:694][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:694][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:694][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:694][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:694][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:695][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:695][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:697][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:698][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:698][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:705][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:705][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:705][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:705][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:705][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:707][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:707][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:707][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:707][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:707][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:708][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:708][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:708][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:708][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:708][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:709][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:709][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:709][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:709][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:709][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:710][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:710][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:710][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:710][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:710][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:710][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:711][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:718][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:718][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:718][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:719][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:719][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:719][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:719][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:719][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:720][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:720][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:720][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:720][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:720][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:721][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:721][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:721][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:721][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:721][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:721][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:722][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:723][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:723][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:731][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:731][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:731][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:732][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:732][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:732][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:732][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:732][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:732][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:733][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:733][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:733][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:733][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:733][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:734][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:734][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:734][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:734][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:734][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:734][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:734][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:735][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:735][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:735][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:735][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:735][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:735][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:744][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:744][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:744][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:744][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:745][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:745][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:745][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:745][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:745][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:746][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:746][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:746][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:746][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:747][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:747][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:747][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:747][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:747][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:747][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:748][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:749][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:749][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:756][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:756][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:757][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:757][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:757][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:757][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:758][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:758][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:758][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:758][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:758][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:758][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:759][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:759][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:759][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:759][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:759][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:759][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:760][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:760][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:760][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:760][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:761][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:761][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:761][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:761][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:761][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:769][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:769][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:769][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:769][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:771][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:771][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:771][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:771][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:771][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:771][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:772][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:772][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:772][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:772][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:772][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:773][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:773][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:773][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:773][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:773][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:773][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:773][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:774][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:774][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:774][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:774][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:774][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:782][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:782][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:782][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:782][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:783][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:783][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:783][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:783][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:783][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:783][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:784][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:784][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:784][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:785][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:785][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:787][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:787][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:787][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:787][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:787][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:787][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:795][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:795][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:795][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:795][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:795][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:797][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:797][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:797][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:797][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:797][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:798][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:798][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:798][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:798][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:799][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:799][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:799][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:799][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:799][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:799][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:800][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:800][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:800][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:800][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:800][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:800][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:801][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:808][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:808][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:808][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:809][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:809][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:809][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:809][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:809][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:810][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:810][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:810][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:810][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:811][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:811][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:811][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:811][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:811][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:811][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:812][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:812][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:812][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:812][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:812][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:813][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:813][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:813][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:813][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:821][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:821][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:821][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:822][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:822][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:822][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:822][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:822][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:822][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:823][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:823][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:823][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:823][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:823][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:824][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:824][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:824][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:824][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:824][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:824][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:826][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:826][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:826][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:826][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:826][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:826][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:826][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:835][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:835][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:835][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:836][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:836][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:836][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:836][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:836][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:836][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:837][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:837][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:837][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:837][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:837][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:838][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:838][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:838][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:838][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:838][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:838][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:839][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:839][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:839][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:839][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:839][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:839][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:839][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:847][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:847][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:847][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:847][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:848][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:848][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:848][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:848][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:848][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:848][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:850][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:850][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:850][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:850][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:851][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:851][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:851][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:851][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:851][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:851][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:851][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:852][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:852][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:852][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:852][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:852][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:852][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:860][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:860][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:860][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:861][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:861][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:861][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:861][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:861][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:862][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:862][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:862][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:862][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:863][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:863][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:863][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:863][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:863][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:863][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:864][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:864][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:864][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:864][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:864][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:865][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:865][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:865][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:865][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:873][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:873][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:873][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:873][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:874][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:874][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:874][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:874][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:874][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:875][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:875][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:875][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:875][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:875][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:876][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:876][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:876][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:876][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:876][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:876][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:877][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:877][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:877][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:877][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:877][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:877][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:877][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:885][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:885][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:885][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:885][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:885][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:887][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:887][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:887][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:887][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:887][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:887][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:888][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:888][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:888][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:888][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:888][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:888][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:888][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:889][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:889][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:889][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:889][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:889][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:890][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:890][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:890][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:890][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:898][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:898][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:898][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:898][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:899][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:899][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:899][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:899][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:899][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:900][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:901][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:901][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:901][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:901][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:901][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:901][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:902][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:902][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:902][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:902][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:902][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:902][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:910][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:911][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:911][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:911][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:913][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:913][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:913][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:913][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:913][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:913][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:914][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:914][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:915][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:915][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:915][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:923][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:924][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:924][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:924][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:924][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:925][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:925][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:927][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:927][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:927][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:927][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:927][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:927][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:927][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:928][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:928][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:928][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:928][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:929][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:929][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:929][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:937][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:938][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:938][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:938][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:938][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:939][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:939][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:939][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:939][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:939][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:939][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:940][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:940][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:940][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:940][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:940][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:940][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:941][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:942][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:942][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:942][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:942][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:950][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:952][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:952][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:952][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:952][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:952][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:953][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:953][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:953][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:953][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:953][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:953][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:954][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:954][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:954][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:954][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:954][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:954][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:955][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:955][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:955][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:955][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:955][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:956][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:956][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:956][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:956][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:964][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:964][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:964][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:964][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:965][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:965][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:967][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:967][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:967][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:967][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:967][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:967][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:968][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:968][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:968][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:968][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:968][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:969][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:969][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:969][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:969][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:977][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:977][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:978][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:978][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:978][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:978][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:979][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:979][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:979][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:979][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:979][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:979][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:980][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:980][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:980][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:980][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:980][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:980][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:981][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:981][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:981][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:981][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:981][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:982][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:982][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:982][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:982][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:993][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:994][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:994][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:994][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:994][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:995][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:995][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:995][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.22:995][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:995][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:995][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:995][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:996][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:996][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:996][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:996][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:996][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.22:996][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:997][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.22:998][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.22:998][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.22:998][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:007][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:007][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:007][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:007][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:008][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:008][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:008][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:008][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:008][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:008][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:009][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:009][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:009][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:009][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:009][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:010][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:010][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:010][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:010][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:010][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:010][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:011][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:011][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:011][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:011][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:011][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:011][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:020][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:020][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:020][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:020][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:021][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:021][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:021][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:021][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:021][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:022][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:022][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:022][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:022][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:022][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:023][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:023][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:023][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:023][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:023][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:023][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:024][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:024][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:024][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:024][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:024][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:024][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:025][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:034][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:034][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:035][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:035][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:035][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:035][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:036][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:036][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:036][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:036][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:036][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:037][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:037][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:037][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:037][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:037][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:037][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:038][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:038][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:038][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:038][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:038][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:039][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:039][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:039][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:039][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:039][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:047][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:047][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:048][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:048][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:048][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:048][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:048][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:049][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:049][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:049][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:049][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:049][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:050][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:050][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:050][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:050][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:050][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:050][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:050][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:052][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:053][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:053][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:078][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:078][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:078][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:078][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:079][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:079][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:079][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:079][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:079][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:079][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:079][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:080][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:080][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:080][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:080][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:080][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:080][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:081][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:082][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:082][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:082][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:082][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:095][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:095][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:095][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:095][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:095][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:097][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:097][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:097][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:097][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:097][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:097][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:098][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:098][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:099][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:099][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:099][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:099][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:099][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:099][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:100][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:108][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:108][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:109][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:109][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:109][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:109][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:110][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:110][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:112][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:112][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:112][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:112][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:112][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:112][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:113][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:113][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:113][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:113][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:114][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:114][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:114][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:121][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:122][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:122][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:122][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:122][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:123][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:123][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:123][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:123][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:123][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:123][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:124][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:124][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:124][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:124][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:124][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:124][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:125][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:127][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:127][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:127][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:135][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:136][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:136][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:136][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:136][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:137][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:137][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:137][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:137][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:137][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:137][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:138][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:138][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:138][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:138][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:138][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:138][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:139][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:139][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:139][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:139][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:139][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:140][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:140][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:140][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:140][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:140][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:147][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:147][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:148][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:148][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:148][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:148][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:149][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:149][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:149][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:149][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:149][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:149][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:150][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:150][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:152][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:152][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:152][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:152][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:152][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:152][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:153][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:160][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:161][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:161][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:161][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:161][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:162][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:162][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:162][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:162][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:162][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:162][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:163][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:163][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:163][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:163][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:163][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:163][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:165][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:165][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:165][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:165][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:165][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:166][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:166][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:166][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:166][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:166][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:173][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:175][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:175][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:175][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:175][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:176][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:176][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:176][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:176][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:176][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:177][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:177][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:177][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:177][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:177][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:178][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:178][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:178][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:178][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:178][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:178][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:179][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:179][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:179][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:179][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:179][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:179][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:187][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:187][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:187][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:187][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:188][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:188][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:188][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:188][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:188][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:188][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:189][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:189][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:189][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:189][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:189][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:190][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:190][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:190][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:190][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:190][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:191][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:191][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:191][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:191][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:191][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:191][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:192][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:200][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:200][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:200][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:200][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:201][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:201][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:201][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:201][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:201][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:201][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:202][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:203][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:203][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:203][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:203][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:203][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:203][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:204][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:204][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:204][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:204][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:204][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:212][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:213][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:213][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:213][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:213][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:214][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:214][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:214][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:214][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:214][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:214][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:215][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:215][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:217][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:217][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:217][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:217][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:217][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:217][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:218][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:227][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:227][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:228][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:228][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:228][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:228][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:228][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:228][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:228][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:229][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:229][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:229][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:229][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:229][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:231][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:231][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:231][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:231][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:231][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:232][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:232][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:232][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:232][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:232][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:233][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:233][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:233][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:242][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:242][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:242][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:243][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:243][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:243][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:243][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:243][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:243][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:243][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:245][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:245][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:245][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:245][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:245][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:246][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:246][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:246][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:246][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:246][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:247][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:247][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:247][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:247][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:247][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:247][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:247][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:257][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:257][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:257][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:257][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:258][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:258][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:258][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:258][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:258][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:258][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:259][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:259][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:259][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:259][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:260][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:260][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:260][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:260][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:260][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:261][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:261][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:261][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:278][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:278][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:278][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:279][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:279][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:279][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:279][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:279][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:279][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:280][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:280][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:280][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:280][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:280][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:281][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:281][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:281][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:281][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:281][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:281][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:282][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:282][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:282][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:282][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:282][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:282][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:282][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:291][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:291][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:291][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:292][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:292][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:292][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:292][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:292][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:292][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:293][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:293][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:293][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:293][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:294][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:294][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:294][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:294][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:294][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:294][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:294][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:296][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:296][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:296][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:296][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:297][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:297][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:297][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:305][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:305][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:305][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:305][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:307][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:307][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:307][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:307][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:307][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:307][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:307][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:308][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:308][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:308][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:308][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:308][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:309][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:309][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:309][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:309][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:309][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:310][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:310][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:310][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:310][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:310][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:310][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:319][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:319][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:319][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:320][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:320][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:322][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:322][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:322][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:322][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:322][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:323][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:323][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:323][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:323][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:323][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:323][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:324][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:324][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:324][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:324][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:324][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:332][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:334][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:334][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:334][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:334][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:335][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:335][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:335][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:335][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:335][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:335][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:336][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:336][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:337][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:337][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:337][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:337][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:337][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:338][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:338][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:338][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:345][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:345][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:345][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:347][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:347][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:347][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:347][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:347][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:347][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:347][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:348][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:348][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:348][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:348][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:348][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:349][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:349][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:349][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:349][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:349][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:349][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:350][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:350][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:350][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:350][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:350][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:350][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:359][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:359][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:359][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:360][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:360][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:360][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:360][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:360][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:361][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:361][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:362][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:362][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:362][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:362][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:363][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:363][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:363][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:363][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:363][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:363][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:364][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:364][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:364][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:364][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:364][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:364][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:364][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:373][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:373][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:374][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:374][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:374][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:374][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:375][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:375][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:375][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:375][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:375][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:375][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:375][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:377][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:377][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:377][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:377][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:377][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:377][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:378][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:378][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:378][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:378][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:379][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:379][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:379][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:379][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:387][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:388][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:388][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:388][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:388][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:389][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:389][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:389][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:389][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:389][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:389][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:390][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:390][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:390][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:390][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:390][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:390][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:390][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:391][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:391][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:391][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:391][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:391][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:393][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:393][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:393][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:393][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:401][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:401][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:401][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:403][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:403][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:403][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:403][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:403][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:403][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:404][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:404][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:404][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:404][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:405][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:405][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:405][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:405][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:405][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:405][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:405][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:406][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:406][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:406][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:406][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:407][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:407][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:407][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:414][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:414][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:414][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:415][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:415][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:417][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:417][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:417][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:417][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:417][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:417][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:418][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:418][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:418][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:418][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:419][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:419][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:419][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:419][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:419][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:419][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:429][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:429][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:429][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:429][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:430][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:430][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:430][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:430][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:430][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:430][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:431][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:431][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:431][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:431][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:431][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:433][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:433][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:433][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:433][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:433][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:433][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:434][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:434][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:434][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:434][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:434][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:434][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:443][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:443][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:444][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:444][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:444][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:444][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:445][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:445][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:445][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:445][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:445][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:445][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:445][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:447][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:447][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:447][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:447][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:447][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:447][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:447][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:448][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:448][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:448][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:448][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:449][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:449][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:449][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:458][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:458][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:458][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:459][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:459][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:459][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:459][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:459][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:459][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:460][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:460][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:460][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:460][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:461][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:461][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:461][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:461][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:461][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:461][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:462][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:462][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:462][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:462][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:462][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:464][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:464][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:464][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:471][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:473][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:473][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:473][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:473][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:474][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:474][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:474][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:474][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:474][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:475][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:475][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:476][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:476][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:476][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:477][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:477][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:477][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:477][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:478][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:478][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:478][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:487][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:487][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:487][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:488][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:488][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:488][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:488][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:489][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:489][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:489][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:489][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:489][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:489][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:490][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:490][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:490][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:490][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:490][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:490][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:492][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:492][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:492][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:501][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:502][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:502][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:502][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:503][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:503][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:503][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:503][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:503][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:503][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:505][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:505][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:505][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:505][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:505][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:506][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:506][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:506][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:506][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:506][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:506][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:506][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:507][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:507][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:507][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:507][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:507][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:515][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:515][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:515][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:517][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:517][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:517][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:517][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:517][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:517][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:518][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:518][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:518][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:518][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:519][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:519][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:519][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:519][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:519][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:519][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:520][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:520][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:520][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:520][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:520][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:521][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:521][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:521][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:529][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:529][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:529][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:530][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:530][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:530][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:530][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:530][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:530][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:532][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:532][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:532][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:532][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:533][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:533][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:533][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:533][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:533][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:533][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:533][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:534][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:534][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:534][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:534][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:534][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:534][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:534][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:543][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:543][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:544][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:544][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:544][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:545][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:545][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:547][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:547][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:547][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:547][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:547][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:547][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:548][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:548][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:549][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:556][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:556][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:557][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:557][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:557][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:557][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:558][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:558][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:558][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:558][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:558][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:558][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:559][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:559][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:559][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:559][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:559][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:559][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:560][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:560][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:560][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:560][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:561][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:561][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:561][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:561][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:561][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:569][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:569][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:570][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:570][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:570][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:570][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:571][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:571][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:571][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:571][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:571][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:571][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:572][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:572][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:572][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:572][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:572][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:572][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:573][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:573][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:573][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:573][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:573][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:574][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:574][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:574][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:574][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:582][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:583][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:583][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:583][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:583][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:584][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:584][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:584][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:584][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:584][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:584][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:585][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:585][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:585][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:585][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:585][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:585][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:586][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:586][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:587][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:587][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:587][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:587][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:587][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:588][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:588][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:588][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:595][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:595][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:595][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:597][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:597][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:597][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:597][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:597][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:597][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:597][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:598][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:598][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:598][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:598][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:598][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:599][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:599][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:599][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:599][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:599][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:599][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:600][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:600][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:600][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:600][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:600][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:600][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:608][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:608][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:608][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:608][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:610][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:610][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:610][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:610][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:610][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:610][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:611][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:611][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:611][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:611][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:612][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:612][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:612][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:612][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:612][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:613][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:613][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:613][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:613][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:613][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:614][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:614][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:614][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:623][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:623][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:623][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:624][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:624][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:624][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:624][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:624][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:624][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:625][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:625][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:625][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:625][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:626][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:626][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:626][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:626][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:626][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:626][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:627][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:627][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:627][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:627][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:627][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:628][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:628][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:628][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:634][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:634][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:635][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:635][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:635][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:635][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:635][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:635][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:635][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:637][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:637][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:637][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:637][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:637][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:638][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:638][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:638][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:638][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:638][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:639][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:639][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:639][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:639][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:639][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:640][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:640][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:640][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:647][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:647][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:647][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:648][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:648][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:648][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:648][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:648][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:648][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:649][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:649][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:649][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:649][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:650][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:650][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:650][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:650][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:650][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:650][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:651][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:651][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:651][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:651][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:651][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:652][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:652][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:652][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:658][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:658][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:658][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:659][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:659][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:659][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:659][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:659][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:659][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:660][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:660][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:660][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:660][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:661][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:661][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:661][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:661][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:661][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:662][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:662][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:662][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:662][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:662][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:663][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:663][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:663][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:663][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:670][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:670][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:670][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:671][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:671][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:671][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:671][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:671][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:671][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:672][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:672][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:672][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:672][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:672][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:673][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:673][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:673][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:673][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:673][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:674][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:674][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:674][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:674][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:675][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:675][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:675][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:675][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:683][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:683][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:684][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:684][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:684][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:684][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:684][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:684][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:685][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:685][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:685][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:685][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:686][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:686][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:686][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:686][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:686][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:686][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:687][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:687][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:687][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:695][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:695][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:696][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:696][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:696][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:696][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:697][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:697][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.23:697][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:697][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:697][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:697][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:697][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:698][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:698][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:698][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:698][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.23:698][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:698][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:700][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:700][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:700][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:700][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:700][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:701][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.23:701][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_12.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.23:701][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.23:738][608]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.23:738][608]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.23:739][608]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.08.23:739][608]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.23:739][608]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.08.23:741][608]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.08.23:745][608]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.23:760][608]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.23:760][608]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-10.08.23:760][608]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-10.08.23:762][608]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-10.08.23:767][608]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.08.23:843][609]LogPlayLevel: Display: Destroying online subsystem :Context_18 +[2025.06.16-10.08.33:541][701]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.08.33:541][701]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.08.34:297][783]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.08.34:777][824]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.08.34:839][824]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.08.34:841][824]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.08.34:841][824]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.08.34:841][824]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.08.34:848][824]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.08.34:848][824]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer990457BB4E3269E5882B88996C8C412C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.08.34:861][824]LogFileHelpers: InternalPromptForCheckoutAndSave took 84.729 ms (total: 817.645 ms) +[2025.06.16-10.08.34:914][824]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.08.34:914][824]LogContentValidation: Enabled validators: +[2025.06.16-10.08.34:914][824]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.08.34:915][824]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.08.34:915][824]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.08.34:915][824]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.08.34:915][824]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.08.34:915][824]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.08.34:915][824]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.08.36:050][948]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.08.36:055][948]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.08.36:056][948]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.08.36:057][948]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.265 ms (total: 17.946 ms) +[2025.06.16-10.08.36:057][948]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.08.36:057][948]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.36:059][948]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002220s) +[2025.06.16-10.08.36:059][948]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002357s) +[2025.06.16-10.08.36:073][948]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.08.36:076][948]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.08.36:077][948]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.08.36:077][948]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.08.36:077][948]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.08.36:077][948]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.08.36:078][948]LogWorldPartition: Display: WorldPartition initialize took 1.175 ms (total: 99.050 ms) +[2025.06.16-10.08.36:078][948]LogPlayLevel: PIE: World Init took: (0.002578s) +[2025.06.16-10.08.36:078][948]LogAudio: Display: Creating Audio Device: Id: 15, Scope: Unique, Realtime: True +[2025.06.16-10.08.36:078][948]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.08.36:079][948]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.08.36:079][948]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.08.36:079][948]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.08.36:079][948]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.08.36:079][948]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.08.36:081][948]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.08.36:107][948]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.08.36:107][948]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.08.36:107][948]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.08.36:107][948]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.08.36:108][948]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=15 +[2025.06.16-10.08.36:108][948]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=15 +[2025.06.16-10.08.36:110][948]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=15 +[2025.06.16-10.08.36:110][948]LogInit: FAudioDevice initialized with ID 15. +[2025.06.16-10.08.36:110][948]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=15 +[2025.06.16-10.08.36:110][948]LogAudio: Display: Audio Device (ID: 15) registered with world 'Dabaza'. +[2025.06.16-10.08.36:110][948]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-10.08.36:113][948]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.08.36:114][948]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.08.36 +[2025.06.16-10.08.36:114][948]LogWorld: Bringing up level for play took: 0.001132 +[2025.06.16-10.08.36:116][948]LogOnline: OSS: Created online subsystem instance for: :Context_19 +[2025.06.16-10.08.36:118][948]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.08.36:118][948]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.08.36:118][948]PIE: Server logged in +[2025.06.16-10.08.36:119][948]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.08.36:128][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:129][948]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:129][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:130][948]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:130][948]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:130][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:131][948]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:131][948]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:131][948]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:155][949]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:155][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:157][949]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:157][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:158][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:158][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:158][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:158][949]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:158][949]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:158][949]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:158][949]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:195][950]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:195][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:196][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:196][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:196][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:196][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:196][950]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:196][950]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:196][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:197][950]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:197][950]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:198][950]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:214][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:216][951]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:216][951]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:216][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:216][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:216][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:216][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:216][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:217][951]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:217][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:218][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:218][951]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:218][951]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:218][951]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:218][951]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:226][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:226][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:227][952]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:227][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:228][952]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:228][952]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:230][952]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:230][952]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:230][952]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:237][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:239][953]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:239][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:240][953]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:240][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:241][953]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:241][953]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:241][953]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:241][953]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:249][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:250][954]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:250][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:251][954]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:251][954]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:252][954]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:252][954]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:252][954]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:259][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:259][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:259][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:259][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:260][955]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:260][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:261][955]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:261][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:262][955]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:262][955]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:262][955]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:262][955]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:270][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:271][956]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:271][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:272][956]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:272][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:273][956]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:273][956]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:273][956]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:273][956]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:279][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:280][957]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:280][957]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:280][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:282][957]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:282][957]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:282][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:283][957]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:283][957]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:283][957]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:291][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:291][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:291][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:291][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:291][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:292][958]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:292][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:293][958]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:293][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:294][958]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:294][958]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:294][958]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:294][958]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:303][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:303][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:303][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:305][959]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:305][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:306][959]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:306][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:307][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:307][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:307][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:307][959]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:307][959]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:307][959]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:307][959]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:319][960]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:319][960]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:319][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:320][960]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:320][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:321][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:321][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:321][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:321][960]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:321][960]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:321][960]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:321][960]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:330][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:331][961]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:331][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:332][961]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:332][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:333][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:333][961]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:333][961]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:333][961]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:333][961]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:342][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:342][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:342][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:342][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:342][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:343][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:343][962]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:343][962]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:343][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:343][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:343][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:344][962]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:344][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:345][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:345][962]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:345][962]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:345][962]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:345][962]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:354][963]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:355][963]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:355][963]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:355][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:356][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:356][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:356][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:356][963]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:356][963]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:356][963]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:356][963]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:366][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:367][964]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:367][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:368][964]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:368][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:370][964]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:370][964]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:370][964]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:370][964]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:379][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:379][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:379][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:379][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:379][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:380][965]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:380][965]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:380][965]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:381][965]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:381][965]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:381][965]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:389][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:389][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:389][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:390][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:390][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:390][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:390][966]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:390][966]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:390][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:391][966]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:391][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:392][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:392][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:392][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:392][966]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:392][966]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:392][966]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:392][966]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:401][967]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:402][967]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:402][967]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:402][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:403][967]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:403][967]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:403][967]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:412][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:412][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:412][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:412][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:413][968]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:413][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:414][968]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:414][968]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:414][968]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:414][968]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:422][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:423][969]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:423][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:424][969]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:424][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:425][969]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:425][969]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:425][969]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:425][969]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:433][970]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:433][970]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:433][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:434][970]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:434][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:435][970]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:435][970]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:435][970]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:443][971]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:443][971]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:443][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:445][971]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:445][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:446][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:446][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:446][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:446][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:447][971]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:447][971]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:447][971]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:447][971]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:454][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:454][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:454][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:455][972]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:455][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:456][972]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:456][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:457][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:457][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:457][972]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:457][972]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:457][972]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:457][972]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:465][973]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:465][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:467][973]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:467][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:468][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:468][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:468][973]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:468][973]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:468][973]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:468][973]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:476][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:476][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:477][974]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:477][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:478][974]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:478][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:479][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:479][974]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:479][974]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:479][974]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:479][974]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:487][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:487][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:487][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:488][975]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:488][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:489][975]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:489][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:490][975]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:490][975]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:490][975]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:498][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:499][976]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:499][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:500][976]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:500][976]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:500][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:501][976]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:501][976]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:501][976]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:508][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:510][977]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:510][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:511][977]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:511][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:512][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:512][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:512][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:512][977]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:512][977]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:512][977]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:512][977]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:519][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:519][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:519][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:521][978]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:521][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:522][978]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:522][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:523][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:523][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:523][978]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:523][978]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:523][978]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:523][978]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:531][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:532][979]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:532][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:533][979]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:533][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:535][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:535][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:535][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:535][979]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:535][979]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:535][979]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:535][979]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:542][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:542][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:542][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:543][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:543][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:543][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:543][980]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:543][980]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:543][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:543][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:545][980]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:545][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:546][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:546][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:546][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:546][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:546][980]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:547][980]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:547][980]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:547][980]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:554][981]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:554][981]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:556][981]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:556][981]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:557][981]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:557][981]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:558][981]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:566][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:567][982]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:567][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:568][982]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:568][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:569][982]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:569][982]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:569][982]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:569][982]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:575][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:575][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:575][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:577][983]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:577][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:578][983]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:578][983]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:579][983]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:579][983]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:586][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:586][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:587][984]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:587][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:589][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:589][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:589][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:589][984]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:589][984]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:589][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:589][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:590][984]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:590][984]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:590][984]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:598][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:598][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:598][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:598][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:599][985]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:599][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:600][985]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:600][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:601][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:601][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:601][985]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:601][985]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:601][985]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:601][985]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:608][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:609][986]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:609][986]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:609][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:611][986]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:612][986]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:612][986]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:613][986]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:613][986]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:619][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:620][987]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:620][987]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:621][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:622][987]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:622][987]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:622][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:622][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:622][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:622][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:622][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:623][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:623][987]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:623][987]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:623][987]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:623][987]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:631][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:632][988]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:632][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:633][988]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:633][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:634][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:634][988]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:634][988]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:634][988]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:634][988]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:642][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:643][989]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:643][989]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:643][989]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:644][989]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:644][989]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:645][989]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:652][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:652][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:652][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:652][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:652][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:653][990]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:653][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:654][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:654][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:654][990]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:654][990]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:654][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:654][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:654][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:655][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:655][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:655][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:655][990]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:655][990]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:655][990]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:655][990]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:662][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:662][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:662][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:662][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:664][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:664][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:664][991]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:664][991]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:664][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:664][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:664][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:665][991]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:665][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:666][991]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:666][991]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:666][991]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:673][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:673][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:673][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:674][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:674][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:674][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:674][992]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:674][992]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:674][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:674][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:675][992]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:675][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:677][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:677][992]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:677][992]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:677][992]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:677][992]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:684][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:684][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:684][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:685][993]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:685][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:687][993]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:687][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:688][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:688][993]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:688][993]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:688][993]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:688][993]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:695][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:695][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:695][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:696][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:696][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:696][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:696][994]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:696][994]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:696][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:696][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:697][994]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:697][994]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:697][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:698][994]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:698][994]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:698][994]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:705][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:705][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:705][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:705][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:705][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:707][995]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:707][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:708][995]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:708][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:709][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:709][995]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:709][995]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:709][995]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:709][995]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:716][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:717][996]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:718][996]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:718][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:719][996]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:719][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:720][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:720][996]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:720][996]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:720][996]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:720][996]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:728][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:728][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:728][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:728][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:728][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:729][997]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:729][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:730][997]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:730][997]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:731][997]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:731][997]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:731][997]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:738][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:739][998]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:739][998]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:739][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:740][998]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:741][998]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:741][998]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:742][998]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:742][998]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:742][998]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:750][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:750][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:750][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:751][999]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:751][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:752][999]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:752][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:753][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:753][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:753][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:753][999]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:753][999]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:753][999]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:753][999]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:760][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:760][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:760][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:761][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:761][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:761][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:761][ 0]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:761][ 0]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:761][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:761][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:762][ 0]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:762][ 0]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:762][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:763][ 0]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:763][ 0]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:763][ 0]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:772][ 1]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:772][ 1]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:774][ 1]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:775][ 1]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:775][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:776][ 1]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:776][ 1]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:776][ 1]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:783][ 2]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:784][ 2]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:784][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:785][ 2]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:785][ 2]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:785][ 2]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:785][ 2]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:793][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:793][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:793][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:793][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:793][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:795][ 3]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:795][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:796][ 3]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:796][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:797][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:797][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:797][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:797][ 3]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:797][ 3]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:797][ 3]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:804][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:804][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:804][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:804][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:805][ 4]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:805][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:807][ 4]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:807][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:808][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:808][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:808][ 4]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:808][ 4]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:808][ 4]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:816][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:816][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:816][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:817][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:817][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:817][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:817][ 5]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:817][ 5]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:817][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:817][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:818][ 5]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:818][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:819][ 5]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:819][ 5]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:819][ 5]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:825][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:827][ 6]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:828][ 6]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:828][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:829][ 6]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:829][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:830][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:830][ 6]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:830][ 6]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:830][ 6]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:837][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:838][ 7]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:839][ 7]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:839][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:839][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:839][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:839][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:839][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:840][ 7]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:840][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:841][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:841][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:841][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:841][ 7]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:841][ 7]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:841][ 7]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:849][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:849][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:849][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:849][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:850][ 8]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:850][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:851][ 8]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:851][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:852][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:852][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:852][ 8]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:852][ 8]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:852][ 8]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:860][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:860][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:860][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:860][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:860][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:861][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:861][ 9]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:861][ 9]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:861][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:861][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:861][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:861][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:862][ 9]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:862][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:863][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:863][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:863][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:863][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:863][ 9]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:863][ 9]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:863][ 9]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:870][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:871][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:871][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:871][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:871][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:871][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:872][ 10]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:872][ 10]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:872][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:872][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:872][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:872][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:872][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:873][ 10]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:873][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:875][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:875][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:875][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:875][ 10]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:875][ 10]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:875][ 10]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:882][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:882][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:882][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:884][ 11]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:884][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:885][ 11]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:885][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:886][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:886][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:886][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:886][ 11]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:886][ 11]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:886][ 11]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:893][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:893][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:894][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:894][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:894][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:894][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:894][ 12]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:894][ 12]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:894][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:895][ 12]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:895][ 12]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:896][ 12]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:897][ 12]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:897][ 12]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:904][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:904][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:904][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:905][ 13]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:905][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:906][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:906][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:906][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:906][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:906][ 13]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:906][ 13]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:906][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:907][ 13]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:907][ 13]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:907][ 13]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:914][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:915][ 14]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:916][ 14]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:916][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:916][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:917][ 14]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:917][ 14]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:917][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:918][ 14]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:918][ 14]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:918][ 14]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:927][ 15]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:927][ 15]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:928][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:929][ 15]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:929][ 15]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:929][ 15]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:930][ 15]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:937][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:937][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:938][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:938][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:938][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:938][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:938][ 16]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:938][ 16]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:939][ 16]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:940][ 16]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:940][ 16]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:940][ 16]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:941][ 16]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:949][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:949][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:950][ 17]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:950][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:951][ 17]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:951][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:952][ 17]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:952][ 17]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:952][ 17]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:960][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:961][ 18]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:961][ 18]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:961][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:961][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:961][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:961][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:961][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:962][ 18]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:962][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:963][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:963][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:963][ 18]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:963][ 18]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:963][ 18]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:971][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:971][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:971][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:971][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:971][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:972][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:972][ 19]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:972][ 19]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:972][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:972][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:972][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:972][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:973][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:973][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:973][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:973][ 19]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:973][ 19]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:973][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:973][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:974][ 19]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:974][ 19]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:974][ 19]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:982][ 20]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:982][ 20]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:982][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:984][ 20]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:985][ 20]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:985][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:986][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:986][ 20]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:986][ 20]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:986][ 20]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:993][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:993][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:993][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:995][ 21]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:995][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:996][ 21]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:996][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.36:997][ 21]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.36:997][ 21]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.36:997][ 21]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:004][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:004][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:004][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:005][ 22]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:005][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:007][ 22]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:007][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:008][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:008][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:008][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:008][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:008][ 22]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:008][ 22]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:008][ 22]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:015][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:015][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:016][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:016][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:016][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:017][ 23]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:017][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:018][ 23]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:018][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:019][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:019][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:019][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:019][ 23]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:019][ 23]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:019][ 23]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:025][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:027][ 24]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:027][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:028][ 24]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:028][ 24]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:029][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:030][ 24]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:030][ 24]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:030][ 24]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:038][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:038][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:038][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:038][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:038][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:039][ 25]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:039][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:040][ 25]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:040][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:041][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:041][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:041][ 25]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:041][ 25]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:041][ 25]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:048][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:048][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:049][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:049][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:049][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:049][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:049][ 26]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:049][ 26]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:050][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:051][ 26]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:051][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:052][ 26]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:052][ 26]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:052][ 26]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:069][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:069][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:069][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:069][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:069][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:070][ 27]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:070][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:071][ 27]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:071][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:073][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:073][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:073][ 27]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:073][ 27]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:073][ 27]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:080][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:080][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:080][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:081][ 28]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:081][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:082][ 28]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:082][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:084][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:084][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:084][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:084][ 28]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:084][ 28]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:084][ 28]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:091][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:091][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:091][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:092][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:092][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:092][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:092][ 29]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:092][ 29]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:092][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:093][ 29]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:093][ 29]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:094][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:095][ 29]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:095][ 29]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:095][ 29]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:102][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:103][ 30]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:103][ 30]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:103][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:103][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:103][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:103][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:103][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:104][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:104][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:104][ 30]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:105][ 30]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:105][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:106][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:106][ 30]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:106][ 30]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:106][ 30]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:114][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:114][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:114][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:114][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:114][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:115][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:115][ 31]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:115][ 31]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:115][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:115][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:115][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:115][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:116][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:116][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:116][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:116][ 31]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:117][ 31]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:117][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:118][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:118][ 31]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:118][ 31]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:118][ 31]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:124][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:126][ 32]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:126][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:127][ 32]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:127][ 32]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:127][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:128][ 32]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:128][ 32]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:129][ 32]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:135][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:135][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:135][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:137][ 33]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:137][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:138][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:138][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:138][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:138][ 33]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:138][ 33]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:138][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:138][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:139][ 33]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:139][ 33]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:139][ 33]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:147][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:147][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:147][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:147][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:148][ 34]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:148][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:149][ 34]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:149][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:150][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:150][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:150][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:150][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:150][ 34]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:150][ 34]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:150][ 34]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:158][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:158][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:158][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:159][ 35]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:159][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:160][ 35]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:160][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:161][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:161][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:161][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:161][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:161][ 35]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:161][ 35]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:161][ 35]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:169][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:169][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:169][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:169][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:170][ 36]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:170][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:171][ 36]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:171][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:172][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:172][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:172][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:172][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:172][ 36]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:172][ 36]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:172][ 36]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:180][ 37]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:180][ 37]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:180][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:181][ 37]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:181][ 37]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:182][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:184][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:184][ 37]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:184][ 37]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:184][ 37]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:191][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:192][ 38]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:192][ 38]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:193][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:193][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:193][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:193][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:193][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:194][ 38]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:194][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:195][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:195][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:195][ 38]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:195][ 38]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:195][ 38]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:201][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:203][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:203][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:203][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:203][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:203][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:204][ 39]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:204][ 39]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:204][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:204][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:204][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:204][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:204][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:205][ 39]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:205][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:206][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:206][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:206][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:206][ 39]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:206][ 39]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:206][ 39]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:213][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:214][ 40]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:214][ 40]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:215][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:216][ 40]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:216][ 40]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:216][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:216][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:216][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:217][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:217][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:217][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:217][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:217][ 40]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:217][ 40]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:217][ 40]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:224][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:224][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:224][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:224][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:224][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:226][ 41]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:226][ 41]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:226][ 41]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:227][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:228][ 41]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:228][ 41]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:228][ 41]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:235][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:236][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:236][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:236][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:236][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:236][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:237][ 42]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:237][ 42]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:237][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:237][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:237][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:237][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:237][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:238][ 42]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:238][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:239][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:239][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:239][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:239][ 42]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:239][ 42]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:239][ 42]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:247][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:248][ 43]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:248][ 43]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:248][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:249][ 43]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:249][ 43]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:249][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:250][ 43]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:250][ 43]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:251][ 43]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:258][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:258][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:258][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:259][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:259][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:259][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:259][ 44]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:259][ 44]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:259][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:260][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:261][ 44]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:261][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:262][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:262][ 44]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:262][ 44]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:262][ 44]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:269][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:269][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:269][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:270][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:270][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:270][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:270][ 45]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:270][ 45]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:270][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:270][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:271][ 45]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:271][ 45]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:271][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:272][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:273][ 45]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:273][ 45]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:273][ 45]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:281][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:281][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:281][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:281][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:282][ 46]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:282][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:283][ 46]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:283][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:284][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:284][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:284][ 46]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:284][ 46]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:284][ 46]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:292][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:292][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:292][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:293][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:293][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:293][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:293][ 47]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:293][ 47]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:293][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:293][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:294][ 47]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:294][ 47]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:294][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:295][ 47]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:295][ 47]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:296][ 47]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:302][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:302][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:303][ 48]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:303][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:305][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:305][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:305][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:306][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:306][ 48]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:306][ 48]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:306][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:306][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:306][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:307][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:307][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:307][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:307][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:307][ 48]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:307][ 48]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:307][ 48]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:314][ 49]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:316][ 49]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:316][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:317][ 49]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:317][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:318][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:318][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:318][ 49]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:318][ 49]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:318][ 49]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:326][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:326][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:326][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:326][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:327][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:327][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:327][ 50]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:327][ 50]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:327][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:327][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:327][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:328][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:328][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:328][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:328][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:328][ 50]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:328][ 50]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:328][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:329][ 50]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:330][ 50]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:330][ 50]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:338][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:338][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:338][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:338][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:339][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:339][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:339][ 51]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:339][ 51]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:339][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:339][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:339][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:340][ 51]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:340][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:341][ 51]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:341][ 51]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:341][ 51]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:349][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:349][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:349][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:349][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:349][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:350][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:350][ 52]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:350][ 52]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:350][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:350][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:350][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:350][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:351][ 52]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:351][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:352][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:352][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:352][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:352][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:352][ 52]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:352][ 52]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:352][ 52]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:360][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:361][ 53]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:361][ 53]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:362][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:363][ 53]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:363][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:364][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:364][ 53]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:364][ 53]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:364][ 53]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:371][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:372][ 54]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:372][ 54]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:373][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:374][ 54]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:374][ 54]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:374][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:374][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:374][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:374][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:374][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:375][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:375][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:375][ 54]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:375][ 54]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:375][ 54]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:382][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:383][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:383][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:383][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:383][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:383][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:385][ 55]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:385][ 55]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:385][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:385][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:385][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:385][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:385][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:386][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:386][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:386][ 55]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:386][ 55]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:386][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:386][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:386][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:387][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:387][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:387][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:387][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:387][ 55]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:387][ 55]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:387][ 55]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:394][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:394][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:394][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:395][ 56]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:395][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:397][ 56]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:397][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:398][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:398][ 56]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:398][ 56]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:398][ 56]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:405][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:405][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:406][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:406][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:406][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:407][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:407][ 57]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:407][ 57]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:407][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:407][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:407][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:407][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:408][ 57]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:408][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:409][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:409][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:409][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:409][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:409][ 57]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:409][ 57]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:409][ 57]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:417][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:418][ 58]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:418][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:419][ 58]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:419][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:421][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:421][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:421][ 58]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:421][ 58]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:421][ 58]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:429][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:430][ 59]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:430][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:431][ 59]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:431][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:432][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:432][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:432][ 59]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:432][ 59]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:432][ 59]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:439][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:439][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:441][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:441][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:441][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:441][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:441][ 60]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:441][ 60]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:441][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:442][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:443][ 60]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:443][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:444][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:444][ 60]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:444][ 60]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:444][ 60]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:447][ 60]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2087.240967 +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:452][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:453][ 61]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:453][ 61]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:453][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:453][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:453][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:453][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:453][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:454][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:454][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:454][ 61]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:454][ 61]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:454][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:454][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:456][ 61]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:456][ 61]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:456][ 61]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:464][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:466][ 62]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:466][ 62]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:466][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:466][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:466][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:466][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:466][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:467][ 62]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:467][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:468][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:468][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:468][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:468][ 62]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:468][ 62]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:468][ 62]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:477][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:477][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:478][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:478][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:478][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:478][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:478][ 63]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:478][ 63]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:478][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:479][ 63]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:480][ 63]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:480][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:481][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:481][ 63]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:481][ 63]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:481][ 63]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:488][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:488][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:489][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:489][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:489][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:489][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:489][ 64]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:489][ 64]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:489][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:490][ 64]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:490][ 64]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:490][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:492][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:493][ 64]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:493][ 64]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:493][ 64]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:500][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:501][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:501][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:501][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:501][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:501][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:502][ 65]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:502][ 65]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:502][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:502][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:502][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:502][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:502][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:504][ 65]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:504][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:505][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:505][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:505][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:505][ 65]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:505][ 65]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:505][ 65]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:512][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:512][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:512][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:513][ 66]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:513][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:515][ 66]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:515][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:516][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:516][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:516][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:516][ 66]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:516][ 66]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:517][ 66]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:524][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:524][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:524][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:524][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:525][ 67]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:525][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:527][ 67]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:527][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:528][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:528][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:528][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:528][ 67]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:528][ 67]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:528][ 67]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:535][ 68]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:537][ 68]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:537][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:538][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:538][ 68]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:538][ 68]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:538][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:538][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:538][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:539][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:539][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:539][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:539][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:539][ 68]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:539][ 68]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:539][ 68]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:547][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:549][ 69]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:549][ 69]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:549][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:549][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:549][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:549][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:550][ 69]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:550][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:551][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:551][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:551][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:551][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:551][ 69]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:551][ 69]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:551][ 69]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:559][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:559][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:559][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:560][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:560][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:560][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:560][ 70]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:560][ 70]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:561][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:562][ 70]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:562][ 70]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:562][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:562][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:562][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:562][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:563][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:563][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:563][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:563][ 70]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:563][ 70]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:563][ 70]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:570][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:571][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:571][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:571][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:571][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:572][ 71]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:572][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:573][ 71]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:573][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:575][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:575][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:575][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:575][ 71]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:575][ 71]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:575][ 71]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:581][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:583][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:583][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:583][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:583][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:584][ 72]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:584][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:585][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:585][ 72]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:585][ 72]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:585][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:585][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:585][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:585][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:586][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:586][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:586][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:587][ 72]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:587][ 72]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:587][ 72]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:594][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:594][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:594][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:594][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:594][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:595][ 73]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:595][ 73]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:597][ 73]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:597][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:598][ 73]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:598][ 73]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:598][ 73]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:605][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:607][ 74]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:607][ 74]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:607][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:607][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:607][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:607][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:607][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:608][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:608][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:608][ 74]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:608][ 74]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:608][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:608][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:608][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:609][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:609][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:609][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:609][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:609][ 74]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:609][ 74]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:609][ 74]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:617][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:617][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:618][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:618][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:618][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:618][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:618][ 75]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:618][ 75]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:618][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:619][ 75]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:619][ 75]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:620][ 75]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:620][ 75]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:621][ 75]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:628][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:628][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:628][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:628][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:629][ 76]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:629][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:631][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:631][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:631][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:631][ 76]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:631][ 76]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:631][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:631][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:632][ 76]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:632][ 76]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:633][ 76]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:639][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:639][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:641][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:641][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:641][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:641][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:641][ 77]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:641][ 77]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:641][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:642][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:643][ 77]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:643][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:644][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:644][ 77]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:644][ 77]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:644][ 77]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:651][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:651][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:651][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:651][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:651][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:652][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:652][ 78]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:652][ 78]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:652][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:652][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:652][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:652][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:654][ 78]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:654][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:655][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:655][ 78]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:655][ 78]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:655][ 78]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:663][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:663][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:663][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:663][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:664][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:664][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:664][ 79]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:664][ 79]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:664][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:664][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:664][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:665][ 79]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:665][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:667][ 79]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:668][ 79]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:668][ 79]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:675][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:675][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:676][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:676][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:677][ 80]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:677][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:678][ 80]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:678][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:679][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:679][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:679][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:679][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:679][ 80]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:679][ 80]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:679][ 80]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:686][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:687][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:687][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:687][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:687][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:687][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:688][ 81]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:688][ 81]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:688][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:688][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:688][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:688][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:689][ 81]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:689][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:690][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:690][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:690][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:690][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:690][ 81]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:690][ 81]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:690][ 81]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:697][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:699][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:699][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:699][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:699][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:699][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:700][ 82]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:700][ 82]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:700][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:700][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:700][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:700][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:700][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:701][ 82]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:701][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:702][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:702][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:702][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:702][ 82]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:702][ 82]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:702][ 82]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:705][ 82]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.08.37:705][ 82]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2087.488037, Update Interval: 315.150604 +[2025.06.16-10.08.37:710][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:710][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:710][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:712][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:712][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:712][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:712][ 83]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:712][ 83]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:712][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:713][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:714][ 83]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:714][ 83]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:714][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:714][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:714][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:714][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:714][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:715][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:715][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:715][ 83]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:715][ 83]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:715][ 83]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:722][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:722][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:722][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:722][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:723][ 84]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:723][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:725][ 84]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:725][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:726][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:726][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:726][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:726][ 84]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:726][ 84]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:726][ 84]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:733][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:733][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:735][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:735][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:735][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:735][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:735][ 85]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:736][ 85]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:736][ 85]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:736][ 85]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:736][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:737][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:738][ 85]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:738][ 85]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:738][ 85]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:746][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:746][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:747][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:747][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:747][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:747][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:747][ 86]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:747][ 86]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:747][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:748][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:749][ 86]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:749][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:750][ 86]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:750][ 86]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:750][ 86]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:758][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:758][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:758][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:758][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:759][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:759][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:759][ 87]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:759][ 87]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:759][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:759][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:759][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:760][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:760][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:760][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:760][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:760][ 87]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:760][ 87]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:760][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:761][ 87]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:761][ 87]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:762][ 87]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:769][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:769][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:769][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:770][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:770][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:770][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:770][ 88]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:770][ 88]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:770][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:771][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:772][ 88]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:772][ 88]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:772][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:772][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:772][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:772][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:772][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:773][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:773][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:773][ 88]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:773][ 88]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:773][ 88]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:781][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:781][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:781][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:782][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:782][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:782][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:782][ 89]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:782][ 89]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:782][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:783][ 89]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:785][ 89]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:785][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:786][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:786][ 89]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:786][ 89]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:786][ 89]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:793][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:795][ 90]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:795][ 90]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:795][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:795][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:795][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:795][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:795][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:796][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:796][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:796][ 90]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:796][ 90]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:796][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:796][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:796][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:797][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:797][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:797][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:797][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:797][ 90]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:797][ 90]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:797][ 90]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:804][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:804][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:804][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:804][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:806][ 91]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:806][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:807][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:807][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:807][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:807][ 91]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:807][ 91]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:807][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:807][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:808][ 91]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:808][ 91]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:808][ 91]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:816][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:816][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:816][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:817][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:817][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:817][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:817][ 92]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:817][ 92]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:817][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:817][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:818][ 92]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:818][ 92]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:819][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:820][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:820][ 92]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:820][ 92]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:820][ 92]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:827][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:827][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:828][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:828][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:828][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:828][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:828][ 93]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:828][ 93]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:828][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:829][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:829][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:829][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:829][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:829][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:830][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:830][ 93]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:830][ 93]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:830][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:830][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:830][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:830][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:831][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:831][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:831][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:831][ 93]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:831][ 93]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:831][ 93]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:839][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:839][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:839][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:840][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:840][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:840][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:840][ 94]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:840][ 94]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:840][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:841][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:841][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:841][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:841][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:841][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:842][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:842][ 94]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:842][ 94]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:842][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:842][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:842][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:842][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:843][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:843][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:843][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:843][ 94]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:843][ 94]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:843][ 94]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:851][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:851][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:851][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:853][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:853][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:853][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:853][ 95]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:853][ 95]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:853][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:854][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:854][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:854][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:854][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:854][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:855][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:855][ 95]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:855][ 95]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:855][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:855][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:855][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:855][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:856][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:856][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:856][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:856][ 95]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:856][ 95]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:856][ 95]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:863][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:864][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:864][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:864][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:864][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:865][ 96]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:865][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:867][ 96]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:867][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:868][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:868][ 96]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:868][ 96]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:868][ 96]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:874][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:876][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:876][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:876][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:876][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:877][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:877][ 97]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:877][ 97]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:877][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:877][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:877][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:878][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:878][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:878][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:878][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:878][ 97]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:878][ 97]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:878][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:879][ 97]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:879][ 97]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:880][ 97]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:887][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:887][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:888][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:888][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:888][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:888][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:888][ 98]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:888][ 98]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:889][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:890][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:890][ 98]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:890][ 98]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:890][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:890][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:890][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:890][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:891][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:891][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:891][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:891][ 98]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:891][ 98]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:891][ 98]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:899][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:899][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:899][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:899][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:900][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:900][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:900][ 99]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:900][ 99]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:900][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:900][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:900][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:901][ 99]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:901][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:902][ 99]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:902][ 99]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:903][ 99]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:910][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:911][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:911][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:911][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:911][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:912][100]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:912][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:913][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:913][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:913][100]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:913][100]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:913][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:913][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:913][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:914][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:914][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:914][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:914][100]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:914][100]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:914][100]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:914][100]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:922][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:922][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:923][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:923][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:923][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:923][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:923][101]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:925][101]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:925][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:925][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:925][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:925][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:925][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:926][101]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:926][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:927][101]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:927][101]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:927][101]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:927][101]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:934][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:934][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:934][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:934][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:934][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:936][102]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:936][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:937][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:937][102]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:937][102]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:937][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:937][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:937][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:938][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:938][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:938][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:938][102]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:938][102]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:938][102]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:938][102]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:946][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:947][103]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:947][103]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:948][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:949][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:949][103]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:949][103]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:949][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:949][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:949][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:949][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:950][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:950][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:950][103]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:950][103]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:950][103]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:950][103]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:958][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:958][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:958][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:958][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:959][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:959][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:959][104]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:959][104]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:959][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:959][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:959][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:960][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:960][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:960][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:960][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:960][104]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:960][104]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:960][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:961][104]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:961][104]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:962][104]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:971][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:971][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:971][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:972][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:972][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:972][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:972][105]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:972][105]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:972][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:973][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:974][105]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:974][105]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:974][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:974][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:974][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:974][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:974][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:975][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:975][105]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:975][105]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:975][105]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:975][105]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:982][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:982][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:982][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:982][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:984][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:984][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:984][106]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:984][106]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:984][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:984][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:984][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:985][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:985][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:985][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:985][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:985][106]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:985][106]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:985][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:986][106]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:987][106]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:987][106]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:987][106]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:993][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:993][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:995][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:995][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:995][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:995][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:995][107]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:996][107]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.37:996][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:996][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:996][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:996][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:996][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:997][107]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:997][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:998][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:998][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:998][107]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.37:998][107]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.37:998][107]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.37:998][107]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:005][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:005][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:005][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:007][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:007][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:007][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:007][108]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:007][108]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:007][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:008][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:009][108]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:009][108]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:009][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:009][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:009][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:009][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:009][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:010][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:010][108]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:010][108]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:010][108]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:010][108]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:018][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:018][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:018][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:019][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:019][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:019][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:019][109]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:019][109]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:019][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:020][109]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:020][109]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:021][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:023][109]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:023][109]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:023][109]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:023][109]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:031][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:031][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:031][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:031][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:032][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:032][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:032][110]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:032][110]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:032][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:032][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:032][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:033][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:033][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:033][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:033][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:033][110]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:033][110]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:033][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:034][110]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:035][110]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:035][110]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:035][110]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:042][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:043][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:043][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:043][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:043][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:043][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:044][111]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:044][111]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:044][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:044][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:044][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:044][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:045][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:045][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:045][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:045][111]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:045][111]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:045][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:045][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:046][111]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:047][111]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:047][111]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:055][112]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:055][112]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:057][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:058][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:058][112]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:058][112]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:058][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:058][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:058][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:058][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:059][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:059][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:059][112]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:059][112]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:059][112]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:059][112]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:067][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:067][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:067][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:067][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:068][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:068][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:068][113]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:068][113]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:068][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:068][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:068][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:069][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:069][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:069][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:069][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:069][113]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:069][113]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:069][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:070][113]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:071][113]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:071][113]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:090][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:091][114]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:091][114]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:091][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:091][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:091][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:091][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:091][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:092][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:092][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:092][114]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:092][114]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:092][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:092][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:092][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:094][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:094][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:094][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:094][114]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:094][114]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:094][114]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:094][114]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:102][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:102][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:102][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:102][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:103][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:103][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:103][115]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:103][115]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:103][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:103][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:104][115]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:104][115]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:104][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:105][115]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:106][115]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:106][115]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:106][115]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:114][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:114][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:114][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:114][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:115][116]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:115][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:116][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:116][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:116][116]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:117][116]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:117][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:117][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:117][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:117][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:117][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:118][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:118][116]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:118][116]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:118][116]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:118][116]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:125][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:125][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:127][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:127][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:127][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:127][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:127][117]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:127][117]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:128][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:129][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:129][117]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:129][117]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:129][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:129][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:129][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:129][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:130][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:130][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:130][117]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:130][117]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:130][117]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:130][117]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:138][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:138][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:138][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:139][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:139][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:139][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:140][118]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:140][118]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:140][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:140][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:140][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:140][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:141][118]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:141][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:143][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:143][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:143][118]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:143][118]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:143][118]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:143][118]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:152][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:152][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:152][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:152][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:153][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:153][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:153][119]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:153][119]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:153][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:153][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:153][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:154][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:154][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:154][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:154][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:154][119]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:154][119]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:154][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:155][119]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:155][119]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:156][119]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:163][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:164][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:164][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:164][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:164][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:165][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:165][120]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:165][120]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:165][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:165][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:165][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:165][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:166][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:166][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:166][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:166][120]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:166][120]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:166][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:166][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:167][120]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:167][120]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:167][120]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:175][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:176][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:176][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:176][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:176][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:177][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:177][121]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:177][121]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:177][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:177][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:177][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:177][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:178][121]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:178][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:179][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:179][121]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:179][121]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:179][121]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:179][121]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:187][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:187][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:188][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:188][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:188][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:188][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:188][122]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:189][122]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:189][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:189][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:189][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:189][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:189][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:190][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:190][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:190][122]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:190][122]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:190][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:190][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:191][122]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:191][122]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:191][122]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:200][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:200][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:201][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:201][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:201][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:201][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:201][123]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:201][123]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:201][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:202][123]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:203][123]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:203][123]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:204][123]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:204][123]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:204][123]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:210][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:210][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:210][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:211][124]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:211][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:212][124]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:212][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:213][124]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:213][124]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:213][124]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:220][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:220][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:220][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:220][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:221][125]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:221][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:222][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:222][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:222][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:222][125]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:222][125]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:222][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:224][125]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:224][125]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:224][125]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:230][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:230][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:230][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:231][126]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:231][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:233][126]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:233][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:234][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:234][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:234][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:234][126]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:234][126]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:234][126]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:234][126]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:242][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:242][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:242][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:242][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:242][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:243][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:243][127]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:243][127]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:243][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:243][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:243][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:244][127]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:244][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:246][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:246][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:246][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:246][127]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:246][127]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:246][127]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:246][127]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:254][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:254][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:254][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:255][128]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:255][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:256][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:256][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:257][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:257][128]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:257][128]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:257][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:257][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:257][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:257][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:258][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:258][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:258][128]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:258][128]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:258][128]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:258][128]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:265][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:265][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:265][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:265][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:267][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:267][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:267][129]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:267][129]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:267][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:267][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:267][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:268][129]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:268][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:269][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:269][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:269][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:269][129]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:269][129]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:269][129]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:269][129]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:277][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:277][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:278][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:278][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:278][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:278][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:278][130]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:278][130]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.38:278][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:279][130]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:279][130]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:280][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:282][130]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:282][130]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.38:282][130]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_13.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.38:282][130]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.38:308][131]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.38:308][131]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.38:309][131]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.08.38:309][131]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.38:309][131]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.08.38:311][131]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.08.38:315][131]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.38:333][131]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.08.38:334][131]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-10.08.38:334][131]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-10.08.38:335][131]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-10.08.38:338][131]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.38:340][131]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.08.38:405][132]LogPlayLevel: Display: Destroying online subsystem :Context_19 +[2025.06.16-10.08.44:823][677]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.08.44:829][677]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.08.44:829][677]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.08.44:830][677]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.302 ms (total: 19.248 ms) +[2025.06.16-10.08.44:830][677]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.08.44:830][677]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.44:833][677]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002185s) +[2025.06.16-10.08.44:833][677]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002312s) +[2025.06.16-10.08.44:846][677]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.08.44:847][677]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.08.44:848][677]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.08.44:848][677]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.08.44:848][677]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.08.44:848][677]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.08.44:849][677]LogWorldPartition: Display: WorldPartition initialize took 1.059 ms (total: 100.110 ms) +[2025.06.16-10.08.44:849][677]LogPlayLevel: PIE: World Init took: (0.002312s) +[2025.06.16-10.08.44:850][677]LogAudio: Display: Creating Audio Device: Id: 16, Scope: Unique, Realtime: True +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.08.44:850][677]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.08.44:850][677]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.08.44:850][677]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.08.44:850][677]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.08.44:851][677]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.08.44:852][677]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.08.44:878][677]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.08.44:878][677]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.08.44:878][677]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.08.44:878][677]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.08.44:878][677]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=16 +[2025.06.16-10.08.44:878][677]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=16 +[2025.06.16-10.08.44:880][677]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=16 +[2025.06.16-10.08.44:880][677]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=16 +[2025.06.16-10.08.44:880][677]LogInit: FAudioDevice initialized with ID 16. +[2025.06.16-10.08.44:880][677]LogAudio: Display: Audio Device (ID: 16) registered with world 'Dabaza'. +[2025.06.16-10.08.44:882][677]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-10.08.44:883][677]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.08.44:884][677]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.08.44 +[2025.06.16-10.08.44:885][677]LogWorld: Bringing up level for play took: 0.001201 +[2025.06.16-10.08.44:887][677]LogOnline: OSS: Created online subsystem instance for: :Context_20 +[2025.06.16-10.08.44:888][677]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.08.44:888][677]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.08.44:889][677]PIE: Server logged in +[2025.06.16-10.08.44:890][677]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-10.08.44:899][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:899][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:899][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:899][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:900][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:900][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:902][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.44:902][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:902][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:902][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:902][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:902][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:903][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:903][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:903][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:903][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.44:903][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:929][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:929][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:931][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:931][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:932][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:932][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:932][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:932][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:932][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.44:932][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:968][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:968][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:968][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:968][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:969][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:969][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:969][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.44:969][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:971][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:971][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.44:971][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:988][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:989][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:989][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:990][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:990][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:992][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:992][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:992][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.44:992][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.44:992][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.44:992][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:000][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:001][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:001][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:002][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:002][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:003][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:003][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:003][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:003][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:003][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:003][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:003][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:011][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:011][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:013][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:013][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:014][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:014][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:014][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:014][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:014][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:014][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:014][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:022][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:023][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:023][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:024][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:024][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:025][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:025][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:025][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:025][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:025][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:025][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:033][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:033][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:033][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:034][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:034][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:035][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:035][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:036][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:036][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:044][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:044][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:044][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:044][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:044][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:045][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:045][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:046][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:046][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:047][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:047][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:047][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:047][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:047][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:054][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:055][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:055][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:057][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:057][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:058][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:058][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:058][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:058][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:058][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:058][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:067][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:067][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:067][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:068][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:068][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:068][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:070][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:070][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:070][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:079][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:079][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:080][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:080][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:081][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:081][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:082][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:082][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:082][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:082][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:091][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:091][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:091][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:091][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:091][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:092][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:092][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:093][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:093][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:094][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:094][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:104][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:105][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:105][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:105][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:106][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:106][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:106][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:115][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:115][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:115][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:115][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:115][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:117][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:117][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:118][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:118][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:119][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:119][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:119][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:119][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:119][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:128][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:128][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:130][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:130][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:131][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:131][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:131][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:131][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:141][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:141][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:142][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:142][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:144][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:144][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:152][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:152][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:154][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:154][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:155][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:155][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:155][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:155][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:164][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:164][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:166][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:166][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:167][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:167][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:167][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:175][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:175][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:176][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:176][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:177][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:177][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:178][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:178][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:178][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:178][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:178][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:186][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:187][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:187][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:188][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:188][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:189][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:189][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:189][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:189][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:189][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:197][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:197][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:197][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:198][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:198][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:200][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:200][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:201][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:201][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:201][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:201][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:208][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:210][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:210][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:210][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:211][699]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:211][699]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:212][699]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:220][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:220][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:221][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:221][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:223][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:223][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:223][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:223][700]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:223][700]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:223][700]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:223][700]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:231][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:231][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:231][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:232][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:232][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:234][701]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:234][701]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:234][701]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:243][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:243][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:244][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:244][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:245][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:245][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:245][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:245][702]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:245][702]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:245][702]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:245][702]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:253][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:254][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:254][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:255][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:255][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:257][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:257][703]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:257][703]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:257][703]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:257][703]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:265][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:266][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:266][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:267][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:267][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:268][704]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:268][704]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:268][704]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:268][704]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:275][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:275][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:275][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:275][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:275][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:277][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:277][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:278][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:278][705]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:279][705]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:279][705]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:279][705]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:287][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:288][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:288][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:290][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:290][706]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:290][706]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:290][706]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:298][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:299][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:299][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:300][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:300][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:301][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:301][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:301][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:301][707]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:301][707]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:301][707]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:301][707]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:310][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:310][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:310][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:311][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:311][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:312][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:312][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:312][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:313][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:313][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:313][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:313][708]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:313][708]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:313][708]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:313][708]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:321][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:321][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:322][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:322][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:323][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:323][709]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:324][709]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:324][709]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:324][709]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:332][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:332][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:332][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:332][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:332][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:333][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:333][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:333][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:334][710]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:334][710]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:334][710]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:343][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:344][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:344][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:344][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:344][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:346][711]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:346][711]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:347][711]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:356][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:356][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:356][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:357][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:357][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:358][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:358][712]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:358][712]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:358][712]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:358][712]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:367][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:367][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:367][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:368][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:368][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:369][713]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:369][713]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:370][713]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:378][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:378][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:378][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:378][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:378][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:379][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:379][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:379][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:380][714]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:380][714]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:382][714]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:389][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:389][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:390][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:390][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:391][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:391][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:393][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:393][715]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:393][715]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:393][715]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:393][715]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:401][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:401][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:401][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:401][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:401][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:402][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:402][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:402][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:402][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:403][716]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:403][716]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:403][716]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:411][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:412][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:412][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:413][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:414][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:414][717]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:415][717]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:415][717]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:423][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:423][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:423][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:424][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:424][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:425][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:425][718]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:426][718]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:426][718]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:426][718]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:435][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:435][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:435][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:435][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:435][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:436][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:436][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:437][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:437][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:438][719]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:438][719]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:438][719]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:438][719]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:445][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:445][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:445][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:447][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:447][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:448][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:448][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:449][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:449][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:449][720]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:449][720]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:449][720]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:449][720]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:458][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:458][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:458][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:460][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:460][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:461][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:461][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:462][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:462][721]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:462][721]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:462][721]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:462][721]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:472][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:472][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:473][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:473][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:473][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:474][722]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:474][722]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:474][722]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:484][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:485][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:485][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:485][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:487][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:487][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:487][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:487][723]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:487][723]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:487][723]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:487][723]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:495][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:495][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:495][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:497][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:497][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:498][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:498][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:499][724]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:499][724]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:499][724]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:499][724]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:509][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:509][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:509][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:509][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:510][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:510][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:510][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:510][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:510][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:510][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:510][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:511][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:511][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:513][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:513][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:513][725]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:513][725]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:513][725]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:513][725]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:523][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:523][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:523][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:524][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:524][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:526][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:526][726]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:526][726]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:526][726]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:526][726]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:535][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:535][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:535][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:537][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:537][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:538][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:538][727]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:538][727]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:538][727]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:538][727]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:547][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:547][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:548][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:548][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:550][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:550][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:551][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:551][728]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:551][728]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:551][728]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:551][728]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:580][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:580][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:580][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:582][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:582][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:583][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:583][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:583][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:583][729]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:583][729]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:583][729]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:583][729]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:593][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:593][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:593][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:593][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:593][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:594][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:594][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:594][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:596][730]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:597][730]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:597][730]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:605][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:605][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:605][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:607][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:607][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:608][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:608][731]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:610][731]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:610][731]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:610][731]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:618][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:619][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:619][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:620][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:620][732]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:622][732]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:622][732]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:622][732]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:631][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:632][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:632][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:632][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:634][733]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:634][733]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:634][733]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:643][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:643][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:643][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:643][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:643][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:644][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:644][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:646][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:646][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:647][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:647][734]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:647][734]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:647][734]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:647][734]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:655][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:656][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:656][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:656][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:656][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:656][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:657][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:657][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:658][735]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:658][735]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:658][735]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:658][735]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:668][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:669][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:669][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:670][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:670][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:671][736]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:671][736]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:671][736]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:696][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:697][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:697][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:699][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:699][737]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:700][737]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:700][737]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:709][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:709][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:710][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:710][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:711][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:711][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:713][738]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:713][738]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:713][738]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:713][738]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:720][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:721][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:721][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:723][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:723][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:723][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:724][739]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:724][739]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:724][739]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:734][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:735][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:735][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:736][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:736][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:736][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:737][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:737][740]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:737][740]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:737][740]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:745][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:745][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:745][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:745][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:747][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:747][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:747][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:747][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:747][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:747][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:747][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:748][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:748][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:749][741]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:749][741]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:749][741]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:749][741]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:758][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:758][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:759][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:759][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:761][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:761][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:761][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:761][742]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:761][742]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:761][742]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:761][742]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:769][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:769][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:769][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:769][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:769][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:771][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:771][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:771][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:772][743]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:772][743]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:773][743]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:781][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:781][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:781][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:782][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:782][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:782][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:784][744]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:784][744]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:784][744]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:794][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:794][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:794][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:795][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:795][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:796][745]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:797][745]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:797][745]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:797][745]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:805][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:805][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:807][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:807][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:808][746]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:808][746]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:808][746]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:817][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:817][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:818][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:818][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:820][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:820][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:820][747]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:820][747]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:820][747]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:820][747]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:827][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:827][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:829][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:829][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:829][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:829][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:829][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:829][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:829][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:830][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:830][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:831][748]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:831][748]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:831][748]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:851][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:852][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:852][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:853][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:853][749]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:853][749]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:854][749]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:864][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:866][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:866][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:867][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:867][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:868][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:868][750]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:868][750]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:868][750]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:868][750]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:878][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:878][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:878][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:878][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:878][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:879][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:879][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:880][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:880][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:882][751]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:882][751]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:882][751]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:882][751]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:891][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:892][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:892][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:892][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:893][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:893][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:894][752]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:895][752]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:895][752]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:895][752]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:905][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:905][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:905][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:905][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:905][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:906][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:906][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:906][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:906][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:906][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:906][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:906][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:907][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:907][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:908][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:908][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:908][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:908][753]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:908][753]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:908][753]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:908][753]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:917][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:918][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:918][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:919][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:919][754]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:921][754]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:921][754]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:931][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:931][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:931][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:931][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:931][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:932][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:932][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:933][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:933][755]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:934][755]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:934][755]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:934][755]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:942][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:942][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:943][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:943][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:945][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:945][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:946][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:946][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:946][756]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:947][756]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:947][756]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:947][756]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:957][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:958][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:958][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:958][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:959][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:959][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:960][757]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:960][757]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:960][757]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:969][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:969][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:969][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:969][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:970][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:970][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:971][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:971][758]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:973][758]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:973][758]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:982][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:982][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:982][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:982][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:982][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:983][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:983][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:984][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:984][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:985][759]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:985][759]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:985][759]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:985][759]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:993][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:993][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.45:993][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:994][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:994][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.45:994][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.45:996][760]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.45:997][760]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.45:997][760]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:005][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:005][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:005][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:007][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:007][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:007][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:007][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:007][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:008][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:008][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:009][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:009][761]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:009][761]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:009][761]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:009][761]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:019][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:019][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:019][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:019][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:019][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:020][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:020][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:021][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:021][762]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:022][762]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:022][762]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:022][762]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:029][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:029][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:029][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:029][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:030][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:030][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:031][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:031][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:032][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:032][763]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:032][763]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:032][763]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:032][763]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:039][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:039][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:039][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:040][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:040][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:041][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:041][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:042][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:042][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:042][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:042][764]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:042][764]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:042][764]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:042][764]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:050][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:051][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:051][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:052][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:052][765]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:053][765]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:053][765]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:053][765]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:059][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:059][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:059][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:059][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:060][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:060][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:062][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:062][766]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.08.46:062][766]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_14.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.08.46:062][766]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.08.46:098][767]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.46:098][767]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.08.46:098][767]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.08.46:099][767]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.46:099][767]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.08.46:101][767]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.08.46:105][767]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.08.46:121][767]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.08.46:122][767]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-10.08.46:122][767]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-10.08.46:123][767]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-10.08.46:129][767]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-10.08.46:204][768]LogPlayLevel: Display: Destroying online subsystem :Context_20 +[2025.06.16-10.09.07:700][221]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.09.07:705][221]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.09.07:705][221]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.09.07:707][221]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.431 ms (total: 20.680 ms) +[2025.06.16-10.09.07:707][221]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.09.07:707][221]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.09.07:709][221]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002235s) +[2025.06.16-10.09.07:709][221]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002361s) +[2025.06.16-10.09.07:734][221]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.09.07:735][221]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.09.07:736][221]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.09.07:736][221]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.09.07:737][221]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.09.07:737][221]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.09.07:737][221]LogWorldPartition: Display: WorldPartition initialize took 1.073 ms (total: 101.183 ms) +[2025.06.16-10.09.07:737][221]LogPlayLevel: PIE: World Init took: (0.002506s) +[2025.06.16-10.09.07:738][221]LogAudio: Display: Creating Audio Device: Id: 17, Scope: Unique, Realtime: True +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.09.07:738][221]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.09.07:738][221]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.09.07:738][221]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.09.07:738][221]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.09.07:738][221]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.09.07:741][221]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.09.07:765][221]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.09.07:765][221]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.09.07:765][221]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.09.07:765][221]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.09.07:765][221]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=17 +[2025.06.16-10.09.07:765][221]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=17 +[2025.06.16-10.09.07:769][221]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=17 +[2025.06.16-10.09.07:769][221]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=17 +[2025.06.16-10.09.07:769][221]LogInit: FAudioDevice initialized with ID 17. +[2025.06.16-10.09.07:769][221]LogAudio: Display: Audio Device (ID: 17) registered with world 'Dabaza'. +[2025.06.16-10.09.07:769][221]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-10.09.07:771][221]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.09.07:772][221]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.09.07 +[2025.06.16-10.09.07:772][221]LogWorld: Bringing up level for play took: 0.001071 +[2025.06.16-10.09.07:774][221]LogOnline: OSS: Created online subsystem instance for: :Context_21 +[2025.06.16-10.09.07:776][221]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.09.07:776][221]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.09.07:776][221]PIE: Server logged in +[2025.06.16-10.09.07:777][221]PIE: Play in editor total start time 0.072 seconds. +[2025.06.16-10.09.07:785][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:787][221]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:787][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:788][221]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:788][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:790][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:790][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:790][221]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:790][221]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:790][221]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:790][221]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:816][222]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:816][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:817][222]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:817][222]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:817][222]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:817][222]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:865][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:865][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:865][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:866][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:866][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:866][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:866][223]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:866][223]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:866][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:866][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:867][223]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:867][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:868][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:868][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:868][223]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:868][223]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:868][223]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:868][223]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:876][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:876][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:876][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:877][224]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:877][224]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:878][224]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:878][224]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:878][224]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:878][224]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:887][225]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:887][225]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:887][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:888][225]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:888][225]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:888][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:889][225]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:889][225]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:889][225]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:898][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:899][226]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:899][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:900][226]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:900][226]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:901][226]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:901][226]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:901][226]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:908][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:908][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:908][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:909][227]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:909][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:910][227]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:910][227]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:910][227]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:910][227]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:918][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:918][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:918][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:918][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:919][228]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:919][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:920][228]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:920][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:921][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:921][228]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:921][228]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:921][228]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:921][228]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:930][229]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:930][229]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:931][229]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:931][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:932][229]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:932][229]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:932][229]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:941][230]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:941][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:942][230]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:942][230]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:942][230]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:944][230]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:950][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:950][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:951][231]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:951][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:952][231]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:952][231]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:954][231]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:954][231]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:954][231]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:962][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:963][232]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:963][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:964][232]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:964][232]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:965][232]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:965][232]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:965][232]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:973][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:974][233]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:974][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:975][233]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:975][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:977][233]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:977][233]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:977][233]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:977][233]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:984][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:984][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:986][234]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:986][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:987][234]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:987][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:988][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:988][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:988][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:988][234]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:988][234]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:988][234]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.07:988][234]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:997][235]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:997][235]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.07:997][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.07:998][235]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.07:998][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:000][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:000][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:000][235]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:000][235]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:000][235]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:000][235]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:009][236]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:009][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:010][236]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:010][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:011][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:011][236]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:011][236]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:011][236]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:011][236]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:019][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:019][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:020][237]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:020][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:021][237]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:021][237]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:021][237]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:023][237]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:032][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:033][238]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:033][238]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:034][238]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:034][238]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:034][238]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:035][238]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:043][239]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:043][239]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:044][239]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:044][239]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:045][239]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:045][239]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:046][239]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:053][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:053][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:053][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:054][240]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:054][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:056][240]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:056][240]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:057][240]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:057][240]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:057][240]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:065][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:065][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:066][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:066][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:066][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:066][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:066][241]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:066][241]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:067][241]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:067][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:068][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:068][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:068][241]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:068][241]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:068][241]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:068][241]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:075][242]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:075][242]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:077][242]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:077][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:079][242]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:079][242]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:079][242]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:079][242]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:086][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:086][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:086][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:086][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:087][243]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:087][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:088][243]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:088][243]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:088][243]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:088][243]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:096][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:096][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:097][244]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:097][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:098][244]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:098][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:099][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:099][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:099][244]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:099][244]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:099][244]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:099][244]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:106][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:107][245]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:107][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:108][245]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:108][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:110][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:110][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:110][245]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:110][245]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:110][245]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:110][245]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:117][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:117][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:118][246]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:118][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:119][246]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:119][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:120][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:120][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:120][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:120][246]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:120][246]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:120][246]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:120][246]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:127][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:128][247]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:128][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:129][247]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:129][247]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:131][247]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:131][247]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:137][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:137][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:138][248]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:138][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:140][248]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:140][248]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:140][248]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:140][248]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:148][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:148][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:148][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:148][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:148][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:149][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:149][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:150][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:150][249]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:151][249]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:151][249]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:151][249]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:159][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:159][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:159][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:160][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:160][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:162][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:162][250]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:162][250]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:162][250]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:162][250]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:169][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:169][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:169][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:170][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:170][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:172][251]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:172][251]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:172][251]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:180][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:181][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:181][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:181][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:183][252]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:183][252]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:183][252]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:191][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:192][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:192][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:193][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:193][253]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:193][253]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:193][253]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:201][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:201][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:201][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:201][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:201][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:202][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:202][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:203][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:203][254]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:204][254]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:204][254]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:204][254]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:211][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:211][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:211][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:211][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:211][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:212][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:212][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:214][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:214][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:215][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:215][255]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:215][255]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:215][255]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:215][255]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:222][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:222][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:223][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:224][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:224][256]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:224][256]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:226][256]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:232][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:232][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:233][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:233][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:235][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:235][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:235][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:235][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:235][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:235][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:235][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:236][257]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:236][257]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:236][257]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:243][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:243][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:245][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:245][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:246][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:246][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:246][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:246][258]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:246][258]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:246][258]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:246][258]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:253][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:253][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:253][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:254][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:254][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:255][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:255][259]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:257][259]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:257][259]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:264][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:264][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:264][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:265][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:265][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:265][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:266][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:266][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:266][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:267][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:267][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:267][260]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:267][260]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:267][260]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:267][260]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:274][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:274][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:274][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:275][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:275][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:276][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:276][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:276][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:276][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:276][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:276][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:277][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:277][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:277][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:277][261]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:277][261]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:277][261]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:277][261]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:285][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:286][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:286][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:287][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:287][262]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:287][262]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:288][262]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:295][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:295][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:295][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:296][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:296][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:296][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:297][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:297][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:298][263]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:298][263]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:298][263]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:298][263]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:305][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:305][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:307][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:308][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:308][264]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:308][264]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:308][264]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:316][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:316][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:316][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:317][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:317][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:318][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:318][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:319][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:319][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:319][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:319][265]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:319][265]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:319][265]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:319][265]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:326][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:326][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:327][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:327][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:328][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:328][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:330][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:330][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:330][266]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:330][266]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:330][266]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:330][266]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:337][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:338][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:338][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:339][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:339][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:340][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:340][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:340][267]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:340][267]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:340][267]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:340][267]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:348][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:348][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:348][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:349][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:349][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:350][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:350][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:351][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:351][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:351][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:351][268]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:351][268]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:351][268]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:351][268]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:359][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:359][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:359][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:360][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:360][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:360][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:360][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:360][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:361][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:361][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:362][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:362][269]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:362][269]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:362][269]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:362][269]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:369][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:369][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:369][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:370][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:370][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:371][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:371][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:371][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:371][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:371][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:371][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:371][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:373][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:373][270]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:373][270]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:373][270]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:373][270]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:380][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:380][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:380][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:380][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:381][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:381][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:383][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:383][271]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:384][271]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:384][271]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:384][271]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:390][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:391][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:391][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:391][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:391][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:391][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:392][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:392][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:393][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:393][272]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:394][272]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:394][272]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:394][272]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:402][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:402][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:403][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:404][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:404][273]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:405][273]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:405][273]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:405][273]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:412][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:412][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:412][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:414][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:414][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:415][274]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:415][274]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:415][274]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:423][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:424][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:424][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:424][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:426][275]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:427][275]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:427][275]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:434][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:434][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:434][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:435][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:435][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:437][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:437][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:437][276]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:437][276]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:437][276]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:437][276]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:445][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:445][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:445][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:445][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:445][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:446][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:446][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:446][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:446][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:446][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:446][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:446][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:447][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:447][277]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:449][277]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:449][277]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:449][277]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:455][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:455][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:457][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:457][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:458][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:458][278]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:459][278]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:459][278]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:465][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:465][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:465][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:467][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:467][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:467][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:467][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:467][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:467][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:467][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:468][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:468][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:468][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:469][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:469][279]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:469][279]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:470][279]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:477][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:477][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:477][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:478][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:478][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:479][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:479][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:480][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:480][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:480][280]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:480][280]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:480][280]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:480][280]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:487][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:488][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:489][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:489][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:490][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:490][281]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:491][281]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:491][281]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:491][281]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:497][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:497][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:498][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:498][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:498][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:498][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:498][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:498][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:498][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:500][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:500][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:501][282]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:501][282]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:501][282]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:509][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:509][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:510][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:510][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:510][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:510][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:510][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:510][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:510][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:511][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:511][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:511][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:512][283]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:512][283]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:512][283]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:521][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:521][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:521][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:522][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:522][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:523][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:523][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:524][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:524][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:524][284]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:524][284]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:524][284]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:524][284]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:531][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:531][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:531][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:531][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:531][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:532][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:532][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:532][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:532][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:532][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:532][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:532][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:533][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:533][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:534][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:534][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:534][285]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:534][285]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:534][285]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:534][285]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:542][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:543][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:543][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:543][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:544][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:544][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:546][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:546][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:546][286]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:546][286]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:546][286]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:546][286]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:554][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:554][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:554][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:554][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:554][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:555][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:555][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:555][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:557][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:557][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:557][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:557][287]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:557][287]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:557][287]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:557][287]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:564][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:564][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:564][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:564][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:564][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:566][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:566][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:566][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:566][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:566][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:566][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:567][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:567][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:568][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:568][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:568][288]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:568][288]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:568][288]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:568][288]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:575][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:577][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:577][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:577][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:577][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:577][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:577][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:577][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:578][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:578][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:579][289]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:579][289]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:579][289]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:579][289]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:585][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:587][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:587][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:588][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:588][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:590][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:590][290]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:590][290]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:590][290]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:590][290]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:597][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:597][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:599][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:599][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:600][291]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:600][291]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:600][291]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:608][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:608][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:608][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:609][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:609][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:611][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:611][292]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:612][292]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:612][292]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:620][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:621][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:621][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:622][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:622][293]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:622][293]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:622][293]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:632][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:633][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:633][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:633][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:635][294]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:635][294]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:635][294]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:642][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:643][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:643][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:643][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:645][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:645][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:645][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:646][295]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:647][295]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:647][295]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:654][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:655][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:655][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:655][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:657][296]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:658][296]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:658][296]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:658][296]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:665][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:665][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:665][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:665][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:666][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:666][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:667][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:667][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:668][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:668][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:668][297]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:668][297]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:668][297]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:668][297]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:676][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:676][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:676][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:676][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:676][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:677][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:677][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:677][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:677][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:677][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:677][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:677][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:678][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:678][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:680][298]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:680][298]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:680][298]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:680][298]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:687][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:688][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:688][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:689][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:689][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:690][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:690][299]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:690][299]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:690][299]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:690][299]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:698][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:698][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:698][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:699][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:699][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:700][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:700][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:700][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:701][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:701][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:701][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:701][300]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:701][300]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:701][300]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:701][300]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:718][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:718][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:720][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:720][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:721][301]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:721][301]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:721][301]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:729][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:729][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:730][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:730][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:732][302]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:732][302]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:733][302]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:739][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:740][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:740][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:742][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:742][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:743][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:743][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:743][303]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:743][303]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:743][303]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:743][303]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:751][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:751][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:752][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:752][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:753][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:753][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:753][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:753][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:753][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:753][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:753][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:754][304]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:754][304]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:754][304]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:763][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:764][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:764][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:766][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:766][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:766][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:767][305]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:767][305]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:767][305]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:775][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:775][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:775][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:776][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:776][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:776][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:777][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:777][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:778][306]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:778][306]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:778][306]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:778][306]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:785][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:786][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:786][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:786][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:786][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:786][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:787][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:787][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:788][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:788][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:789][307]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:789][307]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:789][307]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:789][307]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:796][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:797][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:797][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:798][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:798][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:798][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:799][308]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:799][308]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:799][308]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:808][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:808][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:808][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:809][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:809][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:811][309]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:811][309]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:812][309]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:818][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:819][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:819][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:820][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:821][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:821][310]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:821][310]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:823][310]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:830][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:831][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:831][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:831][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:831][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:831][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:831][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:832][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:832][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:833][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:833][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:833][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:833][311]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:833][311]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:833][311]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:833][311]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:840][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:841][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:841][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:841][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:842][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:842][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:844][312]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:844][312]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:844][312]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:852][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:853][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:853][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:853][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:853][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:853][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:853][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:853][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:854][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:854][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:855][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:855][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:855][313]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:855][313]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:855][313]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:855][313]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:863][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:864][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:864][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:864][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:865][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:865][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:867][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:867][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:867][314]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:867][314]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:867][314]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:867][314]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:875][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:875][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:875][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:875][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:875][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:877][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:877][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:878][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:878][315]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:878][315]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:878][315]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:886][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:886][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:887][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:887][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:888][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:888][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:890][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:890][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:890][316]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:890][316]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:890][316]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:890][316]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:898][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:898][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:898][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:898][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:898][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:899][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:899][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:900][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:900][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:901][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:901][317]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:901][317]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:901][317]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:901][317]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:908][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:909][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:909][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:909][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:911][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:911][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:912][318]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:913][318]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:913][318]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:913][318]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:919][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:919][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:919][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:919][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:921][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:921][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:922][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:922][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:923][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:923][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:923][319]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:923][319]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:923][319]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:923][319]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:930][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:931][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:931][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:931][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:931][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:931][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:932][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:932][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:932][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:932][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:932][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:932][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:932][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:933][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:933][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:934][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:934][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:934][320]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:934][320]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:934][320]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:934][320]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:942][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:942][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:942][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:942][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:942][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:943][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:943][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:944][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:944][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:945][321]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:945][321]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:945][321]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:945][321]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:952][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:952][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:953][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:953][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:954][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:954][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:956][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:956][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:956][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:956][322]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:956][322]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:956][322]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:956][322]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:963][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:963][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:964][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:964][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:965][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:965][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:967][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:967][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:967][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:967][323]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:967][323]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:967][323]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:967][323]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:974][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:974][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:974][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:975][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:975][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:977][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:977][324]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:977][324]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:978][324]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:986][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:987][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:987][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:987][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:989][325]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:989][325]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.08:989][325]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:997][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:998][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:998][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.08:999][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.08:999][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:001][326]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:001][326]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:001][326]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:009][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:009][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:009][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:010][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:011][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:011][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:011][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:011][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:012][327]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:012][327]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:012][327]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:020][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:020][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:020][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:020][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:021][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:021][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:022][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:022][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:023][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:023][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:023][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:023][328]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:023][328]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:023][328]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:023][328]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:031][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:031][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:033][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:033][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:034][329]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:034][329]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:035][329]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:042][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:042][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:042][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:043][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:043][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:044][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:044][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:045][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:045][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:045][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:045][330]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:045][330]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:045][330]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:045][330]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:053][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:053][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:053][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:053][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:054][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:054][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:055][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:055][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:056][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:056][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:056][331]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:056][331]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:056][331]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:056][331]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:063][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:063][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:063][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:064][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:064][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:066][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:066][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:067][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:067][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:067][332]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:067][332]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:067][332]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:067][332]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:075][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:075][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:076][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:076][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:076][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:076][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:076][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:076][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:076][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:077][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:077][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:077][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:078][333]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:078][333]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:078][333]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:086][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:086][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:086][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:086][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:087][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:087][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:088][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:088][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:089][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:089][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:089][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:089][334]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:089][334]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:089][334]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:089][334]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:097][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:097][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:097][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:099][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:099][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:099][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:099][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:099][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:100][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:100][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:101][335]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:101][335]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:101][335]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:101][335]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:108][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:109][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:109][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:110][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:110][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:112][336]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:113][336]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:113][336]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:119][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:120][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:120][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:121][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:121][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:121][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:121][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:121][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:121][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:121][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:122][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:122][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:122][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:123][337]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:124][337]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:124][337]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:130][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:131][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:131][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:131][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:132][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:134][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:134][338]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:135][338]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:135][338]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:135][338]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:143][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:143][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:143][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:144][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:144][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:145][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:145][339]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:145][339]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:147][339]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:155][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:155][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:155][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:155][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:155][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:156][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:156][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:157][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:157][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:158][340]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:158][340]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:158][340]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:158][340]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:165][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:165][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:167][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:167][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:167][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:167][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:167][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:167][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:167][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:168][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:168][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:169][341]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:170][341]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:170][341]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:170][341]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:177][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:178][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:178][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:179][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:179][342]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:181][342]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:181][342]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:187][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:188][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:188][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:190][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:190][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:191][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:191][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:191][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:191][343]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:191][343]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:191][343]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:191][343]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:198][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:199][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:201][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:201][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:201][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:202][344]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:202][344]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:202][344]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:210][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:211][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:211][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:212][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:212][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:213][345]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:213][345]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:213][345]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:213][345]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:220][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:220][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:221][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:221][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:221][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:221][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:221][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:221][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:221][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:222][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:222][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:222][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:224][346]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:225][346]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:225][346]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:233][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:234][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:234][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:234][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:234][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:234][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:234][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:234][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:236][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:236][347]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:236][347]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:236][347]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:243][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:244][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:244][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:244][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:244][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:244][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:245][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:245][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:245][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:245][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:245][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:245][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:246][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:246][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:246][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:247][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:247][348]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:247][348]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:248][348]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:255][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:257][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:257][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:258][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:259][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:259][349]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:260][349]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:260][349]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:268][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:268][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:268][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:269][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:270][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:270][350]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:272][350]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:272][350]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:279][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:279][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:280][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:280][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:280][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:280][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:280][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:280][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:280][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:282][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:282][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:283][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:284][351]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:284][351]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:284][351]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:284][351]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:291][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:291][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:292][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:292][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:292][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:292][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:292][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:292][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:294][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:295][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:295][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:295][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:295][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:295][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:295][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:295][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:296][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:296][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:296][352]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:296][352]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:296][352]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:296][352]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:304][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:304][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:304][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:306][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:306][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:307][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:307][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:307][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:307][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:307][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:308][353]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:308][353]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:308][353]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:317][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:317][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:317][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:317][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:318][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:318][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:318][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:318][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:318][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:318][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:319][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:319][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:320][354]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:320][354]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:320][354]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:329][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:330][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:330][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:330][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:330][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:331][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:331][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:331][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:331][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:331][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:331][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:332][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:332][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:332][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:332][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:332][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:332][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:333][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:333][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:333][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:333][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:333][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:334][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:334][355]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:334][355]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:334][355]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:334][355]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:342][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:343][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:343][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:343][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:343][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:344][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:344][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:346][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:346][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:347][356]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:347][356]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:347][356]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:347][356]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:355][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:356][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:356][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:357][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:357][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:357][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:357][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:357][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:357][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:358][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:359][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:359][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:360][357]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:360][357]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:360][357]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:360][357]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:369][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:369][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:369][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:369][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:371][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:371][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:372][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:372][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:374][358]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:374][358]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:374][358]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:374][358]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:381][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:381][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:381][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:381][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:383][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:383][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:383][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:383][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:383][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:383][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:383][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:384][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:384][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:384][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:384][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:384][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:384][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:384][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:385][359]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:385][359]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:385][359]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:394][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:394][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:395][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:395][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:395][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:395][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:396][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:396][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:396][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:396][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:396][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:397][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:397][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:398][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:398][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:398][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:398][360]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:398][360]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:398][360]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:398][360]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:407][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:407][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:408][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:408][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:409][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:409][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:409][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:409][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:409][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:411][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:411][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:411][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:411][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:411][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:411][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:411][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:412][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:412][361]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:412][361]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:412][361]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:412][361]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:420][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:422][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:422][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:422][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:422][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:422][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:422][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:422][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:423][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:423][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:424][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:424][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:424][362]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:424][362]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:424][362]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:424][362]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:432][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:432][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:432][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:432][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:432][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:433][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:433][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:433][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:433][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:433][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:433][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:435][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:435][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:435][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:435][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:435][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:435][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:435][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:436][363]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:437][363]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:437][363]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:437][363]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:445][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:445][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:445][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:446][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:447][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:447][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:448][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:448][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:448][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:448][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:448][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:448][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:448][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:449][364]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:449][364]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:449][364]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:458][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:458][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:458][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:458][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:459][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:459][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:459][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:459][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:459][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:459][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:460][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:461][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:461][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:462][365]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:462][365]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:462][365]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:462][365]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:470][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:470][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:470][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:470][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:470][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:472][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:472][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:472][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:472][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:472][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:472][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:473][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:473][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:474][366]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:474][366]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:474][366]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:482][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:484][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:484][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:485][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:485][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:485][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:485][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:485][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:485][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:485][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:486][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:486][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:486][367]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:486][367]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:486][367]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:486][367]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:494][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:494][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:494][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:494][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:495][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:495][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:497][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:497][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:498][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:498][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:498][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:498][368]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:498][368]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:498][368]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:498][368]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:507][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:507][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:507][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:507][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:507][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:508][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:508][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:509][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:509][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:509][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:509][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:509][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:509][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:509][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:511][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:511][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:511][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:511][369]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:511][369]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:511][369]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:511][369]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:520][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:520][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:520][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:520][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:521][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:521][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:521][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:521][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:521][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:521][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:522][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:522][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:522][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:523][370]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:523][370]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:523][370]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:532][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:532][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:533][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:533][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:533][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:533][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:533][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:533][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:533][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:535][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:536][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:536][371]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:536][371]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:537][371]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:544][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:544][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:545][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:545][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:547][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:547][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:547][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:547][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:547][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:547][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:548][372]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:549][372]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:549][372]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:549][372]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:557][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:557][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:558][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:558][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:558][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:558][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:558][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:558][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:558][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:559][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:560][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:560][373]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:561][373]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:561][373]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:561][373]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:569][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:569][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:569][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:569][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:570][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:570][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:570][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:570][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:570][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:570][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:571][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:571][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:571][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:572][374]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:574][374]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:574][374]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:582][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:582][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:582][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:582][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:583][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:583][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:583][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:583][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:583][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:583][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:584][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:584][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:584][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:585][375]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:585][375]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:585][375]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:594][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:594][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:595][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:595][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:597][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:597][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:598][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:598][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:598][376]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:598][376]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:598][376]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:598][376]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:606][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:607][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:607][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:608][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:608][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:608][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:608][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:608][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:608][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:608][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:609][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:609][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:609][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:610][377]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:611][377]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:611][377]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:618][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:618][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:619][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:619][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:619][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:620][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:620][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:620][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:620][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:620][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:620][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:620][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:621][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:621][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:622][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:622][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:622][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:622][378]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:622][378]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:622][378]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:622][378]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:630][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:630][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:630][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:630][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:631][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:631][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:632][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:632][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:632][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:632][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:632][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:632][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:633][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:633][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:633][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:633][379]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:633][379]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:633][379]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:633][379]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:641][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:641][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:641][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:641][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:642][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:642][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:642][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:642][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:642][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:642][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:642][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:644][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:644][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:645][380]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:645][380]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:646][380]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:652][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:653][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:653][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:653][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:653][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:653][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:654][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:654][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:654][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:654][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:654][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:654][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:654][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:655][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:655][381]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:655][381]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:657][381]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:664][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:665][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:665][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:665][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:665][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:665][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:665][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:665][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:667][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:667][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:668][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:668][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:668][382]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:668][382]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:668][382]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:668][382]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:676][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:677][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:677][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:679][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:679][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:680][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:680][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:680][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:680][383]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:680][383]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:680][383]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:680][383]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:688][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:688][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:688][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:688][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:688][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:689][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:689][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:689][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:689][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:689][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:689][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:689][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:690][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:690][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:691][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:691][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:691][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:691][384]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:691][384]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:691][384]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:691][384]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:699][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:700][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:700][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:700][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:700][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:700][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:701][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:701][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:702][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:702][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:704][385]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:704][385]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:704][385]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:704][385]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:711][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:711][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:711][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:711][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:712][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:712][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:712][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:712][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:712][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:712][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:712][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:713][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:713][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:715][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:715][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:715][386]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:715][386]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:715][386]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:715][386]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:723][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:723][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:723][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:723][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:724][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:724][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:724][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:724][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:724][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:724][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:724][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:725][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:725][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:727][387]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:727][387]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:727][387]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:727][387]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:734][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:736][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:736][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:736][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:736][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:736][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:736][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:737][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:737][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:738][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:738][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:738][388]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:738][388]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:738][388]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:738][388]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:746][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:747][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:747][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:747][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:747][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:747][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:748][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:748][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:748][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:748][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:748][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:748][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:749][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:749][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:749][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:749][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:749][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:749][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:749][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:750][389]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:750][389]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:750][389]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:758][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:758][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:759][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:759][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:759][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:759][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:760][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:760][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:760][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:760][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:760][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:760][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:760][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:761][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:761][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:762][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:762][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:762][390]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:762][390]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:762][390]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:762][390]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:769][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:770][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:770][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:770][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:770][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:770][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:771][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:771][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:771][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:771][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:771][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:771][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:771][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:772][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:772][391]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:774][391]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:774][391]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:774][391]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:781][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:781][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:781][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:782][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:782][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:782][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:782][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:782][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:782][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:783][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:783][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:783][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:784][392]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:785][392]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:785][392]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:785][392]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:792][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:793][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:793][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:794][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:794][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:794][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:796][393]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:796][393]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:797][393]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:804][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:805][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:805][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:805][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:806][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:806][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:806][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:807][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:807][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:807][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:807][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:807][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:807][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:807][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:808][394]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:808][394]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:808][394]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:815][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:817][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:817][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:817][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:817][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:817][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:818][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:818][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:818][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:818][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:818][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:818][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:818][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:819][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:819][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:820][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:820][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:820][395]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:820][395]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:820][395]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:820][395]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:828][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:828][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:828][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:828][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:828][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:829][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:829][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:829][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:829][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:829][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:829][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:829][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:830][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:830][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:831][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:831][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:831][396]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:831][396]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:831][396]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:831][396]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:839][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:840][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:840][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:841][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:842][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:842][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:843][397]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:843][397]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:843][397]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:843][397]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:850][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:851][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:851][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:853][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:854][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:854][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:855][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:855][398]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:855][398]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:855][398]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:855][398]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:863][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:863][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:863][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:863][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:863][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:864][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:864][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:864][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:864][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:864][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:864][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:864][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:865][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:865][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:865][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:865][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:865][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:865][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:865][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:866][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:866][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:866][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:867][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:867][399]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:867][399]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:867][399]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:867][399]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:874][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:874][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:874][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:875][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:875][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:876][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:876][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:876][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:877][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:877][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:878][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:878][400]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:878][400]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:878][400]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:878][400]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:885][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:885][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:886][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:886][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:886][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:886][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:886][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:886][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:887][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:888][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:888][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:889][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:889][401]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:889][401]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:889][401]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:889][401]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:895][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:897][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:897][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:897][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:897][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:898][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:898][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:898][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:898][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:898][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:898][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:899][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:899][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:899][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:899][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:899][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:899][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:899][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:900][402]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:901][402]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:901][402]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:901][402]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:908][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:909][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:909][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:909][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:909][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:910][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:910][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:910][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:910][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:910][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:910][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:910][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:911][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:911][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:911][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:911][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:911][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:911][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:911][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:912][403]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:912][403]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:912][403]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:919][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:919][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:920][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:920][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:922][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:922][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:922][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:923][404]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:924][404]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:924][404]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:924][404]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:930][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:932][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:932][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:932][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:932][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:932][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:933][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:933][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:933][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:933][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:933][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:933][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:934][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:934][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:935][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:935][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:935][405]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:935][405]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:935][405]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:935][405]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:944][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:944][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:944][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:944][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:945][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:945][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:946][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:946][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:946][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:947][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:947][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:947][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:947][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:947][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:947][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:947][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:948][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:948][406]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:948][406]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:948][406]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:948][406]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:955][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:956][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:956][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:956][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:956][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:957][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:957][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:957][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:957][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:957][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:957][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:957][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:958][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:958][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:959][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:959][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:959][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:959][407]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:959][407]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:959][407]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:959][407]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:967][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:967][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:967][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:967][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:968][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:968][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:970][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:970][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:971][408]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:971][408]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:971][408]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:971][408]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:978][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:979][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:979][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:979][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:979][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:979][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:980][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:980][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:981][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:981][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:981][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:981][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:981][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:981][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:981][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:982][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:982][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:982][409]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:982][409]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:982][409]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:982][409]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:989][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:990][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:990][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:991][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:991][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:991][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:991][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:991][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.09:991][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:991][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:992][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:992][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:993][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:994][410]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.09:994][410]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.09:994][410]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.09:994][410]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:001][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:002][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:002][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:002][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:002][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:003][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:003][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:003][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:003][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:003][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:003][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:003][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:004][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:004][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:005][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:005][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:005][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:005][411]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:005][411]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:005][411]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:005][411]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:013][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:013][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:013][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:013][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:014][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:014][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:014][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:014][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:014][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:014][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:014][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:015][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:015][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:016][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:016][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:017][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:017][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:017][412]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:017][412]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:017][412]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:017][412]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:024][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:024][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:025][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:025][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:025][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:025][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:025][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:025][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:025][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:027][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:028][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:028][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:028][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:028][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:028][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:028][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:029][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:029][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:029][413]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:029][413]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:029][413]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:029][413]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:037][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:037][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:037][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:037][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:038][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:038][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:038][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:038][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:038][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:038][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:039][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:039][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:039][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:041][414]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:041][414]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:041][414]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:049][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:049][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:049][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:050][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:050][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:050][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:050][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:050][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:050][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:051][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:052][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:052][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:052][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:052][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:052][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:052][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:052][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:053][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:053][415]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:053][415]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:053][415]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:053][415]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:061][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:061][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:061][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:061][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:062][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:062][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:062][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:062][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:062][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:062][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:062][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:063][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:063][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:064][416]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:064][416]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:064][416]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:073][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:073][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:073][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:073][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:074][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:074][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:075][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:075][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:076][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:076][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:076][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:076][417]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:076][417]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:076][417]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:076][417]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:083][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:084][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:084][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:085][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:085][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:085][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:087][418]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:088][418]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:088][418]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:088][418]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:095][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:095][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:095][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:096][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:096][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:096][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:096][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:096][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:096][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:097][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:097][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:098][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:098][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:099][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:099][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:099][419]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:099][419]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:099][419]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:099][419]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:107][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:107][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:107][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:107][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:108][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:108][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:108][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:108][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:108][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:108][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:109][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:109][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:109][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:110][420]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:111][420]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:111][420]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:111][420]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:120][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:120][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:120][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:121][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:121][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:121][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:121][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:121][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:121][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:121][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:122][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:122][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:122][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:123][421]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:124][421]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:124][421]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:124][421]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:131][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:131][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:131][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:131][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:131][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:132][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:132][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:132][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:132][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:132][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:132][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:134][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:134][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:135][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:135][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:135][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:135][422]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:135][422]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:135][422]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:135][422]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:143][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:144][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:144][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:145][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:147][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:147][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:148][423]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:148][423]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:148][423]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:148][423]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:155][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:156][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:156][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:156][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:156][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:156][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:157][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:157][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:158][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:158][424]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:160][424]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:160][424]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:160][424]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:168][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:168][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:168][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:168][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:168][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:169][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:169][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:169][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:169][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:169][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:169][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:169][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:170][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:170][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:171][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:171][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:171][425]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:171][425]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:171][425]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:171][425]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:179][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:179][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:180][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:180][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:181][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:181][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:183][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:183][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:183][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:183][426]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:183][426]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:183][426]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:183][426]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:190][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:190][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:190][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:190][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:192][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:192][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:192][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:192][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:192][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:192][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:192][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:193][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:193][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:195][427]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:195][427]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:195][427]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:202][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:203][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:203][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:203][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:205][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:205][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:205][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:206][428]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:207][428]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:207][428]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:207][428]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:214][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:215][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:215][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:215][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:215][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:216][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:216][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:216][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:216][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:216][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:216][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:216][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:217][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:217][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:217][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:217][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:217][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:217][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:217][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:218][429]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:218][429]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:219][429]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:227][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:227][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:227][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:227][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:227][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:228][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:228][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:228][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:228][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:228][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:228][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:228][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:229][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:229][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:230][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:230][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:230][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:230][430]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:230][430]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:230][430]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:230][430]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:238][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:238][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:239][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:239][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:239][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:239][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:239][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:239][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:239][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:240][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:241][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:241][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:241][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:241][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:241][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:241][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:242][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:242][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:242][431]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:242][431]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:242][431]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:242][431]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:250][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:250][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:251][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:251][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:253][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:253][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:253][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:254][432]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:255][432]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:255][432]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:255][432]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:262][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:262][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:263][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:263][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:263][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:263][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:263][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:263][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:264][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:264][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:264][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:265][433]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:267][433]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:267][433]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:274][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:274][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:275][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:275][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:275][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:275][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:275][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:275][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:275][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:276][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:277][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:277][434]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:277][434]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:277][434]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:286][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:286][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:286][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:286][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:287][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:287][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:287][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:287][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:287][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:287][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:287][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:288][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:288][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:290][435]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:290][435]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:290][435]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:297][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:298][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:298][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:298][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:298][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:299][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:299][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:301][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:301][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:301][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:301][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:301][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:301][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:301][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:302][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:302][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:302][436]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:302][436]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:302][436]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:302][436]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:309][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:310][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:310][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:310][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:310][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:311][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:311][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:311][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:311][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:311][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:311][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:311][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:312][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:312][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:312][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:312][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:312][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:312][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:313][437]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:314][437]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:314][437]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:321][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:321][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:322][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:322][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:324][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:325][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:325][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:326][438]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:326][438]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:326][438]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:326][438]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:332][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:333][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:333][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:333][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:333][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:335][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:335][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:335][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:335][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:335][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:335][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:335][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:336][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:336][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:336][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:336][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:336][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:336][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:336][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:337][439]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:337][439]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:338][439]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:346][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:346][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:346][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:347][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:347][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:348][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:348][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:348][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:348][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:348][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:348][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:348][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:349][440]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:351][440]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:351][440]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:351][440]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:358][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:358][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:358][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:358][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:358][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:359][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:359][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:359][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:359][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:359][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:359][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:360][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:360][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:360][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:360][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:360][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:360][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:360][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:361][441]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:362][441]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:362][441]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:369][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:369][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:370][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:370][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:370][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:370][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:371][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:371][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:371][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:371][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:371][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:371][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:371][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:372][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:372][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:372][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:372][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:372][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:372][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:372][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:373][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:373][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:373][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:373][442]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:373][442]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:373][442]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:373][442]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:382][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:382][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:383][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:383][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:383][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:383][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:383][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:383][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:383][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:384][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:385][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:385][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:385][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:385][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:385][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:385][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:385][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:386][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:386][443]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:386][443]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:386][443]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:386][443]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:394][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:395][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:395][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:395][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:395][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:395][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:395][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:395][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:396][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:396][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:396][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:396][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:397][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:398][444]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:398][444]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:398][444]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:398][444]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:405][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:405][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:406][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:406][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:406][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:406][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:407][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:407][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:407][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:407][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:407][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:407][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:407][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:408][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:408][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:408][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:408][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:408][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:408][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:408][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:409][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:409][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:409][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:409][445]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:409][445]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:409][445]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:409][445]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:418][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:418][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:418][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:418][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:419][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:419][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:420][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:420][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:420][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:420][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:420][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:420][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:420][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:421][446]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:421][446]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:421][446]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:430][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:431][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:431][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:431][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:431][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:431][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:432][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:432][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:432][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:432][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:432][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:432][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:433][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:433][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:434][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:434][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:434][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:434][447]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:434][447]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:434][447]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:434][447]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:444][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:444][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:444][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:445][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:445][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:447][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:447][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:448][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:448][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:448][448]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:448][448]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:448][448]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:448][448]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:455][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:457][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:457][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:457][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:459][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:459][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:460][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:461][449]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:461][449]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:461][449]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:461][449]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:470][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:470][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:470][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:470][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:470][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:471][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:471][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:472][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:472][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:472][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:472][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:472][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:473][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:473][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:474][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:474][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:474][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:474][450]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:474][450]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:474][450]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:475][450]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:482][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:482][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:482][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:483][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:483][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:483][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:483][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:484][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:484][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:484][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:484][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:484][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:485][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:485][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:485][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:486][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:486][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:486][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:486][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:486][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:486][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:487][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:487][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:487][451]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:487][451]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:487][451]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:487][451]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:495][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:496][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:496][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:496][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:496][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:497][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:497][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:498][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:498][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:498][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:498][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:498][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:498][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:498][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:499][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:499][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:499][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:499][452]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:499][452]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:499][452]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:500][452]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:509][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:509][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:509][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:510][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:510][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:511][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:511][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:511][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:511][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:511][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:511][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:511][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:512][453]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:513][453]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:513][453]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:513][453]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:522][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:523][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:524][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:524][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:524][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:524][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:524][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:524][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:525][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:525][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:527][454]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:527][454]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:527][454]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:527][454]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:534][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:534][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:534][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:535][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:535][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:536][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:536][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:536][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:536][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:537][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:537][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:538][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:538][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:538][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:538][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:538][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:539][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:539][455]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:539][455]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:539][455]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:539][455]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:549][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:549][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:549][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:550][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:550][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:550][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:550][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:550][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:551][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:551][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:551][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:551][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:552][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:552][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:552][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:552][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:552][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:552][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:553][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:553][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:553][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:553][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:553][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:554][456]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:554][456]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:554][456]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:554][456]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:562][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:563][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:564][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:564][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:564][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:564][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:564][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:564][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:565][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:565][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:565][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:565][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:565][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:565][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:565][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:566][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:566][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:566][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:567][457]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:567][457]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:567][457]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:567][457]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:575][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:575][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:576][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:576][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:576][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:576][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:576][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:576][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:577][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:578][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:578][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:578][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:578][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:578][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:578][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:579][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:579][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:579][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:579][458]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:579][458]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:579][458]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:579][458]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:588][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:588][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:588][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:589][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:589][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:589][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:589][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:589][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:589][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:589][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:590][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:590][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:592][459]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:592][459]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:593][459]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:601][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:601][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:601][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:601][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:601][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:603][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:603][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:604][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:604][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:605][460]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:605][460]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:605][460]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:605][460]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:633][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:633][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:633][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:633][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:635][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:635][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:636][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:636][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:636][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:636][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:636][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:636][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:636][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:637][461]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:637][461]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:637][461]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:645][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:647][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:647][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:647][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:648][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:649][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:649][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:649][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:649][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:649][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:649][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:649][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:650][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:650][462]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:650][462]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:650][462]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:650][462]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:659][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:659][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:660][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:660][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:662][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:662][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:663][463]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:663][463]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:663][463]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:671][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:672][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:672][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:672][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:672][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:673][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:673][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:673][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:673][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:673][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:673][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:673][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:674][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:674][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:674][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:674][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:674][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:674][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:674][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:675][464]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:675][464]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:675][464]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:684][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:684][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:684][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:684][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:684][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:686][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:686][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:686][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:686][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:686][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:686][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:686][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:687][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:687][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:687][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:687][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:687][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:687][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:687][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:688][465]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:688][465]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:688][465]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:698][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:698][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:698][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:698][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:699][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:699][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:699][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:699][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:699][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:699][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:699][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:700][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:700][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:702][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:702][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:702][466]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:702][466]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:702][466]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:702][466]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:709][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:709][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:710][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:710][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:710][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:710][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:710][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:710][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:710][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:712][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:712][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:713][467]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:713][467]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:714][467]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:721][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:722][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:722][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:722][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:722][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:722][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:723][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:723][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:723][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:723][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:723][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:723][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:724][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:724][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:726][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:726][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:726][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:726][468]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:726][468]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:726][468]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:726][468]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:735][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:735][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:735][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:736][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:736][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:736][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:736][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:736][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:736][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:736][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:737][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:738][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:738][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:738][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:738][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:738][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:738][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:739][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:739][469]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:739][469]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:739][469]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:739][469]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:747][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:747][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:747][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:747][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:747][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:748][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:748][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:749][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:749][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:749][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:750][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:750][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:752][470]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:752][470]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:752][470]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:752][470]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:760][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:760][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:760][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:761][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:761][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:761][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:761][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:761][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:761][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:761][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:762][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:762][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:763][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:764][471]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:764][471]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:764][471]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:764][471]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:773][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:773][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:774][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:774][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:774][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:774][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:774][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:774][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:775][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:775][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:775][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:775][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:775][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:776][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:776][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:776][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:776][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:776][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:776][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:776][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:777][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:777][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:777][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:777][472]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:777][472]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:777][472]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:777][472]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:787][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:788][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:788][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:788][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:788][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:788][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:789][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:789][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:789][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:789][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:789][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:789][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:789][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:790][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:790][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:790][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:790][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:790][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:790][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:791][473]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:791][473]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:791][473]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:800][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:801][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:801][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:803][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:803][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:803][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:803][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:803][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:804][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:804][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:804][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:804][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:804][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:804][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:804][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:805][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:805][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:805][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:805][474]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:805][474]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:805][474]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:805][474]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:814][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:814][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:814][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:814][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:815][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:815][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:815][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:815][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:815][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:815][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:815][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:817][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:817][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:818][475]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:818][475]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:819][475]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:827][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:827][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:827][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:827][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:828][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:828][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:828][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:828][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:828][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:828][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:828][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:830][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:830][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:831][476]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:831][476]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:831][476]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:841][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:843][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:843][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:843][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:843][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:844][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:844][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:845][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:845][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:847][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:847][477]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:847][477]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:847][477]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:847][477]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:855][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:855][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:855][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:855][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:857][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:857][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:857][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:857][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:857][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:857][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:857][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:858][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:858][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:859][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:859][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:860][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:860][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:860][478]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:860][478]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:860][478]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:860][478]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:884][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:884][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:884][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:884][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:884][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:885][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:885][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:887][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:887][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:887][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:887][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:887][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:887][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:887][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:888][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:888][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:888][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:888][479]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:888][479]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:888][479]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:888][479]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:900][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:900][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:900][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:900][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:901][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:901][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:901][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:901][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:901][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:901][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:902][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:902][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:903][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:904][480]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:904][480]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:904][480]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:904][480]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:911][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:912][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:912][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:912][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:912][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:913][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:913][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:913][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:913][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:913][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:913][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:913][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:914][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:914][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:914][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:914][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:914][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:914][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:916][481]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:917][481]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:917][481]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:917][481]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:924][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:924][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:924][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:924][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:924][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:926][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:926][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:926][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:926][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:926][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:927][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:928][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:928][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:928][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:928][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:928][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:928][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:929][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:929][482]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:929][482]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:929][482]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:929][482]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:938][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:938][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:938][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:938][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:939][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:939][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:939][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:939][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:939][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:939][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:939][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:940][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:940][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:940][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:940][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:940][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:940][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:941][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:942][483]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:942][483]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:942][483]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:942][483]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:949][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:950][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:950][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:950][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:950][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:951][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:951][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:951][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:951][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:951][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:951][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:952][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:952][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:953][484]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:953][484]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:953][484]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:961][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:961][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:963][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:963][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:963][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:963][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:963][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:963][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:963][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:964][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:964][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:964][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:964][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:964][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:965][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:965][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:965][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:965][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:965][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:965][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:966][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:966][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:966][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:966][485]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:966][485]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:966][485]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:966][485]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:973][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:973][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:974][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:974][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:974][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:974][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:974][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:975][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:975][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:977][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:977][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:977][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:977][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:977][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:977][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:978][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:978][486]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:978][486]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:978][486]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:978][486]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:986][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:986][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:986][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:987][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:987][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:987][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:987][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:987][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.10:987][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:987][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:988][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:988][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.10:988][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:989][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:989][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:989][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:989][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:989][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:990][487]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:990][487]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.10:990][487]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.10:990][487]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:998][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:998][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:999][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:999][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:999][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:999][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.10:999][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:000][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:000][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:000][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:000][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:000][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:000][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:002][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:002][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:002][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:002][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:002][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:002][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:003][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:003][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:003][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:003][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:003][488]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:004][488]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:004][488]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:004][488]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:010][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:010][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:012][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:012][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:012][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:012][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:013][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:013][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:013][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:013][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:013][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:013][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:014][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:014][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:014][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:014][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:014][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:014][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:015][489]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:016][489]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:016][489]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:016][489]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:025][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:025][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:026][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:026][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:026][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:026][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:026][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:026][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:027][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:027][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:027][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:027][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:027][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:028][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:028][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:028][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:028][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:028][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:028][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:028][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:029][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:029][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:029][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:029][490]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:029][490]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:029][490]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:029][490]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:038][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:039][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:039][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:039][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:039][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:039][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:040][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:040][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:040][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:040][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:040][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:040][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:040][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:041][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:041][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:041][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:041][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:041][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:041][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:042][491]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:042][491]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:044][491]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:053][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:053][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:053][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:054][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:054][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:054][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:054][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:054][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:054][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:055][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:055][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:055][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:055][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:055][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:056][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:056][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:056][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:056][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:056][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:056][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:056][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:057][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:057][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:057][492]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:057][492]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:057][492]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:057][492]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:065][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:067][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:067][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:067][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:068][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:068][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:068][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:068][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:068][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:068][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:069][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:069][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:069][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:069][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:069][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:070][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:070][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:070][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:070][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:070][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:070][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:071][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:071][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:071][493]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:071][493]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:071][493]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:071][493]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:080][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:080][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:082][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:082][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:082][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:082][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:082][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:082][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:083][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:083][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:083][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:083][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:084][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:084][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:084][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:084][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:084][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:084][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:084][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:085][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:085][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:085][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:085][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:085][494]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:086][494]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:086][494]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:086][494]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:094][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:095][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:095][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:095][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:095][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:096][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:096][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:096][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:096][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:097][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:097][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:097][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:097][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:098][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:098][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:099][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:099][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:099][495]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:099][495]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:099][495]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:099][495]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:107][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:108][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:108][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:108][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:109][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:109][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:109][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:109][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:109][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:109][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:110][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:110][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:110][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:110][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:111][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:111][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:111][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:111][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:111][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:111][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:111][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:113][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:113][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:113][496]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:113][496]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:113][496]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:113][496]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:121][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:121][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:121][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:121][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:123][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:123][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:123][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:123][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:123][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:123][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:124][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:125][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:125][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:125][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:125][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:125][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:125][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:126][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:126][497]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:126][497]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:126][497]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:126][497]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:134][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:134][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:134][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:134][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:136][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:136][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:136][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:136][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:136][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:137][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:137][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:137][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:137][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:137][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:138][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:138][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:138][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:138][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:138][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:138][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:139][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:139][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:139][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:139][498]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:139][498]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:139][498]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:140][498]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:147][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:147][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:147][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:148][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:148][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:148][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:148][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:148][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:148][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:149][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:149][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:149][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:149][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:150][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:150][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:150][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:150][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:150][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:150][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:151][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:151][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:151][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:151][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:151][499]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:152][499]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:152][499]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:152][499]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:160][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:160][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:160][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:161][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:161][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:161][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:161][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:161][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:161][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:162][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:162][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:162][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:162][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:163][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:163][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:163][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:163][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:163][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:163][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:164][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:164][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:164][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:164][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:164][500]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:165][500]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:165][500]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:165][500]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:172][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:172][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:172][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:174][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:174][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:174][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:174][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:174][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:174][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:175][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:177][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:177][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:177][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:177][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:177][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:177][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:178][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:178][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:178][501]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:178][501]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:178][501]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:178][501]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:185][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:185][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:187][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:187][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:187][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:187][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:187][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:188][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:188][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:188][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:189][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:189][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:189][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:189][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:189][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:190][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:190][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:190][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:190][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:190][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:190][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:191][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:191][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:191][502]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:191][502]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:191][502]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:191][502]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:200][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:200][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:200][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:201][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:201][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:201][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:201][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:201][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:201][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:202][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:202][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:202][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:202][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:202][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:203][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:203][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:203][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:203][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:203][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:203][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:204][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:204][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:204][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:204][503]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:204][503]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:204][503]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:204][503]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:212][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:213][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:213][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:213][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:213][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:214][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:214][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:214][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:214][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:214][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:214][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:215][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:215][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:217][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:217][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:217][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:217][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:217][504]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:218][504]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:218][504]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:218][504]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:225][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:225][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:225][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:225][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:227][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:227][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:227][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:227][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:227][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:227][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:228][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:228][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:228][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:228][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:229][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:229][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:229][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:229][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:229][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:229][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:229][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:230][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:230][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:230][505]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:230][505]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:230][505]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:230][505]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:238][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:238][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:239][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:239][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:239][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:239][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:239][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:239][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:240][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:240][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:240][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:240][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:241][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:241][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:241][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:241][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:241][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:241][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:242][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:242][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:242][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:242][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:242][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:243][506]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:243][506]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:243][506]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:243][506]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:250][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:252][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:252][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:252][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:253][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:253][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:253][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:253][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:253][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:253][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:254][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:254][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:254][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:254][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:254][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:255][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:255][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:255][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:255][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:255][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:255][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:256][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:256][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:256][507]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:256][507]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:256][507]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:256][507]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:265][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:265][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:265][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:265][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:266][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:266][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:266][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:266][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:266][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:267][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:267][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:267][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:267][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:267][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:268][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:268][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:268][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:268][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:268][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:268][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:269][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:269][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:269][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:269][508]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:269][508]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:269][508]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:270][508]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:277][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:278][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:278][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:278][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:278][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:279][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:279][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:279][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:279][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:279][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:279][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:280][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:280][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:280][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:280][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:280][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:280][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:280][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:281][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:281][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:281][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:281][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:282][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:282][509]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:282][509]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:282][509]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:282][509]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:290][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:290][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:291][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:291][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:291][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:291][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:291][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:291][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:291][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:292][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:292][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:292][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:292][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:292][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:293][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:293][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:293][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:293][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:293][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:293][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:293][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:295][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:295][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:295][510]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:295][510]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:295][510]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:295][510]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:302][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:303][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:303][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:303][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:303][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:303][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:305][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:305][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:305][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:305][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:305][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:305][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:306][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:306][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:306][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:306][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:306][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:306][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:306][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:307][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:307][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:307][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:307][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:307][511]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:308][511]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:308][511]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:308][511]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:315][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:316][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:316][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:317][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:317][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:317][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:317][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:317][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:317][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:317][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:318][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:318][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:318][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:318][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:319][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:319][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:319][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:319][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:319][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:319][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:319][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:320][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:320][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:320][512]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:320][512]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:320][512]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:320][512]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:328][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:328][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:328][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:329][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:329][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:329][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:329][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:329][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:329][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:330][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:330][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:330][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:330][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:331][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:331][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:331][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:331][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:331][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:331][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:331][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:332][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:332][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:332][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:332][513]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:332][513]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:334][513]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:334][513]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:340][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:341][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:341][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:341][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:341][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:342][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:342][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:342][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:342][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:342][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:343][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:343][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:343][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:343][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:344][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:344][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:344][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:344][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:344][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:344][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:345][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:345][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:345][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:345][514]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:345][514]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:345][514]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:345][514]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:354][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:355][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:355][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:355][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:355][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:356][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:356][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:356][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:356][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:356][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:356][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:357][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:357][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:358][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:358][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:358][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:358][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:358][515]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:360][515]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:360][515]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:360][515]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:367][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:367][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:367][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:368][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:368][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:368][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:368][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:368][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:368][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:369][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:369][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:369][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:369][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:370][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:370][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:370][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:370][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:370][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:370][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:370][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:372][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:372][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:372][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:372][516]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:372][516]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:372][516]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:372][516]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:381][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:381][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:382][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:382][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:382][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:382][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:383][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:383][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:383][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:383][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:383][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:383][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:384][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:384][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:384][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:384][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:384][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:384][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:385][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:385][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:385][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:385][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:386][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:386][517]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:386][517]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:386][517]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:386][517]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:395][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:395][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:395][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:395][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:396][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:396][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:396][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:396][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:396][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:397][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:398][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:398][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:398][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:398][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:398][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:398][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:399][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:399][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:399][518]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:399][518]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:399][518]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:399][518]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:407][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:407][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:408][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:408][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:408][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:408][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:409][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:409][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:409][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:409][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:409][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:409][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:410][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:410][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:410][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:410][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:410][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:410][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:410][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:411][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:411][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:411][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:411][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:411][519]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:412][519]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:412][519]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:412][519]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:419][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:419][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:421][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:421][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:421][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:421][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:421][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:422][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:422][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:422][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:422][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:422][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:423][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:423][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:423][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:423][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:423][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:423][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:424][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:424][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:424][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:424][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:424][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:425][520]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:425][520]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:425][520]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:425][520]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:432][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:433][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:433][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:433][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:433][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:434][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:434][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:434][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:434][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:434][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:434][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:436][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:436][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:436][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:436][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:437][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:437][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:437][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:437][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:437][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:437][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:438][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:438][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:438][521]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:438][521]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:438][521]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:438][521]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:447][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:447][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:447][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:448][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:448][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:449][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:449][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:449][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:449][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:450][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:450][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:450][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:450][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:450][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:450][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:452][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:452][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:452][522]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:452][522]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:452][522]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:452][522]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:459][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:460][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:460][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:460][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:460][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:461][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:461][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:461][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:461][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:461][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:461][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:462][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:462][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:462][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:462][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:462][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:462][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:462][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:464][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:464][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:464][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:464][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:465][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:465][523]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:465][523]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:465][523]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:465][523]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:473][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:473][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:473][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:474][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:474][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:474][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:474][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:474][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:475][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:475][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:475][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:475][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:475][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:476][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:476][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:477][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:477][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:477][524]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:477][524]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:477][524]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:477][524]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:485][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:486][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:486][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:486][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:487][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:487][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:487][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:487][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:487][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:487][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:487][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:488][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:488][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:488][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:488][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:488][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:488][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:488][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:489][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:489][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:489][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:489][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:489][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:491][525]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:491][525]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:491][525]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:491][525]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:498][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:499][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:499][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:499][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:499][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:501][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:501][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:501][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:501][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:501][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:502][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:502][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:502][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:502][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:503][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:503][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:503][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:503][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:503][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:503][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:504][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:504][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:504][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:504][526]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:504][526]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:504][526]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:505][526]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:512][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:512][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:513][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:513][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:513][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:513][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:514][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:514][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:514][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:514][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:514][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:514][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:515][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:515][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:516][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:516][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:516][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:516][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:516][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:516][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:516][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:517][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:517][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:517][527]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:517][527]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:518][527]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:518][527]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:526][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:526][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:526][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:527][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:527][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:527][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:527][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:527][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:527][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:528][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:528][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:528][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:528][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:528][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:529][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:529][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:529][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:529][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:529][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:529][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:529][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:530][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:530][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:530][528]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:530][528]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:530][528]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:530][528]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:538][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:538][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:539][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:539][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:539][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:539][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:539][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:539][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:539][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:541][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:541][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:541][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:541][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:542][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:542][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:542][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:542][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:542][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:542][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:542][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:543][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:543][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:543][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:543][529]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:543][529]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:543][529]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:543][529]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:551][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:552][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:552][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:552][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:552][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:554][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:554][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:554][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:554][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:554][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:554][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:555][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:555][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:555][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:555][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:555][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:555][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:555][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:556][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:556][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:556][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:556][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:557][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:557][530]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:557][530]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:557][530]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:557][530]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:566][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:566][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:566][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:567][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:567][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:567][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:567][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:567][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:567][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:568][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:569][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:569][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:569][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:569][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:569][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:569][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:571][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:571][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:571][531]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:571][531]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:571][531]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:571][531]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:579][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:579][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:579][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:579][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:579][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:580][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:580][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:580][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:580][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:580][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:580][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:582][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:582][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:582][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:582][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:582][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:582][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:583][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:583][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:583][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:583][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:584][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:584][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:584][532]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:584][532]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:584][532]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:584][532]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:593][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:593][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:593][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:593][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:594][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:594][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:594][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:594][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:594][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:594][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:595][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:595][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:595][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:597][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:597][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:597][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:597][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:597][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:598][533]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:598][533]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:598][533]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:598][533]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:606][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:606][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:606][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:607][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:607][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:607][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:607][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:607][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:607][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:608][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:608][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:608][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:608][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:609][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:609][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:609][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:609][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:609][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:609][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:611][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:611][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:611][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:611][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:612][534]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:612][534]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:612][534]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:612][534]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:618][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:619][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:619][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:619][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:621][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:621][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:621][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:621][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:621][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:622][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:623][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:623][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:623][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:623][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:623][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:623][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:624][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:624][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:625][535]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:625][535]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:625][535]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:625][535]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:632][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:632][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:633][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:633][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:633][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:634][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:634][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:634][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:634][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:634][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:634][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:635][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:635][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:635][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:635][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:635][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:635][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:635][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:637][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:637][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:637][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:637][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:637][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:638][536]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:638][536]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:638][536]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:638][536]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:646][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:646][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:646][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:646][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:647][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:647][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:647][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:647][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:647][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:647][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:648][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:648][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:648][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:648][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:648][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:649][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:649][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:649][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:649][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:649][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:649][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:650][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:650][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:650][537]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:650][537]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:650][537]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:650][537]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:659][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:659][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:659][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:660][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:660][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:660][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:660][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:660][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:660][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:661][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:661][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:661][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:661][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:662][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:662][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:662][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:662][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:662][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:662][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:663][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:663][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:663][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:663][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:663][538]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:664][538]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:664][538]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:664][538]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:672][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:673][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:673][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:673][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:674][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:674][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:674][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:674][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:674][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:674][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:675][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:675][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:675][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:675][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:675][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:676][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:676][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:676][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:676][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:676][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:676][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:677][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:677][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:677][539]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:677][539]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:677][539]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:677][539]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:684][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:686][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:686][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:687][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:687][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:687][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:687][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:687][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:687][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:688][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:688][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:688][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:688][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:689][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:689][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:689][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:689][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:689][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:689][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:690][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:690][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:690][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:690][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:690][540]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:691][540]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:691][540]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:691][540]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:699][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:699][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:699][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:699][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:699][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:701][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:701][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:703][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:703][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:703][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:703][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:703][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:704][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:704][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:704][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:704][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:704][541]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:705][541]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:705][541]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:705][541]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:712][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:712][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:714][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:714][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:714][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:714][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:715][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:715][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:715][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:715][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:715][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:715][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:716][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:716][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:716][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:717][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:717][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:717][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:717][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:717][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:717][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:718][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:718][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:718][542]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:718][542]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:718][542]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:719][542]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:727][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:727][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:727][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:728][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:728][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:728][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:728][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:728][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:728][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:729][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:729][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:729][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:729][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:729][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:730][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:730][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:730][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:730][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:730][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:730][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:731][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:731][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:732][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:732][543]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:732][543]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:732][543]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:732][543]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:739][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:740][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:740][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:740][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:740][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:742][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:742][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:742][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:742][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:742][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:742][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:743][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:743][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:743][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:743][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:743][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:743][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:744][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:744][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:744][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:744][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:744][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:745][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:745][544]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:745][544]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:745][544]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:745][544]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:752][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:753][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:753][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:753][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:753][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:755][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:755][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:755][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:755][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:755][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:755][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:756][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:756][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:756][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:756][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:757][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:757][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:757][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:757][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:757][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:757][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:758][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:758][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:758][545]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:758][545]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:758][545]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:758][545]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:765][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:767][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:767][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:767][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:767][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:768][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:768][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:768][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:768][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:768][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:769][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:769][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:769][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:769][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:769][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:770][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:770][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:770][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:770][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:770][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:770][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:771][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:771][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:771][546]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:771][546]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:771][546]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:771][546]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:780][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:780][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:780][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:781][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:781][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:781][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:781][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:781][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:781][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:782][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:782][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:782][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:782][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:783][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:783][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:783][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:783][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:783][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:783][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:783][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:784][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:784][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:784][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:784][547]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:784][547]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:785][547]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:785][547]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:792][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:793][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:793][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:793][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:793][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:793][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:795][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:795][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:795][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:795][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:795][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:795][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:796][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:796][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:796][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:796][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:796][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:797][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:797][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:797][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:797][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:797][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:798][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:798][548]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:798][548]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:798][548]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:798][548]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:805][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:806][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:806][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:807][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:807][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:807][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:807][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:807][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:807][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:808][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:808][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:808][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:808][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:809][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:809][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:809][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:809][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:809][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:810][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:810][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:810][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:810][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:811][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:811][549]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:811][549]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:811][549]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:811][549]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:819][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:820][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:820][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:820][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:820][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:821][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:821][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:821][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:821][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:821][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:821][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:822][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:822][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:822][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:822][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:822][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:822][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:824][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:824][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:824][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:824][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:824][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:825][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:825][550]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:825][550]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:825][550]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:825][550]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:833][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:834][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:834][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:834][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:834][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:835][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:835][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:835][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:835][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:835][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:835][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:835][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:837][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:837][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:837][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:837][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:837][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:837][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:838][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:838][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:838][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:838][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:839][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:839][551]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:839][551]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:839][551]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:839][551]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:847][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:847][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:848][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:848][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:848][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:848][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:848][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:848][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:849][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:849][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:849][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:849][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:850][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:850][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:850][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:850][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:850][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:850][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:851][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:851][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:851][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:851][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:852][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:852][552]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:852][552]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:852][552]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:852][552]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:860][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:860][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:860][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:860][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:860][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:862][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:862][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:862][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:862][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:862][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:862][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:863][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:863][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:863][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:863][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:863][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:863][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:864][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:864][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:864][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:864][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:865][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:865][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:865][553]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:865][553]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:865][553]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:865][553]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:873][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:874][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:874][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:874][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:874][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:874][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:875][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:875][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:875][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:875][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:875][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:875][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:875][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:877][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:877][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:877][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:877][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:877][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:877][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:877][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:878][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:878][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:878][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:878][554]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:878][554]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:878][554]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:878][554]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:887][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:887][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:887][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:887][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:887][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:889][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:889][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:889][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:889][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:889][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:889][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:890][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:890][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:890][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:890][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:891][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:891][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:891][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:891][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:891][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:891][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:892][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:892][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:892][555]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:892][555]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:892][555]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:892][555]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:899][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:900][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:900][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:900][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:900][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:902][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:902][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:902][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:902][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:902][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:903][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:903][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:903][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:903][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:903][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:904][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:904][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:904][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:904][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:904][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:904][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:905][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:905][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:905][556]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:905][556]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:905][556]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:905][556]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:913][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:914][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:914][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:914][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:914][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:915][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:915][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:915][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:915][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:915][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:916][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:916][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:916][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:917][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:917][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:917][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:917][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:917][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:917][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:918][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:918][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:918][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:918][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:919][557]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:919][557]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:919][557]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:919][557]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:927][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:927][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:927][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:928][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:928][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:928][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:928][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:928][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:928][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:929][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:929][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:929][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:929][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:930][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:930][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:930][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:930][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:930][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:930][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:931][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:931][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:931][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:931][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:932][558]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:932][558]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:932][558]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:932][558]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:941][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:941][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:941][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:941][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:942][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:942][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:942][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:942][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:942][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:943][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:943][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:943][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:943][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:943][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:944][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:944][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:944][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:944][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:944][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:944][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:945][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:945][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:945][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:945][559]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:945][559]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:945][559]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:945][559]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:954][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:954][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:955][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:955][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:955][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:956][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:956][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:956][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:956][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:956][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:956][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:957][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:957][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:957][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:957][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:958][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:958][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:958][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:958][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:958][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:958][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:959][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:959][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:959][560]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:959][560]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:959][560]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:959][560]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:967][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:967][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:968][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:968][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:968][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:968][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:969][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:969][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:969][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:969][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:969][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:970][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:970][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:970][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:970][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:970][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:970][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:971][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:971][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:971][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:971][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:972][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:972][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:972][561]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:972][561]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:972][561]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:972][561]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:979][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:981][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:981][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:981][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:982][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:982][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:982][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:982][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:982][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:982][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:982][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:983][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:983][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:983][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:983][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:984][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:984][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:984][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:984][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:984][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:985][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:985][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:985][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:985][562]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:985][562]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:985][562]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.11:985][562]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:994][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:994][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:995][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:995][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:995][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:995][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:995][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:995][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.11:995][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:997][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:997][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:997][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:997][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:998][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:998][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:998][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.11:998][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.11:998][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:998][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:999][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:999][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:999][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:999][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.11:999][563]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:000][563]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:000][563]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:000][563]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:007][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:008][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:008][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:009][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:009][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:009][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:009][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:009][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:009][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:010][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:010][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:010][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:010][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:011][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:011][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:011][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:011][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:011][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:011][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:012][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:012][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:012][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:012][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:013][564]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:013][564]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:013][564]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:013][564]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:021][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:021][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:021][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:022][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:022][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:022][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:022][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:022][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:022][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:023][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:023][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:023][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:023][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:023][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:025][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:025][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:025][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:025][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:025][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:025][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:026][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:026][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:026][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:026][565]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:027][565]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:027][565]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:027][565]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:034][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:035][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:035][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:035][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:035][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:035][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:036][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:036][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:036][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:037][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:038][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:038][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:038][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:038][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:038][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:038][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:039][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:039][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:039][566]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:039][566]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:039][566]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:039][566]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:047][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:048][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:048][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:048][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:049][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:049][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:049][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:049][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:049][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:049][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:049][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:050][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:050][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:050][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:050][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:052][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:052][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:052][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:052][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:052][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:052][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:053][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:053][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:053][567]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:053][567]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:053][567]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:053][567]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:061][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:062][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:062][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:062][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:063][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:063][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:063][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:063][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:063][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:064][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:064][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:064][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:064][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:065][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:065][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:065][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:065][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:065][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:065][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:066][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:066][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:067][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:067][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:067][568]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:067][568]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:067][568]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:068][568]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:088][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:088][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:088][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:089][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:089][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:089][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:089][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:089][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:090][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:090][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:090][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:090][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:091][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:091][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:091][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:091][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:091][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:091][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:092][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:092][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:092][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:092][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:093][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:093][569]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:093][569]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:093][569]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:093][569]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:100][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:101][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:101][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:101][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:101][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:103][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:103][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:103][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:103][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:103][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:104][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:104][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:104][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:104][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:104][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:105][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:105][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:105][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:105][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:105][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:105][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:106][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:106][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:106][570]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:107][570]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:107][570]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:107][570]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:114][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:114][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:115][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:115][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:115][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:116][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:116][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:116][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:116][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:116][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:117][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:117][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:117][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:117][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:117][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:118][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:118][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:118][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:118][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:118][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:118][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:119][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:119][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:119][571]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:119][571]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:119][571]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:119][571]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:128][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:129][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:129][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:129][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:129][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:129][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:130][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:130][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:130][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:130][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:130][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:131][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:131][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:131][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:131][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:131][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:132][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:132][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:132][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:132][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:132][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:133][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:133][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:133][572]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:133][572]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:133][572]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:133][572]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:141][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:141][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:141][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:143][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:143][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:143][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:143][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:143][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:143][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:144][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:144][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:144][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:144][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:145][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:145][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:145][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:145][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:145][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:145][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:146][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:146][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:146][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:146][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:147][573]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:147][573]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:147][573]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:147][573]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:154][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:154][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:155][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:155][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:155][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:155][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:155][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:155][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:155][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:157][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:157][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:157][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:157][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:157][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:158][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:158][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:158][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:158][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:158][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:158][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:159][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:159][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:159][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:159][574]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:159][574]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:160][574]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:160][574]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:167][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:168][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:168][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:168][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:168][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:168][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:169][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:169][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:169][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:169][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:169][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:169][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:171][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:171][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:171][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:171][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:171][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:171][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:172][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:172][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:172][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:172][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:172][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:173][575]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:173][575]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:173][575]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:173][575]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:180][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:181][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:181][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:181][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:181][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:181][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:183][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:183][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:183][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:183][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:183][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:183][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:184][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:184][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:184][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:185][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:185][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:185][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:185][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:185][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:186][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:186][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:186][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:186][576]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:186][576]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:186][576]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:187][576]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:194][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:194][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:195][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:195][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:195][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:195][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:196][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:196][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:196][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:196][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:196][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:197][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:197][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:197][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:197][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:197][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:197][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:197][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:198][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:198][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:198][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:198][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:199][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:199][577]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:199][577]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:199][577]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:199][577]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:207][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:208][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:208][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:208][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:208][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:209][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:209][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:209][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:209][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:209][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:209][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:210][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:210][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:210][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:210][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:210][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:210][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:211][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:211][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:211][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:211][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:212][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:212][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:212][578]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:212][578]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:212][578]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:212][578]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:221][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:221][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:221][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:222][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:222][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:222][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:222][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:222][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:223][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:223][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:223][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:223][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:224][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:224][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:224][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:224][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:224][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:224][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:225][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:225][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:225][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:225][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:226][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:226][579]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:226][579]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:226][579]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:226][579]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:234][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:235][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:235][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:235][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:236][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:236][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:236][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:236][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:236][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:237][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:237][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:237][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:237][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:237][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:238][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:238][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:238][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:238][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:238][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:238][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:239][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:239][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:239][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:239][580]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:239][580]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:239][580]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:241][580]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:248][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:249][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:249][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:249][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:249][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:250][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:250][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:250][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:250][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:250][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:251][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:251][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:251][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:251][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:252][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:252][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:252][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:252][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:252][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:252][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:253][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:253][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:253][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:253][581]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:254][581]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:254][581]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:254][581]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:261][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:262][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:262][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:263][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:263][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:263][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:263][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:263][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:264][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:264][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:264][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:264][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:265][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:265][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:265][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:265][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:265][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:265][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:266][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:266][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:266][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:266][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:267][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:267][582]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:267][582]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:267][582]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:267][582]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:275][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:276][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:276][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:276][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:277][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:277][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:277][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:277][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:277][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:277][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:277][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:278][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:278][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:278][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:278][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:279][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:279][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:279][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:279][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:279][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:279][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:280][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:280][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:280][583]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:280][583]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:280][583]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:280][583]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:288][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:289][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:289][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:289][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:289][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:290][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:290][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:290][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:290][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:290][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:290][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:291][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:291][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:291][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:292][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:292][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:292][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:292][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:292][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:292][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:293][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:293][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:293][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:293][584]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:293][584]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:295][584]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:295][584]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:302][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:303][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:303][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:303][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:303][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:304][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:304][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:304][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:304][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:304][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:305][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:305][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:305][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:305][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:305][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:306][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:306][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:306][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:306][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:306][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:307][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:307][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:307][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:307][585]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:307][585]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:307][585]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:307][585]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:315][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:316][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:316][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:316][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:317][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:317][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:317][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:317][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:317][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:317][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:318][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:318][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:318][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:318][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:319][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:319][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:319][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:319][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:319][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:319][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:320][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:320][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:320][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:320][586]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:321][586]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:321][586]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:321][586]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:328][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:329][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:329][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:329][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:329][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:330][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:330][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:330][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:330][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:330][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:330][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:332][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:332][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:332][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:332][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:332][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:332][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:333][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:333][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:333][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:333][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:334][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:334][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:334][587]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:334][587]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:334][587]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:334][587]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:341][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:342][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:342][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:342][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:342][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:344][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:344][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:344][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:344][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:344][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:344][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:345][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:345][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:345][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:345][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:345][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:345][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:346][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:346][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:346][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:346][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:347][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:347][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:347][588]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:347][588]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:347][588]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:347][588]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:356][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:356][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:357][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:357][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:357][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:357][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:358][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:358][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:358][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:358][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:358][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:359][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:359][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:359][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:359][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:359][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:360][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:360][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:360][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:360][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:360][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:361][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:361][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:361][589]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:361][589]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:361][589]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:361][589]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:370][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:370][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:371][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:371][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:371][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:372][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:372][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:372][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:372][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:372][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:372][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:373][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:373][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:373][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:373][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:374][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:374][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:374][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:374][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:374][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:375][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:375][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:375][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:375][590]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:375][590]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:375][590]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:375][590]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:383][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:384][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:384][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:384][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:384][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:384][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:385][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:385][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:385][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:385][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:385][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:385][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:387][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:387][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:387][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:387][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:387][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:387][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:388][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:388][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:388][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:388][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:389][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:389][591]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:389][591]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:389][591]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:389][591]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:397][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:397][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:397][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:397][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:398][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:398][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:398][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:398][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:398][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:399][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:399][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:399][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:399][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:400][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:400][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:400][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:400][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:400][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:400][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:402][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:402][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:402][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:402][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:403][592]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:403][592]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:403][592]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:403][592]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:410][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:411][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:411][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:411][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:412][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:412][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:412][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:412][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:412][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:413][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:413][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:413][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:413][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:414][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:414][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:414][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:414][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:414][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:414][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:416][593]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:416][593]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:417][593]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:424][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:424][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:425][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:425][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:425][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:425][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:425][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:425][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:425][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:427][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:427][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:427][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:427][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:428][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:428][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:428][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:428][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:428][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:428][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:429][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:429][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:429][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:429][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:430][594]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:430][594]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:430][594]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:430][594]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:438][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:438][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:439][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:439][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:439][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:439][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:439][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:439][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:440][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:440][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:440][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:440][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:440][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:441][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:441][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:441][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:441][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:441][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:441][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:442][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:442][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:442][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:442][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:443][595]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:443][595]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:443][595]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:443][595]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:451][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:451][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:451][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:453][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:453][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:453][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:453][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:453][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:454][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:454][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:454][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:454][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:455][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:455][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:455][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:455][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:455][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:455][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:456][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:456][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:456][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:456][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:457][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:457][596]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:457][596]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:457][596]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:457][596]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:466][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:466][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:466][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:467][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:467][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:467][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:468][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:468][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:468][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:468][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:468][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:469][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:469][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:469][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:469][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:470][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:470][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:470][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:470][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:470][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:471][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:471][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:471][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:471][597]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:471][597]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:471][597]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:472][597]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:480][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:480][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:481][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:481][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:481][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:481][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:483][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:483][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:483][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:483][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:483][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:483][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:484][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:484][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:484][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:484][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:484][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:484][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:485][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:485][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:485][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:485][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:486][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:486][598]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:486][598]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:486][598]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:486][598]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:494][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:495][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:495][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:495][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:496][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:496][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:496][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:496][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:496][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:497][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:497][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:497][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:497][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:497][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:498][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:498][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:498][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:498][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:498][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:498][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:499][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:499][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:499][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:499][599]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:500][599]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:500][599]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:500][599]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:507][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:508][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:508][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:508][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:509][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:509][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:509][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:509][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:509][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:510][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:510][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:510][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:511][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:511][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:511][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:511][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:511][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:511][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:512][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:512][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:512][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:512][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:514][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:514][600]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:514][600]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:514][600]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:514][600]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:521][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:522][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:522][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:522][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:524][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:524][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:524][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:524][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:524][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:525][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:525][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:525][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:525][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:526][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:526][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:526][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:526][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:526][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:526][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:526][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:527][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:527][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:527][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:527][601]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:527][601]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:528][601]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:528][601]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:536][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:536][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:536][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:537][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:537][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:537][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:537][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:537][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:537][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:538][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:540][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:540][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:540][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:540][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:540][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:541][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:541][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:541][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:541][602]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:542][602]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:542][602]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:542][602]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:549][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:549][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:550][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:550][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:550][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:550][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:551][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:551][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:551][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:551][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:551][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:553][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:553][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:553][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:553][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:554][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:554][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:554][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:554][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:554][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:555][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:555][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:555][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:555][603]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:556][603]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:556][603]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:556][603]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:563][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:564][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:564][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:564][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:564][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:565][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:565][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:565][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:565][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:565][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:566][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:566][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:566][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:566][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:566][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:567][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:567][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:567][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:567][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:567][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:568][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:568][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:568][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:568][604]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:569][604]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:569][604]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:569][604]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:577][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:577][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:578][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:578][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:578][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:579][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:579][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:579][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:579][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:579][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:579][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:580][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:580][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:580][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:580][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:580][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:581][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:581][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:581][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:581][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:581][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:582][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:582][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:582][605]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:582][605]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:582][605]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:582][605]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:592][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:592][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:592][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:593][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:593][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:593][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:593][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:593][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:594][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:594][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:594][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:594][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:595][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:595][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:595][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:595][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:595][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:595][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:596][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:596][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:596][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:596][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:597][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:597][606]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:597][606]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:597][606]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:597][606]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:606][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:606][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:606][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:606][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:607][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:607][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:607][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:607][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:607][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:608][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:608][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:608][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:608][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:609][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:609][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:609][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:609][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:609][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:610][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:610][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:610][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:610][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:610][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:611][607]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:611][607]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:611][607]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:611][607]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:619][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:619][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:620][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:620][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:620][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:621][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:621][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:621][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:621][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:621][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:621][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:621][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:623][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:623][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:623][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:623][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:623][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:623][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:624][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:624][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:624][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:624][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:625][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:625][608]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:625][608]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:625][608]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:625][608]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:633][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:633][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:634][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:634][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:634][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:635][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:635][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:635][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:635][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:635][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:636][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:636][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:636][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:636][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:637][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:637][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:637][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:637][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:637][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:637][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:638][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:638][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:638][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:638][609]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:639][609]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:639][609]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:639][609]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:647][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:648][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:648][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:648][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:649][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:649][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:649][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:649][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:649][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:649][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:651][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:651][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:651][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:651][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:651][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:652][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:652][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:652][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:652][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:652][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:653][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:653][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:653][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:653][610]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:654][610]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:654][610]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:654][610]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:661][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:661][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:661][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:662][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:662][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:662][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:662][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:662][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:662][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:664][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:664][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:664][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:665][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:665][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:665][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:665][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:665][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:665][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:666][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:666][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:666][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:666][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:667][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:667][611]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:667][611]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:667][611]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:667][611]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:674][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:674][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:675][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:675][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:675][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:675][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:677][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:677][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:677][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:677][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:677][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:677][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:678][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:679][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:679][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:679][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:679][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:679][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:679][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:679][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:680][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:680][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:680][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:680][612]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:681][612]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:681][612]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:681][612]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:688][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:689][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:689][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:689][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:689][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:690][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:690][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:690][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:690][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:690][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:692][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:692][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:692][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:692][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:693][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:693][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:693][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:693][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:693][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:693][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:694][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:694][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:694][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:694][613]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:695][613]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:695][613]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:695][613]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:702][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:703][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:703][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:703][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:703][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:704][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:704][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:704][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:704][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:704][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:705][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:705][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:707][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:707][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:707][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:707][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:708][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:708][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:708][614]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:708][614]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:708][614]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:708][614]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:717][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:719][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:719][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:719][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:719][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:719][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:720][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:720][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:720][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:720][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:721][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:721][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:721][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:721][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:721][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:721][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:722][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:722][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:722][615]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:722][615]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:722][615]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:722][615]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:730][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:730][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:731][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:731][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:731][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:731][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:732][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:732][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:732][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:732][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:732][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:734][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:734][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:734][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:734][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:734][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:734][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:735][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:735][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:735][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:735][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:736][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:736][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:736][616]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:737][616]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:737][616]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:737][616]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:744][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:744][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:745][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:745][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:745][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:745][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:745][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:747][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:747][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:747][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:747][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:748][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:748][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:748][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:748][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:749][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:749][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:749][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:749][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:749][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:750][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:750][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:750][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:751][617]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:751][617]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:751][617]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:751][617]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:760][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:760][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:760][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:760][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:760][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:761][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:761][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:761][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:761][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:761][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:761][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:762][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:762][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:762][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:763][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:763][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:763][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:763][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:763][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:764][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:764][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:764][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:764][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:764][618]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:765][618]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:765][618]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:765][618]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:773][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:773][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:774][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:774][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:774][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:775][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:775][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:775][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:775][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:775][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:775][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:776][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:776][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:776][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:776][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:777][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:777][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:777][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:777][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:777][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:777][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:778][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:778][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:778][619]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:779][619]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:779][619]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:779][619]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:787][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:787][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:787][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:788][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:788][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:788][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:788][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:788][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:789][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:789][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:789][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:789][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:790][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:790][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:790][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:790][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:790][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:790][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:791][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:791][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:791][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:792][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:792][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:792][620]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:792][620]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:792][620]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:792][620]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:800][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:801][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:801][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:801][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:802][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:802][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:802][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:802][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:802][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:802][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:804][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:804][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:804][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:804][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:805][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:805][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:805][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:805][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:805][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:806][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:806][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:806][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:806][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:807][621]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:807][621]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:807][621]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:807][621]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:816][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:816][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:816][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:816][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:817][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:817][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:818][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:818][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:818][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:818][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:818][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:819][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:819][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:819][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:820][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:820][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:820][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:820][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:820][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:821][622]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:822][622]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:822][622]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:829][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:829][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:830][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:830][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:830][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:830][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:832][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:832][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:832][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:832][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:832][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:832][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:833][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:833][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:833][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:834][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:834][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:834][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:834][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:834][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:835][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:835][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:835][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:835][623]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:836][623]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:836][623]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:836][623]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:843][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:844][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:844][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:844][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:845][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:845][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:845][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:845][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:845][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:845][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:845][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:847][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:847][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:847][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:847][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:848][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:848][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:848][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:848][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:848][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:849][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:849][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:849][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:849][624]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:850][624]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:850][624]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:850][624]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:858][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:858][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:858][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:859][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:859][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:859][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:859][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:859][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:860][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:860][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:860][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:860][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:861][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:861][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:861][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:861][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:861][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:861][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:862][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:862][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:862][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:862][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:863][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:863][625]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:863][625]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:863][625]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:863][625]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:871][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:872][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:872][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:872][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:873][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:873][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:873][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:873][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:873][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:874][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:874][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:874][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:874][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:874][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:876][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:876][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:877][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:877][626]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:877][626]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:877][626]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:877][626]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:885][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:885][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:885][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:885][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:887][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:887][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:887][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:887][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:887][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:888][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:888][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:888][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:888][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:889][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:889][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:889][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:889][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:889][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:889][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:890][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:890][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:890][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:890][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:891][627]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:891][627]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:891][627]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:891][627]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:899][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:899][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:900][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:900][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:900][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:901][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:901][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:901][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:901][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:901][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:902][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:902][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:902][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:902][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:903][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:903][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:903][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:903][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:903][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:904][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:904][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:904][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:904][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:905][628]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:905][628]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:905][628]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:905][628]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:915][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:915][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:915][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:915][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:915][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:917][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:917][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:917][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:917][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:917][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:918][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:918][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:918][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:918][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:919][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:919][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:919][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:919][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:919][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:920][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:920][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:920][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:920][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:921][629]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:921][629]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:921][629]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:921][629]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:927][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:928][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:928][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:928][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:928][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:929][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:929][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:929][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:929][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:929][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:930][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:930][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:930][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:930][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:931][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:931][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:931][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:931][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:931][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:931][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:933][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:933][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:933][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:933][630]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:933][630]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:933][630]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:933][630]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:939][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:941][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:941][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:941][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:941][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:942][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:942][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:942][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:942][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:942][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:943][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:943][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:943][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:943][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:944][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:944][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:944][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:944][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:944][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:945][631]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:946][631]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:946][631]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:952][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:953][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:953][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:953][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:953][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:954][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:954][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:954][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:954][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:954][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:954][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:955][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:955][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:955][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:955][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:955][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:955][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:955][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:957][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:957][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:957][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:957][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:958][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:958][632]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:958][632]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:958][632]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:958][632]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:965][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:966][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:966][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:966][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:967][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:967][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:967][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:967][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:967][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:967][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:967][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:968][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:968][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:968][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:969][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:969][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:969][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:969][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:969][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:969][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:969][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:971][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:971][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:971][633]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:971][633]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:971][633]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:971][633]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:978][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:978][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:979][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:979][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:979][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:979][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:979][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:979][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:979][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:981][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:981][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:981][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:981][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:982][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:982][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:982][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:982][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:982][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:982][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:983][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:983][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:983][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:983][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:984][634]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:984][634]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:984][634]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:984][634]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:990][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:991][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:991][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:991][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:992][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:992][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:992][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:992][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.12:992][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:992][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:992][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:994][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:994][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:994][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:994][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:994][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:995][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.12:995][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:995][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:995][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:995][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:996][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:996][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:996][635]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.12:996][635]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.12:996][635]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.12:997][635]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:003][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:003][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:004][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:004][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:004][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:004][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:004][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:004][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:005][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:005][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:005][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:005][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:007][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:007][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:007][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:007][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:007][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:007][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:008][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:008][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:008][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:008][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:009][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:009][636]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:009][636]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:009][636]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:009][636]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:015][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:016][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:016][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:016][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:017][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:017][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:017][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:017][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:017][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:017][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:017][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:019][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:019][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:019][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:020][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:020][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:020][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:020][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:020][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:020][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:020][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:021][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:021][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:021][637]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:021][637]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:022][637]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:022][637]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:029][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:029][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:029][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:029][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:030][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:030][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:030][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:030][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:030][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:030][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:031][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:031][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:031][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:031][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:032][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:032][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:032][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:032][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:032][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:032][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:033][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:033][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:033][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:033][638]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:034][638]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:034][638]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:034][638]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:041][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:041][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:042][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:042][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:042][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:042][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:043][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:043][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:043][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:043][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:043][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:044][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:044][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:044][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:044][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:044][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:044][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:044][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:045][639]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:047][639]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:047][639]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:047][639]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:054][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:055][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:055][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:055][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:055][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:056][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:056][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:056][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:056][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:056][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:057][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:058][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:058][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:058][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:058][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:058][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:059][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:059][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:059][640]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:059][640]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:059][640]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:059][640]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:066][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:066][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:067][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:067][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:067][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:068][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:068][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:068][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:068][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:068][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:068][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:068][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:069][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:069][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:069][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:069][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:069][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:069][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:071][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:071][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:071][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:072][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:072][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:072][641]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:072][641]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:072][641]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:072][641]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:079][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:079][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:079][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:079][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:079][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:080][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:080][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:080][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:080][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:080][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:082][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:082][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:082][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:082][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:083][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:083][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:083][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:083][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:083][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:084][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:084][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:084][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:085][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:085][642]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:085][642]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:085][642]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:085][642]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:092][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:092][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:093][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:093][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:093][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:093][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:094][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:094][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:094][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:094][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:094][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:095][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:095][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:097][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:097][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:097][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:098][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:098][643]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:098][643]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:098][643]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:098][643]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:105][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:106][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:106][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:106][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:106][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:107][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:107][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:107][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:107][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:107][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:107][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:108][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:108][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:108][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:108][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:109][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:109][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:109][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:109][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:109][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:110][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:110][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:110][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:110][644]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:111][644]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:111][644]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:111][644]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:118][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:118][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:118][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:118][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:119][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:119][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:119][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:119][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:119][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:119][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:120][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:120][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:120][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:120][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:122][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:122][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:122][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:122][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:122][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:122][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:123][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:123][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:123][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:123][645]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:124][645]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:124][645]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:124][645]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:131][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:131][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:132][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:132][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:132][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:132][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:133][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:133][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:133][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:133][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:133][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:134][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:134][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:134][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:134][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:135][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:135][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:135][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:135][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:135][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:136][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:136][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:136][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:136][646]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:137][646]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:137][646]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:137][646]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:144][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:144][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:144][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:144][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:144][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:146][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:146][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:146][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:146][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:146][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:147][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:147][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:147][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:147][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:148][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:148][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:148][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:148][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:148][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:148][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:149][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:149][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:149][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:149][647]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:150][647]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:150][647]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:150][647]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:156][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:157][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:157][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:157][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:157][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:158][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:158][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:158][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:158][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:158][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:158][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:159][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:159][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:159][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:159][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:161][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:161][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:161][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:161][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:161][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:162][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:162][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:162][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:162][648]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:163][648]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:163][648]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:163][648]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:170][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:170][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:170][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:171][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:171][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:171][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:171][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:171][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:171][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:172][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:172][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:172][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:173][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:173][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:173][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:173][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:173][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:173][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:174][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:174][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:174][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:174][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:175][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:175][649]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:175][649]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:175][649]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:175][649]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:182][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:182][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:184][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:184][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:184][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:185][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:185][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:185][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:185][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:185][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:186][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:186][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:186][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:186][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:187][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:187][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:187][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:187][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:187][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:187][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:188][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:188][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:188][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:188][650]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:189][650]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:189][650]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:189][650]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:196][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:197][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:197][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:197][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:197][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:198][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:198][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:198][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:198][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:198][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:199][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:199][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:199][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:199][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:200][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:200][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:200][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:200][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:200][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:200][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:201][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:201][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:201][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:201][651]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:203][651]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:203][651]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:203][651]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:209][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:209][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:210][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:210][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:210][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:210][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:211][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:211][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:211][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:211][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:211][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:211][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:212][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:212][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:212][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:212][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:212][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:212][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:213][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:213][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:213][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:213][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:214][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:214][652]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:214][652]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:214][652]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:214][652]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:221][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:221][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:221][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:223][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:223][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:223][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:223][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:224][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:224][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:224][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:224][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:224][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:225][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:225][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:225][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:225][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:225][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:225][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:226][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:226][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:226][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:227][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:227][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:227][653]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:227][653]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:227][653]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:227][653]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:234][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:234][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:235][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:235][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:235][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:235][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:235][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:235][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:235][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:237][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:237][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:237][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:238][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:238][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:238][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:238][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:238][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:238][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:238][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:239][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:239][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:239][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:239][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:240][654]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:240][654]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:240][654]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:240][654]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:247][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:247][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:248][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:248][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:248][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:248][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:249][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:249][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:249][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:249][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:249][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:250][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:250][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:250][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:250][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:251][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:251][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:251][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:251][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:251][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:252][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:252][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:253][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:253][655]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:253][655]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:253][655]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:253][655]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:260][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:260][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:260][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:261][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:261][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:261][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:261][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:261][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:261][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:262][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:262][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:262][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:263][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:263][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:263][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:263][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:263][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:263][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:263][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:265][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:265][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:265][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:265][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:266][656]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:266][656]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:266][656]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:266][656]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:273][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:273][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:273][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:274][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:274][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:274][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:274][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:274][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:274][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:274][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:275][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:275][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:277][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:277][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:277][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:277][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:277][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:278][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:278][657]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:278][657]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:278][657]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:278][657]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:285][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:285][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:285][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:286][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:286][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:287][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:287][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:287][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:287][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:287][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:288][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:288][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:288][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:288][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:289][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:289][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:289][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:289][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:289][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:290][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:290][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:290][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:290][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:291][658]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:291][658]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:291][658]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:291][658]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:298][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:298][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:298][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:299][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:299][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:299][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:299][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:299][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:300][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:300][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:300][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:300][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:301][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:301][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:301][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:301][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:301][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:301][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:302][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:302][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:302][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:304][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:304][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:304][659]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:304][659]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:304][659]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:304][659]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:311][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:311][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:311][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:312][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:312][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:312][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:312][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:312][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:313][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:313][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:313][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:313][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:314][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:314][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:314][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:314][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:314][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:314][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:315][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:315][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:316][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:316][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:316][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:316][660]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:317][660]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:317][660]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:317][660]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:323][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:323][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:324][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:324][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:324][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:325][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:325][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:325][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:325][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:325][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:326][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:326][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:326][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:326][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:327][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:327][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:327][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:327][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:327][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:328][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:328][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:328][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:328][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:328][661]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:329][661]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:329][661]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:329][661]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:336][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:336][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:336][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:336][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:337][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:337][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:337][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:337][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:337][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:338][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:338][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:338][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:338][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:338][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:340][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:340][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:340][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:340][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:340][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:340][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:341][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:341][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:341][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:341][662]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:342][662]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:342][662]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:342][662]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:348][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:349][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:349][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:349][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:349][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:350][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:350][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:350][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:350][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:350][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:350][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:351][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:351][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:351][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:351][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:353][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:353][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:353][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:353][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:353][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:354][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:354][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:354][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:354][663]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:355][663]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:355][663]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:355][663]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:361][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:362][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:364][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:364][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:364][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:364][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:365][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:365][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:365][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:365][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:366][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:366][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:366][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:366][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:366][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:367][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:367][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:367][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:367][664]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:367][664]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:367][664]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:368][664]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:375][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:375][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:376][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:376][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:376][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:377][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:377][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:377][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:377][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:377][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:378][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:378][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:378][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:378][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:379][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:379][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:379][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:379][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:380][665]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:381][665]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:381][665]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:381][665]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:388][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:388][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:389][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:389][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:389][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:389][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:390][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:390][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:390][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:390][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:390][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:391][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:391][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:391][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:391][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:391][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:391][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:391][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:392][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:392][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:392][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:392][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:394][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:394][666]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:394][666]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:394][666]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:394][666]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:401][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:401][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:401][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:402][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:402][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:402][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:403][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:403][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:403][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:403][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:403][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:404][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:404][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:404][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:404][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:405][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:405][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:407][667]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:407][667]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:407][667]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:407][667]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:414][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:414][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:415][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:415][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:415][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:416][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:416][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:416][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:416][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:416][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:416][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:416][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:417][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:417][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:417][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:418][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:418][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:418][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:418][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:418][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:419][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:419][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:419][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:420][668]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:420][668]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:420][668]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:420][668]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:427][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:427][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:427][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:428][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:428][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:428][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:428][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:429][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:429][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:429][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:429][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:429][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:430][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:430][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:430][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:430][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:430][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:430][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:431][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:431][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:431][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:432][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:432][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:432][669]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:432][669]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:432][669]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:432][669]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:439][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:439][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:441][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:441][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:441][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:441][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:441][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:441][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:441][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:442][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:442][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:442][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:442][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:442][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:443][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:443][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:443][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:443][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:443][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:443][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:445][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:445][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:445][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:445][670]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:446][670]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:446][670]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:446][670]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:452][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:453][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:453][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:453][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:453][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:454][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:454][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:454][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:454][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:454][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:456][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:456][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:456][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:456][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:457][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:457][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:457][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:457][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:457][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:457][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:458][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:458][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:458][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:458][671]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:459][671]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:459][671]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:459][671]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:466][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:466][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:466][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:466][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:467][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:467][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:467][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:467][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:467][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:468][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:468][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:468][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:468][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:469][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:469][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:469][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:469][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:469][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:470][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:470][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:471][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:471][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:471][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:471][672]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:471][672]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:473][672]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:473][672]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:479][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:479][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:480][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:480][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:480][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:480][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:480][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:480][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:480][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:481][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:481][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:481][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:482][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:482][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:482][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:482][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:482][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:482][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:483][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:483][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:483][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:483][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:485][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:485][673]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:485][673]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:485][673]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:485][673]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:492][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:492][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:492][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:493][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:493][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:493][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:493][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:493][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:493][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:494][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:494][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:494][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:495][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:495][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:495][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:495][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:495][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:495][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:495][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:497][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:497][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:497][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:497][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:498][674]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:498][674]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:498][674]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:498][674]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:505][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:506][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:506][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:506][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:507][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:507][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:507][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:507][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:507][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:507][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:508][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:508][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:508][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:508][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:509][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:509][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:509][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:509][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:509][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:509][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:510][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:510][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:510][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:510][675]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:512][675]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:512][675]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:512][675]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:518][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:518][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:518][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:518][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:518][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:520][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:520][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:520][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:520][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:520][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:521][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:521][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:521][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:521][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:522][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:522][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:522][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:522][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:522][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:522][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:523][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:523][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:523][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:523][676]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:524][676]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:524][676]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:524][676]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:531][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:531][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:531][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:531][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:531][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:532][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:532][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:532][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:532][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:532][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:534][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:534][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:534][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:534][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:535][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:535][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:535][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:535][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:535][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:536][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:536][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:536][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:536][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:537][677]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:537][677]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:537][677]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:537][677]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:544][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:544][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:545][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:545][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:545][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:545][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:546][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:546][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:546][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:546][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:546][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:547][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:547][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:547][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:547][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:547][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:547][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:547][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:548][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:548][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:548][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:549][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:549][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:549][678]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:549][678]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:549][678]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:549][678]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:556][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:557][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:557][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:557][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:557][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:558][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:558][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:558][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:558][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:558][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:559][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:559][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:559][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:559][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:560][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:560][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:560][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:560][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:560][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:560][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:561][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:561][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:561][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:561][679]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:563][679]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:563][679]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:563][679]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:569][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:569][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:570][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:570][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:570][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:570][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:572][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:572][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:572][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:572][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:572][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:573][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:573][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:573][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:573][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:574][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:574][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:574][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:574][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:574][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:575][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:575][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:575][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:575][680]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:576][680]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:576][680]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:576][680]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:583][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:583][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:583][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:584][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:584][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:584][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:584][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:585][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:585][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:585][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:585][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:586][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:586][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:586][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:586][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:587][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:587][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:587][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:587][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:587][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:588][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:588][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:588][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:588][681]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:589][681]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:589][681]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:589][681]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:596][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:597][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:597][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:597][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:597][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:598][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:598][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:598][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:598][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:598][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:598][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:599][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:599][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:599][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:599][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:600][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:600][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:600][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:600][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:600][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:601][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:601][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:601][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:601][682]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:602][682]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:602][682]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:602][682]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:609][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:609][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:610][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:610][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:610][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:610][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:611][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:611][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:611][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:611][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:611][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:612][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:612][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:612][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:612][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:612][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:612][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:614][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:614][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:614][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:614][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:615][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:615][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:615][683]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:615][683]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:617][683]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:617][683]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:625][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:625][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:626][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:626][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:626][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:626][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:627][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:627][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:627][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:627][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:627][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:628][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:628][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:628][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:628][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:628][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:628][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:630][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:630][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:630][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:630][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:630][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:631][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:631][684]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:631][684]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:631][684]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:631][684]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:639][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:640][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:640][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:641][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:641][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:641][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:641][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:641][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:641][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:642][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:642][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:642][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:643][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:643][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:643][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:643][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:643][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:643][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:644][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:644][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:644][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:644][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:646][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:646][685]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:646][685]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:646][685]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:646][685]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:653][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:654][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:654][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:654][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:654][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:655][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:655][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:655][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:655][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:655][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:655][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:656][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:657][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:657][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:657][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:657][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:658][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:658][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:658][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:658][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:659][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:659][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:659][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:659][686]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:660][686]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:660][686]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:660][686]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:667][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:667][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:668][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:668][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:668][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:669][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:669][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:669][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:669][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:669][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:670][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:670][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:670][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:670][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:671][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:671][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:671][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:671][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:671][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:672][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:672][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:672][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:672][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:673][687]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:673][687]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:673][687]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:673][687]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:680][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:681][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:681][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:681][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:682][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:682][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:682][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:682][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:682][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:682][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:683][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:683][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:683][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:684][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:684][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:684][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:684][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:684][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:685][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:685][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:685][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:685][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:685][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:687][688]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:687][688]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:687][688]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:687][688]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:695][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:695][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:695][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:696][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:696][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:696][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:696][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:696][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:696][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:696][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:697][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:697][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:697][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:697][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:698][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:698][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:698][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:698][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:698][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:699][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:699][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:699][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:699][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:700][689]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:700][689]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:700][689]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:700][689]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:708][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:708][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:708][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:709][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:709][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:709][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:709][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:709][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:710][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:710][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:710][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:710][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:711][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:711][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:711][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:711][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:711][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:712][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:712][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:712][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:712][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:713][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:713][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:713][690]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:713][690]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:713][690]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:714][690]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:721][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:721][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:722][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:722][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:722][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:722][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:723][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:723][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:723][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:723][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:724][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:724][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:724][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:724][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:725][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:725][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:725][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:725][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:725][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:725][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:725][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:727][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:727][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:727][691]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:727][691]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:727][691]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:727][691]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:735][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:735][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:735][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:736][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:736][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:736][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:737][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:737][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:737][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:737][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:737][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:738][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:738][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:738][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:739][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:739][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:739][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:739][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:739][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:740][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:740][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:740][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:741][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:741][692]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:741][692]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:741][692]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:741][692]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:749][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:749][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:749][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:750][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:750][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:750][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:751][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:751][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:751][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:751][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:752][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:752][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:752][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:753][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:753][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:753][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:753][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:753][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:753][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:754][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:754][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:754][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:754][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:756][693]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:756][693]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:756][693]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:756][693]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:762][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:763][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:763][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:763][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:764][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:764][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:764][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:764][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:764][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:764][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:766][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:766][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:766][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:767][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:767][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:767][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:767][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:767][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:767][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:768][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:768][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:768][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:769][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:769][694]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:769][694]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:769][694]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:769][694]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:777][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:777][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:778][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:778][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:778][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:779][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:779][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:779][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:779][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:779][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:780][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:780][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:780][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:780][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:782][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:782][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:782][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:782][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:782][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:783][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:783][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:783][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:783][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:784][695]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:784][695]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:784][695]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:784][695]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:791][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:791][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:792][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:792][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:792][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:792][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:793][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:793][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:793][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:793][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:793][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:794][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:794][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:794][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:794][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:795][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:795][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:795][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:796][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:796][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:796][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:797][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:797][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:797][696]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:797][696]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:797][696]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:798][696]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:805][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:805][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:805][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:805][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:807][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:807][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:807][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:807][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:807][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:807][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:808][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:808][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:808][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:809][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:809][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:809][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:809][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:809][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:810][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:810][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:810][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:810][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:810][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:812][697]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:812][697]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:812][697]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:812][697]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:819][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:820][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:820][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:820][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:822][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:822][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:822][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:822][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_2 +[2025.06.16-10.09.13:822][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:822][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:823][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:823][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:823][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:824][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:824][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:824][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:824][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_3 +[2025.06.16-10.09.13:824][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:824][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:825][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:825][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure Endurance". Node: Set Text Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:825][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:825][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property Skill". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:825][698]PIE: Error: Blueprint Runtime Error: "Accessed None reading structure CD". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:827][698]LogScript: Warning: Script Msg: Divide by zero: Divide_DoubleDouble +[2025.06.16-10.09.13:827][698]LogScript: Warning: Script Msg called by: WBP_SkillCard_C /Engine/Transient.UnrealEdEngine_0:GameInstance_15.WBP_SkillContainer_C_0.WidgetTree_0.WBP_SkillCard_4 +[2025.06.16-10.09.13:827][698]PIE: Error: Blueprint Runtime Error: "Accessed None trying to read property SkillMaterial". Node: Set Scalar Parameter Value Graph: EventGraph Function: Execute Ubergraph WBP Skill Card Blueprint: WBP_SkillCard +[2025.06.16-10.09.13:878][699]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.09.13:878][699]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.09.13:878][699]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.09.13:878][699]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.09.13:878][699]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.09.13:881][699]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.09.13:885][699]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.09.13:900][699]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.09.13:900][699]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-10.09.13:900][699]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-10.09.13:903][699]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-10.09.13:906][699]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.09.13:907][699]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.09.13:967][700]LogPlayLevel: Display: Destroying online subsystem :Context_21 +[2025.06.16-10.10.20:326][335]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.10.20:830][374]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.10.20:892][374]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.10.20:895][374]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.10.20:895][374]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.10.20:895][374]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.10.20:904][374]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.10.20:904][374]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardE6F24AD4428AC9EF4AD046B2BBF1822D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.10.20:915][374]LogFileHelpers: InternalPromptForCheckoutAndSave took 85.251 ms (total: 902.897 ms) +[2025.06.16-10.10.20:968][374]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.10.20:968][374]LogContentValidation: Enabled validators: +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.10.20:968][374]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.10.20:968][374]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.10.21:921][479]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.10.21:926][479]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.10.21:926][479]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.10.21:927][479]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.276 ms (total: 21.956 ms) +[2025.06.16-10.10.21:927][479]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.10.21:928][479]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.10.21:930][479]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002204s) +[2025.06.16-10.10.21:930][479]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002339s) +[2025.06.16-10.10.21:942][479]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.10.21:944][479]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.10.21:946][479]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.10.21:946][479]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.10.21:946][479]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.10.21:946][479]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.10.21:947][479]LogWorldPartition: Display: WorldPartition initialize took 1.001 ms (total: 102.184 ms) +[2025.06.16-10.10.21:947][479]LogPlayLevel: PIE: World Init took: (0.002472s) +[2025.06.16-10.10.21:947][479]LogAudio: Display: Creating Audio Device: Id: 18, Scope: Unique, Realtime: True +[2025.06.16-10.10.21:947][479]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.10.21:947][479]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.10.21:947][479]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.10.21:947][479]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.10.21:948][479]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.10.21:948][479]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.10.21:948][479]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.10.21:948][479]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.10.21:948][479]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.10.21:948][479]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.10.21:948][479]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.10.21:950][479]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.10.21:974][479]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.10.21:975][479]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.10.21:975][479]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.10.21:975][479]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.10.21:975][479]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=18 +[2025.06.16-10.10.21:975][479]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=18 +[2025.06.16-10.10.21:978][479]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=18 +[2025.06.16-10.10.21:978][479]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=18 +[2025.06.16-10.10.21:978][479]LogInit: FAudioDevice initialized with ID 18. +[2025.06.16-10.10.21:978][479]LogAudio: Display: Audio Device (ID: 18) registered with world 'Dabaza'. +[2025.06.16-10.10.21:978][479]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-10.10.21:980][479]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.10.21:981][479]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.10.21 +[2025.06.16-10.10.21:981][479]LogWorld: Bringing up level for play took: 0.001158 +[2025.06.16-10.10.21:983][479]LogOnline: OSS: Created online subsystem instance for: :Context_22 +[2025.06.16-10.10.21:986][479]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.10.21:986][479]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.10.21:986][479]PIE: Server logged in +[2025.06.16-10.10.21:987][479]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-10.10.26:378][987]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.10.26:379][987]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.10.26:379][987]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.10.26:379][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.10.26:379][987]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.10.26:382][987]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.10.26:385][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.10.26:401][987]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.10.26:401][987]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-10.10.26:401][987]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-10.10.26:403][987]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-10.10.26:407][987]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.10.26:409][987]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.10.26:443][989]LogPlayLevel: Display: Destroying online subsystem :Context_22 +[2025.06.16-10.10.32:898][742]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.10.32:964][742]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.10.32:964][742]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.10.32:964][742]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.10.32:966][742]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.10.32:967][742]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsBF0B26F7407191DA49F5BB8F27BE932E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.10.32:978][742]LogFileHelpers: InternalPromptForCheckoutAndSave took 78.869 ms (total: 981.766 ms) +[2025.06.16-10.10.33:013][742]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.10.33:013][742]LogContentValidation: Enabled validators: +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.10.33:013][742]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.10.33:013][742]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.10.34:113][863]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.10.34:118][863]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.10.34:118][863]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.10.34:119][863]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.259 ms (total: 23.216 ms) +[2025.06.16-10.10.34:119][863]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.10.34:119][863]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.10.34:121][863]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002183s) +[2025.06.16-10.10.34:121][863]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002315s) +[2025.06.16-10.10.34:134][863]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.10.34:135][863]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.10.34:137][863]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.10.34:137][863]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.10.34:138][863]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.10.34:138][863]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.10.34:139][863]LogWorldPartition: Display: WorldPartition initialize took 1.102 ms (total: 103.287 ms) +[2025.06.16-10.10.34:139][863]LogPlayLevel: PIE: World Init took: (0.002417s) +[2025.06.16-10.10.34:139][863]LogAudio: Display: Creating Audio Device: Id: 19, Scope: Unique, Realtime: True +[2025.06.16-10.10.34:139][863]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.10.34:139][863]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.10.34:140][863]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.10.34:140][863]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.10.34:140][863]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.10.34:140][863]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.10.34:140][863]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.10.34:140][863]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.10.34:140][863]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.10.34:140][863]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.10.34:140][863]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.10.34:142][863]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.10.34:168][863]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.10.34:168][863]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.10.34:168][863]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.10.34:169][863]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.10.34:169][863]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=19 +[2025.06.16-10.10.34:169][863]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=19 +[2025.06.16-10.10.34:171][863]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=19 +[2025.06.16-10.10.34:171][863]LogInit: FAudioDevice initialized with ID 19. +[2025.06.16-10.10.34:171][863]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=19 +[2025.06.16-10.10.34:171][863]LogAudio: Display: Audio Device (ID: 19) registered with world 'Dabaza'. +[2025.06.16-10.10.34:171][863]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-10.10.34:173][863]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.10.34:174][863]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.10.34 +[2025.06.16-10.10.34:175][863]LogWorld: Bringing up level for play took: 0.001140 +[2025.06.16-10.10.34:177][863]LogOnline: OSS: Created online subsystem instance for: :Context_23 +[2025.06.16-10.10.34:179][863]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.10.34:179][863]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.10.34:180][863]PIE: Server logged in +[2025.06.16-10.10.34:180][863]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-10.10.38:358][347]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.10.38:358][347]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.10.38:358][347]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.10.38:358][347]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.10.38:358][347]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.10.38:361][347]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.10.38:365][347]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.10.38:379][347]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.10.38:379][347]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-10.10.38:379][347]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-10.10.38:380][347]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-10.10.38:386][347]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.10.38:423][349]LogPlayLevel: Display: Destroying online subsystem :Context_23 +[2025.06.16-10.11.26:470][844]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.11.26:994][889]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.11.27:068][889]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.11.27:069][889]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.11.27:069][889]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.11.27:069][889]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.11.27:075][889]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.11.27:075][889]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer745E43584A78B229A3960789BB41CB4B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.11.27:086][889]LogFileHelpers: InternalPromptForCheckoutAndSave took 91.402 ms (total: 1.07 sec) +[2025.06.16-10.11.27:138][889]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.11.27:139][889]LogContentValidation: Enabled validators: +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.11.27:139][889]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.11.27:139][889]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.12.57:707][872]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.13.33:797][748]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.13.33:845][748]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.13.33:845][748]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.13.33:845][748]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.13.33:848][748]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.13.33:848][748]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills070C65E94175A23A6A602998E22D8124.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.13.33:859][748]LogFileHelpers: InternalPromptForCheckoutAndSave took 61.568 ms (total: 1.13 sec) +[2025.06.16-10.13.33:912][748]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.13.33:912][748]LogContentValidation: Enabled validators: +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.13.33:912][748]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.13.33:912][748]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.13.47:635][313]LogUObjectHash: Compacting FUObjectHashTables data took 1.16ms +[2025.06.16-10.13.56:463][ 41]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.13.56:468][ 41]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.13.56:468][ 41]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.13.56:469][ 41]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.441 ms (total: 24.657 ms) +[2025.06.16-10.13.56:469][ 41]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.13.56:471][ 41]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.13.56:473][ 41]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002344s) +[2025.06.16-10.13.56:473][ 41]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002481s) +[2025.06.16-10.13.56:485][ 41]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.13.56:487][ 41]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.13.56:488][ 41]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.13.56:488][ 41]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.13.56:488][ 41]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.13.56:488][ 41]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.13.56:489][ 41]LogWorldPartition: Display: WorldPartition initialize took 995 us (total: 104.283 ms) +[2025.06.16-10.13.56:489][ 41]LogPlayLevel: PIE: World Init took: (0.002428s) +[2025.06.16-10.13.56:490][ 41]LogAudio: Display: Creating Audio Device: Id: 20, Scope: Unique, Realtime: True +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.13.56:490][ 41]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.13.56:490][ 41]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.13.56:490][ 41]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.13.56:490][ 41]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.13.56:490][ 41]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.13.56:492][ 41]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=20 +[2025.06.16-10.13.56:518][ 41]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=20 +[2025.06.16-10.13.56:521][ 41]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=20 +[2025.06.16-10.13.56:521][ 41]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=20 +[2025.06.16-10.13.56:521][ 41]LogInit: FAudioDevice initialized with ID 20. +[2025.06.16-10.13.56:521][ 41]LogAudio: Display: Audio Device (ID: 20) registered with world 'Dabaza'. +[2025.06.16-10.13.56:521][ 41]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-10.13.56:523][ 41]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.13.56:525][ 41]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.13.56 +[2025.06.16-10.13.56:525][ 41]LogWorld: Bringing up level for play took: 0.001226 +[2025.06.16-10.13.56:527][ 41]LogOnline: OSS: Created online subsystem instance for: :Context_24 +[2025.06.16-10.13.56:529][ 41]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.13.56:529][ 41]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.13.56:529][ 41]PIE: Server logged in +[2025.06.16-10.13.56:530][ 41]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-10.13.57:967][204]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.14.01:748][650]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.14.01:748][650]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.14.01:748][650]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.14.01:749][650]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.14.01:749][650]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.14.01:753][650]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.14.01:756][650]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.14.01:773][650]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.14.01:773][650]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-10.14.01:774][650]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-10.14.01:775][650]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-10.14.01:778][650]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.14.01:779][650]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.14.01:815][652]LogPlayLevel: Display: Destroying online subsystem :Context_24 +[2025.06.16-10.14.49:403][936]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2459.210205 +[2025.06.16-10.14.50:403][939]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.14.50:403][939]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2459.880127, Update Interval: 354.470032 +[2025.06.16-10.15.16:509][318]LogHotReload: New module detected: UnrealEditor-ProjectFish-0002.dll +[2025.06.16-10.15.17:248][406]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-10.15.17:313][406]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.15.17:662][406]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.15.17:707][406]Display: HotReload took 0.5s. +[2025.06.16-10.15.17:707][406]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-10.15.19:807][593]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.15.19:813][593]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.15.19:813][593]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.15.19:814][593]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.298 ms (total: 25.955 ms) +[2025.06.16-10.15.19:815][593]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.15.19:815][593]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.15.19:818][593]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002269s) +[2025.06.16-10.15.19:818][593]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002416s) +[2025.06.16-10.15.19:877][593]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.16-10.15.19:879][593]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.15.19:880][593]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.15.19:880][593]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.15.19:880][593]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.15.19:880][593]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.15.19:881][593]LogWorldPartition: Display: WorldPartition initialize took 1.018 ms (total: 105.301 ms) +[2025.06.16-10.15.19:881][593]LogPlayLevel: PIE: World Init took: (0.002509s) +[2025.06.16-10.15.19:882][593]LogAudio: Display: Creating Audio Device: Id: 21, Scope: Unique, Realtime: True +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.15.19:882][593]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.15.19:882][593]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.15.19:882][593]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.15.19:882][593]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.15.19:882][593]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.15.19:884][593]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.15.19:910][593]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.15.19:911][593]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.15.19:911][593]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.15.19:911][593]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.15.19:911][593]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=21 +[2025.06.16-10.15.19:911][593]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=21 +[2025.06.16-10.15.19:914][593]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=21 +[2025.06.16-10.15.19:914][593]LogInit: FAudioDevice initialized with ID 21. +[2025.06.16-10.15.19:914][593]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=21 +[2025.06.16-10.15.19:914][593]LogAudio: Display: Audio Device (ID: 21) registered with world 'Dabaza'. +[2025.06.16-10.15.19:914][593]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-10.15.19:917][593]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.15.19:918][593]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.15.19 +[2025.06.16-10.15.19:918][593]LogWorld: Bringing up level for play took: 0.001287 +[2025.06.16-10.15.19:920][593]LogOnline: OSS: Created online subsystem instance for: :Context_25 +[2025.06.16-10.15.19:922][593]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.15.19:922][593]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.15.19:923][593]PIE: Server logged in +[2025.06.16-10.15.19:924][593]PIE: Play in editor total start time 0.112 seconds. +[2025.06.16-10.15.27:807][530]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.15.29:808][770]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.15.34:809][370]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.15.38:820][850]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-10.15.42:418][277]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.15.42:418][277]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.15.42:419][277]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.15.42:419][277]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.15.42:419][277]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.15.42:422][277]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.15.42:425][277]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.15.42:451][277]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.15.42:451][277]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-10.15.42:451][277]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-10.15.42:453][277]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-10.15.42:470][277]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.15.42:500][278]LogPlayLevel: Display: Destroying online subsystem :Context_25 +[2025.06.16-10.15.48:759][995]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.15.48:828][995]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.15.48:828][995]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.15.48:828][995]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.15.48:841][995]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.15.48:842][995]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeC388D673431FFA369BFFB29403AA8ED8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.15.48:853][995]LogFileHelpers: InternalPromptForCheckoutAndSave took 92.829 ms (total: 1.22 sec) +[2025.06.16-10.15.48:889][995]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.15.48:889][995]LogContentValidation: Enabled validators: +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.15.48:889][995]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.15.48:889][995]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.16.06:943][ 54]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.16.07:460][ 96]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.16.07:520][ 96]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.16.07:521][ 96]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.16.07:521][ 96]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.16.07:534][ 96]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.16.07:534][ 96]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode9D94C28A435D01E02D5D2AA88EA825D6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.16.07:546][ 96]LogFileHelpers: InternalPromptForCheckoutAndSave took 85.344 ms (total: 1.31 sec) +[2025.06.16-10.16.07:605][ 96]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.16.07:605][ 96]LogContentValidation: Enabled validators: +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.16.07:605][ 96]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.16.07:605][ 96]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.16.08:731][213]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.16.08:735][213]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.16.08:736][213]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.16.08:737][213]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.346 ms (total: 27.302 ms) +[2025.06.16-10.16.08:737][213]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.16.08:737][213]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.16.08:739][213]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002232s) +[2025.06.16-10.16.08:739][213]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002401s) +[2025.06.16-10.16.08:752][213]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.16.08:757][213]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.16.08:758][213]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.16.08:758][213]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.16.08:758][213]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.16.08:758][213]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.16.08:759][213]LogWorldPartition: Display: WorldPartition initialize took 1.153 ms (total: 106.455 ms) +[2025.06.16-10.16.08:759][213]LogPlayLevel: PIE: World Init took: (0.002609s) +[2025.06.16-10.16.08:759][213]LogAudio: Display: Creating Audio Device: Id: 22, Scope: Unique, Realtime: True +[2025.06.16-10.16.08:759][213]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.16.08:760][213]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.16.08:760][213]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.16.08:760][213]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.16.08:760][213]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.16.08:760][213]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.16.08:762][213]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.16.08:788][213]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.16.08:788][213]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.16.08:788][213]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.16.08:788][213]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.16.08:789][213]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=22 +[2025.06.16-10.16.08:789][213]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=22 +[2025.06.16-10.16.08:792][213]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=22 +[2025.06.16-10.16.08:792][213]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=22 +[2025.06.16-10.16.08:792][213]LogInit: FAudioDevice initialized with ID 22. +[2025.06.16-10.16.08:792][213]LogAudio: Display: Audio Device (ID: 22) registered with world 'Dabaza'. +[2025.06.16-10.16.08:792][213]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-10.16.08:794][213]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.16.08:795][213]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.16.08 +[2025.06.16-10.16.08:795][213]LogWorld: Bringing up level for play took: 0.001168 +[2025.06.16-10.16.08:798][213]LogOnline: OSS: Created online subsystem instance for: :Context_26 +[2025.06.16-10.16.08:800][213]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.16.08:800][213]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.16.08:801][213]PIE: Server logged in +[2025.06.16-10.16.08:802][213]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.16.12:059][590]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.16.12:059][590]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.16.12:059][590]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.16.12:059][590]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.16.12:059][590]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.16.12:062][590]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.16.12:066][590]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.16.12:084][590]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.16.12:084][590]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-10.16.12:085][590]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-10.16.12:087][590]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-10.16.12:092][590]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.16.12:121][591]LogPlayLevel: Display: Destroying online subsystem :Context_26 +[2025.06.16-10.16.18:035][257]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.16.18:106][257]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.16.18:106][257]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.16.18:106][257]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.16.18:108][257]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.16.18:109][257]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsFCC14E274EE94FFA5AA7B3BFDAA9213D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.16.18:119][257]LogFileHelpers: InternalPromptForCheckoutAndSave took 84.638 ms (total: 1.39 sec) +[2025.06.16-10.16.18:182][257]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.16.18:182][257]LogContentValidation: Enabled validators: +[2025.06.16-10.16.18:182][257]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.16.18:182][257]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.16.18:182][257]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.16.18:182][257]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.16.18:183][257]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.16.18:183][257]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.16.18:183][257]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.16.19:289][373]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.16.19:293][373]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.16.19:293][373]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.16.19:294][373]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.205 ms (total: 28.507 ms) +[2025.06.16-10.16.19:295][373]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.16.19:295][373]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.16.19:298][373]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002269s) +[2025.06.16-10.16.19:298][373]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002440s) +[2025.06.16-10.16.19:311][373]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.16-10.16.19:312][373]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.16.19:313][373]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.16.19:313][373]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.16.19:313][373]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.16.19:313][373]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.16.19:315][373]LogWorldPartition: Display: WorldPartition initialize took 1.108 ms (total: 107.563 ms) +[2025.06.16-10.16.19:315][373]LogPlayLevel: PIE: World Init took: (0.002537s) +[2025.06.16-10.16.19:316][373]LogAudio: Display: Creating Audio Device: Id: 23, Scope: Unique, Realtime: True +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.16.19:316][373]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.16.19:316][373]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.16.19:317][373]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.16.19:317][373]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.16.19:317][373]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.16.19:318][373]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.16.19:343][373]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.16.19:343][373]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.16.19:343][373]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.16.19:344][373]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.16.19:344][373]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=23 +[2025.06.16-10.16.19:344][373]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=23 +[2025.06.16-10.16.19:347][373]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=23 +[2025.06.16-10.16.19:347][373]LogInit: FAudioDevice initialized with ID 23. +[2025.06.16-10.16.19:347][373]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=23 +[2025.06.16-10.16.19:347][373]LogAudio: Display: Audio Device (ID: 23) registered with world 'Dabaza'. +[2025.06.16-10.16.19:347][373]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-10.16.19:349][373]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.16.19:350][373]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.16.19 +[2025.06.16-10.16.19:351][373]LogWorld: Bringing up level for play took: 0.001343 +[2025.06.16-10.16.19:353][373]LogOnline: OSS: Created online subsystem instance for: :Context_27 +[2025.06.16-10.16.19:355][373]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.16.19:355][373]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.16.19:356][373]PIE: Server logged in +[2025.06.16-10.16.19:356][373]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-10.16.27:282][316]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.16.29:282][556]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.16.34:283][156]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.16.34:283][156]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.16.39:289][754]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.16.41:289][994]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.16.41:290][994]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-10.16.43:858][293]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.16.43:858][293]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.16.43:859][293]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.16.43:859][293]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.16.43:859][293]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.16.43:862][293]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.16.43:865][293]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.16.43:883][293]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.16.43:883][293]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-10.16.43:883][293]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-10.16.43:885][293]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-10.16.43:890][293]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.16.43:926][295]LogPlayLevel: Display: Destroying online subsystem :Context_27 +[2025.06.16-10.17.01:528][376]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.17.01:585][376]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.17.01:585][376]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.17.01:585][376]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.17.01:587][376]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.17.01:587][376]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsE52B1479402C4D40F4DE5EB73B6DD0A6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.17.01:597][376]LogFileHelpers: InternalPromptForCheckoutAndSave took 69.175 ms (total: 1.46 sec) +[2025.06.16-10.17.01:650][376]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.17.01:650][376]LogContentValidation: Enabled validators: +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.17.01:650][376]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.17.01:650][376]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.17.04:609][717]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.17.04:614][717]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.17.04:614][717]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.17.04:616][717]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.288 ms (total: 29.796 ms) +[2025.06.16-10.17.04:616][717]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.17.04:616][717]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.04:619][717]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002168s) +[2025.06.16-10.17.04:619][717]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002309s) +[2025.06.16-10.17.04:632][717]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-10.17.04:634][717]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.17.04:635][717]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.17.04:635][717]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.17.04:635][717]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.17.04:635][717]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.17.04:636][717]LogWorldPartition: Display: WorldPartition initialize took 1.032 ms (total: 108.596 ms) +[2025.06.16-10.17.04:636][717]LogPlayLevel: PIE: World Init took: (0.002378s) +[2025.06.16-10.17.04:637][717]LogAudio: Display: Creating Audio Device: Id: 24, Scope: Unique, Realtime: True +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.17.04:637][717]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.17.04:637][717]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.17.04:637][717]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.17.04:637][717]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.17.04:637][717]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.17.04:640][717]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.17.04:664][717]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.17.04:665][717]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.17.04:665][717]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.17.04:665][717]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.17.04:665][717]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=24 +[2025.06.16-10.17.04:665][717]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=24 +[2025.06.16-10.17.04:668][717]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=24 +[2025.06.16-10.17.04:668][717]LogInit: FAudioDevice initialized with ID 24. +[2025.06.16-10.17.04:668][717]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=24 +[2025.06.16-10.17.04:668][717]LogAudio: Display: Audio Device (ID: 24) registered with world 'Dabaza'. +[2025.06.16-10.17.04:668][717]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.16-10.17.04:671][717]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.17.04:672][717]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.17.04 +[2025.06.16-10.17.04:673][717]LogWorld: Bringing up level for play took: 0.001231 +[2025.06.16-10.17.04:675][717]LogOnline: OSS: Created online subsystem instance for: :Context_28 +[2025.06.16-10.17.04:677][717]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.17.04:677][717]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.17.04:677][717]PIE: Server logged in +[2025.06.16-10.17.04:678][717]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.17.10:858][442]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.10:858][442]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.10:858][442]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.17.10:858][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.10:858][442]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.17.10:861][442]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.17.10:865][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.10:883][442]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.10:883][442]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.16-10.17.10:883][442]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.16-10.17.10:885][442]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.16-10.17.10:890][442]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.17.10:927][444]LogPlayLevel: Display: Destroying online subsystem :Context_28 +[2025.06.16-10.17.16:437][ 90]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.17.20:998][609]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.17.21:051][609]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.17.21:051][609]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.17.21:051][609]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.17.21:052][609]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.17.21:053][609]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills6649013B4AE1ECECDA566489AA22BBA6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.17.21:062][609]LogFileHelpers: InternalPromptForCheckoutAndSave took 64.070 ms (total: 1.53 sec) +[2025.06.16-10.17.21:113][609]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.17.21:113][609]LogContentValidation: Enabled validators: +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.17.21:113][609]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.17.21:113][609]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.17.22:149][718]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.17.22:154][718]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.17.22:154][718]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.17.22:155][718]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.233 ms (total: 31.029 ms) +[2025.06.16-10.17.22:155][718]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.17.22:155][718]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.22:158][718]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002170s) +[2025.06.16-10.17.22:158][718]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002328s) +[2025.06.16-10.17.22:169][718]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.16-10.17.22:172][718]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.17.22:173][718]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.17.22:173][718]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.17.22:173][718]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.17.22:173][718]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.17.22:174][718]LogWorldPartition: Display: WorldPartition initialize took 958 us (total: 109.554 ms) +[2025.06.16-10.17.22:174][718]LogPlayLevel: PIE: World Init took: (0.002290s) +[2025.06.16-10.17.22:174][718]LogAudio: Display: Creating Audio Device: Id: 25, Scope: Unique, Realtime: True +[2025.06.16-10.17.22:174][718]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.17.22:174][718]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.17.22:174][718]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.17.22:175][718]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.17.22:175][718]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.17.22:175][718]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.17.22:175][718]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.17.22:175][718]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.17.22:175][718]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.17.22:175][718]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.17.22:175][718]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.17.22:177][718]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.17.22:202][718]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.17.22:202][718]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.17.22:202][718]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.17.22:202][718]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.17.22:202][718]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=25 +[2025.06.16-10.17.22:202][718]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=25 +[2025.06.16-10.17.22:205][718]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=25 +[2025.06.16-10.17.22:205][718]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=25 +[2025.06.16-10.17.22:205][718]LogInit: FAudioDevice initialized with ID 25. +[2025.06.16-10.17.22:205][718]LogAudio: Display: Audio Device (ID: 25) registered with world 'Dabaza'. +[2025.06.16-10.17.22:205][718]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.16-10.17.22:208][718]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.17.22:209][718]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.17.22 +[2025.06.16-10.17.22:209][718]LogWorld: Bringing up level for play took: 0.001206 +[2025.06.16-10.17.22:211][718]LogOnline: OSS: Created online subsystem instance for: :Context_29 +[2025.06.16-10.17.22:213][718]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.17.22:213][718]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.17.22:214][718]PIE: Server logged in +[2025.06.16-10.17.22:215][718]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-10.17.27:349][317]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.27:349][317]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.27:349][317]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.17.27:349][317]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.27:349][317]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.17.27:354][317]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.17.27:357][317]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.27:377][317]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.27:377][317]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.16-10.17.27:377][317]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.16-10.17.27:379][317]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.16-10.17.27:384][317]LogUObjectHash: Compacting FUObjectHashTables data took 1.00ms +[2025.06.16-10.17.27:413][318]LogPlayLevel: Display: Destroying online subsystem :Context_29 +[2025.06.16-10.17.37:505][454]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.17.38:480][538]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.17.38:485][538]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.17.38:485][538]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.17.38:485][538]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.279 ms (total: 32.309 ms) +[2025.06.16-10.17.38:487][538]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.17.38:487][538]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.38:489][538]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002223s) +[2025.06.16-10.17.38:489][538]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002372s) +[2025.06.16-10.17.38:502][538]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.17.38:507][538]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.17.38:508][538]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.17.38:508][538]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.17.38:508][538]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.17.38:508][538]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.17.38:509][538]LogWorldPartition: Display: WorldPartition initialize took 984 us (total: 110.539 ms) +[2025.06.16-10.17.38:509][538]LogPlayLevel: PIE: World Init took: (0.002369s) +[2025.06.16-10.17.38:510][538]LogAudio: Display: Creating Audio Device: Id: 26, Scope: Unique, Realtime: True +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.17.38:510][538]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.17.38:510][538]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.17.38:510][538]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.17.38:510][538]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.17.38:510][538]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.17.38:512][538]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.17.38:538][538]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.17.38:538][538]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.17.38:538][538]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.17.38:538][538]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.17.38:538][538]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=26 +[2025.06.16-10.17.38:538][538]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=26 +[2025.06.16-10.17.38:541][538]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=26 +[2025.06.16-10.17.38:541][538]LogInit: FAudioDevice initialized with ID 26. +[2025.06.16-10.17.38:541][538]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=26 +[2025.06.16-10.17.38:541][538]LogAudio: Display: Audio Device (ID: 26) registered with world 'Dabaza'. +[2025.06.16-10.17.38:541][538]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.16-10.17.38:543][538]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.17.38:544][538]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.17.38 +[2025.06.16-10.17.38:544][538]LogWorld: Bringing up level for play took: 0.001130 +[2025.06.16-10.17.38:546][538]LogOnline: OSS: Created online subsystem instance for: :Context_30 +[2025.06.16-10.17.38:548][538]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.17.38:548][538]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.17.38:548][538]PIE: Server logged in +[2025.06.16-10.17.38:549][538]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-10.17.45:178][316]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.45:178][316]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.17.45:179][316]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.17.45:179][316]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.45:179][316]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.17.45:181][316]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.17.45:185][316]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.17.45:201][316]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.17.45:201][316]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.16-10.17.45:201][316]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.16-10.17.45:203][316]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.16-10.17.45:206][316]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.17.45:208][316]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.17.45:254][319]LogPlayLevel: Display: Destroying online subsystem :Context_30 +[2025.06.16-10.17.52:162][121]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.17.52:227][121]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.17.52:228][121]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.17.52:228][121]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.17.52:228][121]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.17.52:234][121]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.17.52:235][121]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer508621BC49EBE527B810F2B688263B04.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.17.52:244][121]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.296 ms (total: 1.61 sec) +[2025.06.16-10.17.52:311][121]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.17.52:311][121]LogContentValidation: Enabled validators: +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.17.52:311][121]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.17.52:312][121]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.18.23:483][166]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.18.23:488][166]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.18.23:488][166]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.18.23:490][166]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.344 ms (total: 33.654 ms) +[2025.06.16-10.18.23:490][166]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.18.23:490][166]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.18.23:492][166]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002197s) +[2025.06.16-10.18.23:492][166]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002360s) +[2025.06.16-10.18.23:505][166]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.18.23:506][166]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.18.23:507][166]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.18.23:507][166]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.18.23:507][166]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.18.23:507][166]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.18.23:509][166]LogWorldPartition: Display: WorldPartition initialize took 1.053 ms (total: 111.592 ms) +[2025.06.16-10.18.23:509][166]LogPlayLevel: PIE: World Init took: (0.002385s) +[2025.06.16-10.18.23:510][166]LogAudio: Display: Creating Audio Device: Id: 27, Scope: Unique, Realtime: True +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.18.23:510][166]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.18.23:510][166]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.18.23:510][166]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.18.23:510][166]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.18.23:510][166]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.18.23:512][166]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.18.23:537][166]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.18.23:537][166]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.18.23:537][166]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.18.23:537][166]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.18.23:538][166]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=27 +[2025.06.16-10.18.23:538][166]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=27 +[2025.06.16-10.18.23:541][166]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=27 +[2025.06.16-10.18.23:541][166]LogInit: FAudioDevice initialized with ID 27. +[2025.06.16-10.18.23:541][166]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=27 +[2025.06.16-10.18.23:541][166]LogAudio: Display: Audio Device (ID: 27) registered with world 'Dabaza'. +[2025.06.16-10.18.23:541][166]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.16-10.18.23:543][166]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.18.23:544][166]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.18.23 +[2025.06.16-10.18.23:544][166]LogWorld: Bringing up level for play took: 0.001297 +[2025.06.16-10.18.23:547][166]LogOnline: OSS: Created online subsystem instance for: :Context_31 +[2025.06.16-10.18.23:548][166]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.18.23:549][166]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.18.23:549][166]PIE: Server logged in +[2025.06.16-10.18.23:550][166]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-10.18.23:982][210]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.18.24:024][215]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.18.24:915][321]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.18.25:165][351]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.18.25:939][444]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.18.27:156][590]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-10.18.27:848][673]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.18.28:997][811]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.18.30:778][ 17]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.18.30:778][ 17]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.18.30:779][ 17]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.18.30:779][ 17]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.18.30:779][ 17]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.18.30:782][ 17]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.18.30:786][ 17]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.18.30:804][ 17]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.18.30:804][ 17]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.16-10.18.30:805][ 17]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.16-10.18.30:806][ 17]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.16-10.18.30:812][ 17]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.18.30:838][ 18]LogPlayLevel: Display: Destroying online subsystem :Context_31 +[2025.06.16-10.18.36:655][658]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect +[2025.06.16-10.18.36:655][658]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_13 +[2025.06.16-10.18.36:660][658]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_14 +[2025.06.16-10.18.55:097][696]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.18.55:973][778]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.18.56:032][778]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.18.56:035][778]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.18.56:035][778]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.18.56:035][778]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.18.56:045][778]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.18.56:046][778]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard6164114A45C7B7EEED1C2D88B3F57A4F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.18.56:056][778]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.653 ms (total: 1.69 sec) +[2025.06.16-10.18.56:112][778]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.18.56:113][778]LogContentValidation: Enabled validators: +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.18.56:113][778]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.18.56:113][778]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.18.57:207][900]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.18.57:212][900]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.18.57:212][900]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.18.57:214][900]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.248 ms (total: 34.902 ms) +[2025.06.16-10.18.57:214][900]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.18.57:214][900]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.18.57:217][900]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002553s) +[2025.06.16-10.18.57:217][900]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002745s) +[2025.06.16-10.18.57:229][900]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.18.57:230][900]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.18.57:231][900]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.18.57:231][900]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.18.57:232][900]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.18.57:232][900]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.18.57:233][900]LogWorldPartition: Display: WorldPartition initialize took 1.232 ms (total: 112.825 ms) +[2025.06.16-10.18.57:233][900]LogPlayLevel: PIE: World Init took: (0.002782s) +[2025.06.16-10.18.57:233][900]LogAudio: Display: Creating Audio Device: Id: 28, Scope: Unique, Realtime: True +[2025.06.16-10.18.57:233][900]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.18.57:234][900]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.18.57:234][900]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.18.57:234][900]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.18.57:234][900]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.18.57:234][900]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.18.57:235][900]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.18.57:262][900]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.18.57:262][900]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.18.57:262][900]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.18.57:262][900]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.18.57:262][900]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=28 +[2025.06.16-10.18.57:264][900]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=28 +[2025.06.16-10.18.57:266][900]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=28 +[2025.06.16-10.18.57:266][900]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=28 +[2025.06.16-10.18.57:266][900]LogInit: FAudioDevice initialized with ID 28. +[2025.06.16-10.18.57:266][900]LogAudio: Display: Audio Device (ID: 28) registered with world 'Dabaza'. +[2025.06.16-10.18.57:266][900]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.16-10.18.57:267][900]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.18.57:268][900]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.18.57 +[2025.06.16-10.18.57:268][900]LogWorld: Bringing up level for play took: 0.001157 +[2025.06.16-10.18.57:271][900]LogOnline: OSS: Created online subsystem instance for: :Context_34 +[2025.06.16-10.18.57:273][900]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.18.57:273][900]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.18.57:274][900]PIE: Server logged in +[2025.06.16-10.18.57:274][900]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-10.18.57:895][967]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.18.59:373][143]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.19.00:400][266]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.19.01:667][418]LogBlueprintUserMessages: [WBP_SkillCard_C_2] Hello +[2025.06.16-10.19.02:575][527]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.19.03:550][644]LogBlueprintUserMessages: [WBP_SkillCard_C_0] Hello +[2025.06.16-10.19.04:342][739]LogBlueprintUserMessages: [WBP_SkillCard_C_1] Hello +[2025.06.16-10.19.05:138][826]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.05:138][826]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.19.05:138][826]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.19.05:140][826]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.05:140][826]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.19.05:143][826]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.19.05:148][826]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.05:170][826]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.19.05:170][826]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.16-10.19.05:170][826]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.16-10.19.05:172][826]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.16-10.19.05:175][826]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.05:177][826]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.19.05:204][827]LogPlayLevel: Display: Destroying online subsystem :Context_34 +[2025.06.16-10.19.12:600][652]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.19.14:636][845]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.19.14:642][845]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.19.14:642][845]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.19.14:643][845]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.281 ms (total: 36.183 ms) +[2025.06.16-10.19.14:643][845]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.19.14:643][845]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.19.14:645][845]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002178s) +[2025.06.16-10.19.14:645][845]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002338s) +[2025.06.16-10.19.14:663][845]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.19.14:666][845]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.19.14:667][845]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.19.14:667][845]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.19.14:668][845]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.19.14:668][845]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.19.14:669][845]LogWorldPartition: Display: WorldPartition initialize took 1.066 ms (total: 113.891 ms) +[2025.06.16-10.19.14:669][845]LogPlayLevel: PIE: World Init took: (0.002531s) +[2025.06.16-10.19.14:669][845]LogAudio: Display: Creating Audio Device: Id: 29, Scope: Unique, Realtime: True +[2025.06.16-10.19.14:669][845]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.19.14:669][845]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.19.14:669][845]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.19.14:670][845]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.19.14:670][845]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.19.14:670][845]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.19.14:670][845]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.19.14:670][845]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.19.14:670][845]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.19.14:670][845]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.19.14:670][845]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.19.14:672][845]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.19.14:697][845]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.19.14:697][845]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.19.14:697][845]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.19.14:697][845]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.19.14:698][845]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=29 +[2025.06.16-10.19.14:698][845]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=29 +[2025.06.16-10.19.14:700][845]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=29 +[2025.06.16-10.19.14:700][845]LogInit: FAudioDevice initialized with ID 29. +[2025.06.16-10.19.14:700][845]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=29 +[2025.06.16-10.19.14:700][845]LogAudio: Display: Audio Device (ID: 29) registered with world 'Dabaza'. +[2025.06.16-10.19.14:700][845]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.16-10.19.14:702][845]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.19.14:703][845]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.19.14 +[2025.06.16-10.19.14:704][845]LogWorld: Bringing up level for play took: 0.001233 +[2025.06.16-10.19.14:705][845]LogOnline: OSS: Created online subsystem instance for: :Context_35 +[2025.06.16-10.19.14:708][845]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.19.14:708][845]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.19.14:709][845]PIE: Server logged in +[2025.06.16-10.19.14:710][845]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.19.15:575][939]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=187.000 Y=512.000 +[2025.06.16-10.19.18:591][300]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=440.000 Y=511.000 +[2025.06.16-10.19.20:517][531]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=910.000 Y=511.000 +[2025.06.16-10.19.22:635][785]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.19.22:742][798]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1347.000 Y=512.000 +[2025.06.16-10.19.24:086][959]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1439.000 Y=546.000 +[2025.06.16-10.19.24:635][ 25]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.19.27:135][325]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1396.000 Y=510.000 +[2025.06.16-10.19.29:637][625]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.19.29:960][664]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1407.000 Y=513.000 +[2025.06.16-10.19.33:968][138]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.33:968][138]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.19.33:968][138]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.19.33:968][138]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.33:968][138]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.19.33:971][138]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.19.33:975][138]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.33:991][138]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.19.33:991][138]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.16-10.19.33:991][138]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.16-10.19.33:993][138]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.16-10.19.33:997][138]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.33:999][138]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.19.34:037][140]LogPlayLevel: Display: Destroying online subsystem :Context_35 +[2025.06.16-10.19.48:937][895]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.19.50:098][ 4]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.19.50:103][ 4]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.19.50:103][ 4]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.19.50:105][ 4]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.304 ms (total: 37.488 ms) +[2025.06.16-10.19.50:105][ 4]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.19.50:105][ 4]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.19.50:108][ 4]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002356s) +[2025.06.16-10.19.50:108][ 4]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002526s) +[2025.06.16-10.19.50:119][ 4]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.19.50:122][ 4]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.19.50:123][ 4]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.19.50:123][ 4]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.19.50:123][ 4]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.19.50:123][ 4]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.19.50:125][ 4]LogWorldPartition: Display: WorldPartition initialize took 1.131 ms (total: 115.022 ms) +[2025.06.16-10.19.50:125][ 4]LogPlayLevel: PIE: World Init took: (0.002548s) +[2025.06.16-10.19.50:126][ 4]LogAudio: Display: Creating Audio Device: Id: 30, Scope: Unique, Realtime: True +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.19.50:126][ 4]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.19.50:126][ 4]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.19.50:126][ 4]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.19.50:126][ 4]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.19.50:126][ 4]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.19.50:128][ 4]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=30 +[2025.06.16-10.19.50:154][ 4]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=30 +[2025.06.16-10.19.50:157][ 4]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=30 +[2025.06.16-10.19.50:157][ 4]LogInit: FAudioDevice initialized with ID 30. +[2025.06.16-10.19.50:157][ 4]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=30 +[2025.06.16-10.19.50:157][ 4]LogAudio: Display: Audio Device (ID: 30) registered with world 'Dabaza'. +[2025.06.16-10.19.50:157][ 4]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 30 +[2025.06.16-10.19.50:159][ 4]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.19.50:160][ 4]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.19.50 +[2025.06.16-10.19.50:161][ 4]LogWorld: Bringing up level for play took: 0.001237 +[2025.06.16-10.19.50:163][ 4]LogOnline: OSS: Created online subsystem instance for: :Context_36 +[2025.06.16-10.19.50:165][ 4]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.19.50:165][ 4]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.19.50:166][ 4]PIE: Server logged in +[2025.06.16-10.19.50:167][ 4]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.19.50:940][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1081.000 Y=516.000 +[2025.06.16-10.19.58:098][941]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.19.59:088][ 50]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.59:088][ 50]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.19.59:089][ 50]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.19.59:089][ 50]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.59:089][ 50]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.19.59:092][ 50]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.19.59:096][ 50]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.19.59:111][ 50]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.19.59:111][ 50]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 30 +[2025.06.16-10.19.59:111][ 50]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=30 +[2025.06.16-10.19.59:113][ 50]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=30 +[2025.06.16-10.19.59:117][ 50]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.19.59:119][ 50]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.19.59:158][ 52]LogPlayLevel: Display: Destroying online subsystem :Context_36 +[2025.06.16-10.20.01:785][348]LogSlate: Took 0.000807 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-10.20.01:819][348]LogD3D12RHI: Creating RTPSO with 21 shaders (13 cached, 8 new) took 29.22 ms. Compile time 26.56 ms, link time 2.64 ms. +[2025.06.16-10.20.01:829][348]LogD3D12RHI: Creating RTPSO with 15 shaders (0 cached, 15 new) took 39.66 ms. Compile time 29.17 ms, link time 10.47 ms. +[2025.06.16-10.20.01:942][349]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.20.03:705][543]LogStreaming: Display: FlushAsyncLoading(585): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-10.20.03:757][544]LogStreaming: Display: FlushAsyncLoading(586): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-10.20.03:798][545]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_16 +[2025.06.16-10.20.03:876][546]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_17 +[2025.06.16-10.20.06:338][834]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.20.06:343][834]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.20.06:343][834]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.20.06:344][834]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.374 ms (total: 38.862 ms) +[2025.06.16-10.20.06:344][834]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.20.06:377][834]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.20.06:380][834]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002442s) +[2025.06.16-10.20.06:380][834]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002701s) +[2025.06.16-10.20.06:408][834]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.20.06:413][834]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.20.06:414][834]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.20.06:414][834]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.20.06:414][834]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.20.06:414][834]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.20.06:415][834]LogWorldPartition: Display: WorldPartition initialize took 1.069 ms (total: 116.092 ms) +[2025.06.16-10.20.06:415][834]LogPlayLevel: PIE: World Init took: (0.002807s) +[2025.06.16-10.20.06:415][834]LogAudio: Display: Creating Audio Device: Id: 31, Scope: Unique, Realtime: True +[2025.06.16-10.20.06:415][834]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.20.06:416][834]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.20.06:416][834]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.20.06:417][834]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.20.06:417][834]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.20.06:417][834]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.20.06:419][834]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.20.06:450][834]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.20.06:450][834]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.20.06:450][834]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.20.06:450][834]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.20.06:450][834]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=31 +[2025.06.16-10.20.06:451][834]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=31 +[2025.06.16-10.20.06:453][834]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=31 +[2025.06.16-10.20.06:453][834]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=31 +[2025.06.16-10.20.06:453][834]LogInit: FAudioDevice initialized with ID 31. +[2025.06.16-10.20.06:453][834]LogAudio: Display: Audio Device (ID: 31) registered with world 'Dabaza'. +[2025.06.16-10.20.06:453][834]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 31 +[2025.06.16-10.20.06:457][834]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.20.06:457][834]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.20.06 +[2025.06.16-10.20.06:458][834]LogWorld: Bringing up level for play took: 0.001165 +[2025.06.16-10.20.06:460][834]LogOnline: OSS: Created online subsystem instance for: :Context_39 +[2025.06.16-10.20.06:463][834]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.20.06:463][834]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.20.06:464][834]PIE: Server logged in +[2025.06.16-10.20.06:466][834]PIE: Play in editor total start time 0.122 seconds. +[2025.06.16-10.20.08:011][974]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1364.000 Y=750.000 +[2025.06.16-10.20.09:715][135]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_18 +[2025.06.16-10.20.09:768][136]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_19 +[2025.06.16-10.20.10:760][229]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1425.000 Y=751.000 +[2025.06.16-10.20.12:748][415]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.20.12:748][415]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.20.12:749][415]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.20.12:749][415]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.20.12:749][415]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.20.12:752][415]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.20.12:756][415]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.20.12:771][415]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.20.12:772][415]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 31 +[2025.06.16-10.20.12:772][415]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=31 +[2025.06.16-10.20.12:774][415]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=31 +[2025.06.16-10.20.12:778][415]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.20.12:823][416]LogPlayLevel: Display: Destroying online subsystem :Context_39 +[2025.06.16-10.20.15:706][743]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.20.49:788][630]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.20.53:202][ 5]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.20.53:207][ 5]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.20.53:207][ 5]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.20.53:208][ 5]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.190 ms (total: 40.052 ms) +[2025.06.16-10.20.53:208][ 5]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.20.53:208][ 5]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.20.53:211][ 5]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002272s) +[2025.06.16-10.20.53:211][ 5]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002457s) +[2025.06.16-10.20.53:224][ 5]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.20.53:227][ 5]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.20.53:228][ 5]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.20.53:228][ 5]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.20.53:228][ 5]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.20.53:228][ 5]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.20.53:230][ 5]LogWorldPartition: Display: WorldPartition initialize took 1.228 ms (total: 117.321 ms) +[2025.06.16-10.20.53:230][ 5]LogPlayLevel: PIE: World Init took: (0.002691s) +[2025.06.16-10.20.53:231][ 5]LogAudio: Display: Creating Audio Device: Id: 32, Scope: Unique, Realtime: True +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.20.53:231][ 5]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.20.53:231][ 5]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.20.53:231][ 5]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.20.53:231][ 5]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.20.53:231][ 5]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.20.53:233][ 5]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=32 +[2025.06.16-10.20.53:266][ 5]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=32 +[2025.06.16-10.20.53:268][ 5]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=32 +[2025.06.16-10.20.53:268][ 5]LogInit: FAudioDevice initialized with ID 32. +[2025.06.16-10.20.53:268][ 5]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=32 +[2025.06.16-10.20.53:268][ 5]LogAudio: Display: Audio Device (ID: 32) registered with world 'Dabaza'. +[2025.06.16-10.20.53:269][ 5]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 32 +[2025.06.16-10.20.53:271][ 5]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.20.53:272][ 5]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.20.53 +[2025.06.16-10.20.53:272][ 5]LogWorld: Bringing up level for play took: 0.001172 +[2025.06.16-10.20.53:274][ 5]LogOnline: OSS: Created online subsystem instance for: :Context_42 +[2025.06.16-10.20.53:277][ 5]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.20.53:277][ 5]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.20.53:277][ 5]PIE: Server logged in +[2025.06.16-10.20.53:278][ 5]PIE: Play in editor total start time 0.072 seconds. +[2025.06.16-10.20.54:599][151]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1028.000 Y=510.000 +[2025.06.16-10.21.00:848][886]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.00:848][886]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.21.00:848][886]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.21.00:848][886]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.00:848][886]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.21.00:852][886]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.21.00:856][886]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.00:873][886]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.21.00:873][886]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 32 +[2025.06.16-10.21.00:873][886]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=32 +[2025.06.16-10.21.00:875][886]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=32 +[2025.06.16-10.21.00:880][886]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.00:881][886]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.21.00:943][887]LogPlayLevel: Display: Destroying online subsystem :Context_42 +[2025.06.16-10.21.14:071][390]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.21.15:225][487]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.21.15:230][487]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.21.15:230][487]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.21.15:232][487]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.283 ms (total: 41.336 ms) +[2025.06.16-10.21.15:232][487]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.21.15:232][487]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.21.15:234][487]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002198s) +[2025.06.16-10.21.15:234][487]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002349s) +[2025.06.16-10.21.15:248][487]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-10.21.15:252][487]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.21.15:253][487]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.21.15:253][487]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.21.15:253][487]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.21.15:253][487]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.21.15:254][487]LogWorldPartition: Display: WorldPartition initialize took 1.106 ms (total: 118.427 ms) +[2025.06.16-10.21.15:254][487]LogPlayLevel: PIE: World Init took: (0.002525s) +[2025.06.16-10.21.15:255][487]LogAudio: Display: Creating Audio Device: Id: 33, Scope: Unique, Realtime: True +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.21.15:255][487]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.21.15:255][487]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.21.15:255][487]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.21.15:255][487]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.21.15:255][487]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.21.15:257][487]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.21.15:282][487]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.21.15:282][487]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.21.15:282][487]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.21.15:282][487]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.21.15:283][487]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=33 +[2025.06.16-10.21.15:283][487]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=33 +[2025.06.16-10.21.15:285][487]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=33 +[2025.06.16-10.21.15:285][487]LogInit: FAudioDevice initialized with ID 33. +[2025.06.16-10.21.15:285][487]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=33 +[2025.06.16-10.21.15:285][487]LogAudio: Display: Audio Device (ID: 33) registered with world 'Dabaza'. +[2025.06.16-10.21.15:285][487]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 33 +[2025.06.16-10.21.15:288][487]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.21.15:289][487]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.21.15 +[2025.06.16-10.21.15:289][487]LogWorld: Bringing up level for play took: 0.001183 +[2025.06.16-10.21.15:292][487]LogOnline: OSS: Created online subsystem instance for: :Context_43 +[2025.06.16-10.21.15:294][487]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.21.15:294][487]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.21.15:295][487]PIE: Server logged in +[2025.06.16-10.21.15:296][487]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.21.15:956][556]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1051.000 Y=512.000 +[2025.06.16-10.21.18:005][799]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=948.000 Y=511.000 +[2025.06.16-10.21.19:446][970]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1329.000 Y=511.000 +[2025.06.16-10.21.20:698][119]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1432.000 Y=522.000 +[2025.06.16-10.21.23:225][421]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.21.24:438][556]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.24:438][556]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.21.24:438][556]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.21.24:438][556]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.24:438][556]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.21.24:442][556]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.21.24:445][556]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.24:460][556]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.21.24:460][556]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 33 +[2025.06.16-10.21.24:461][556]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=33 +[2025.06.16-10.21.24:462][556]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=33 +[2025.06.16-10.21.24:465][556]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.24:467][556]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.21.24:527][557]LogPlayLevel: Display: Destroying online subsystem :Context_43 +[2025.06.16-10.21.25:912][713]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.21.26:943][820]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.21.26:948][820]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.21.26:948][820]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.21.26:950][820]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.328 ms (total: 42.664 ms) +[2025.06.16-10.21.26:950][820]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.21.26:998][820]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.21.27:002][820]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003784s) +[2025.06.16-10.21.27:002][820]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.004214s) +[2025.06.16-10.21.27:021][820]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.21.27:023][820]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.21.27:024][820]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.21.27:024][820]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.21.27:025][820]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.21.27:025][820]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.21.27:025][820]LogWorldPartition: Display: WorldPartition initialize took 1.098 ms (total: 119.526 ms) +[2025.06.16-10.21.27:026][820]LogPlayLevel: PIE: World Init took: (0.002393s) +[2025.06.16-10.21.27:026][820]LogAudio: Display: Creating Audio Device: Id: 34, Scope: Unique, Realtime: True +[2025.06.16-10.21.27:026][820]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.21.27:026][820]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.21.27:027][820]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.21.27:027][820]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.21.27:027][820]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.21.27:027][820]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.21.27:027][820]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.21.27:027][820]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.21.27:027][820]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.21.27:027][820]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.21.27:027][820]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.21.27:029][820]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.21.27:054][820]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.21.27:054][820]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.21.27:054][820]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.21.27:054][820]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.21.27:054][820]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=34 +[2025.06.16-10.21.27:054][820]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=34 +[2025.06.16-10.21.27:056][820]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=34 +[2025.06.16-10.21.27:057][820]LogInit: FAudioDevice initialized with ID 34. +[2025.06.16-10.21.27:057][820]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=34 +[2025.06.16-10.21.27:057][820]LogAudio: Display: Audio Device (ID: 34) registered with world 'Dabaza'. +[2025.06.16-10.21.27:057][820]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 34 +[2025.06.16-10.21.27:060][820]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.21.27:061][820]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.21.27 +[2025.06.16-10.21.27:062][820]LogWorld: Bringing up level for play took: 0.001177 +[2025.06.16-10.21.27:064][820]LogOnline: OSS: Created online subsystem instance for: :Context_44 +[2025.06.16-10.21.27:066][820]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.21.27:066][820]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.21.27:067][820]PIE: Server logged in +[2025.06.16-10.21.27:069][820]PIE: Play in editor total start time 0.12 seconds. +[2025.06.16-10.21.27:994][903]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1895.000 Y=760.000 +[2025.06.16-10.21.30:610][153]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2263.000 Y=749.000 +[2025.06.16-10.21.32:547][338]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1711.000 Y=752.000 +[2025.06.16-10.21.33:142][394]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2862.922852 +[2025.06.16-10.21.33:425][421]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.21.33:425][421]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2863.195068, Update Interval: 342.630096 +[2025.06.16-10.21.34:395][514]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1775.000 Y=751.000 +[2025.06.16-10.21.34:944][566]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.21.35:819][649]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1747.000 Y=1131.000 +[2025.06.16-10.21.36:937][755]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.21.37:241][784]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1743.000 Y=1132.000 +[2025.06.16-10.21.41:452][185]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2322.000 Y=1132.000 +[2025.06.16-10.21.41:947][232]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.21.46:021][620]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2348.000 Y=1129.000 +[2025.06.16-10.21.46:935][707]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.21.46:947][708]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.21.48:278][831]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.48:278][831]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.21.48:278][831]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.21.48:279][831]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.48:279][831]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.21.48:282][831]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.21.48:285][831]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.21.48:301][831]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.21.48:302][831]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 34 +[2025.06.16-10.21.48:302][831]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=34 +[2025.06.16-10.21.48:303][831]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=34 +[2025.06.16-10.21.48:309][831]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.21.48:359][832]LogPlayLevel: Display: Destroying online subsystem :Context_44 +[2025.06.16-10.21.50:229][ 37]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.21.56:699][775]LogShaderCompilers: Display: ================================================ +[2025.06.16-10.21.56:699][775]LogShaderCompilers: Display: === FShaderJobCache stats === +[2025.06.16-10.21.56:699][775]LogShaderCompilers: Display: Total job queries 192, among them cache hits 6 (3.12%), DDC hits 177 (92.19%), Duplicates 4 (2.08%) +[2025.06.16-10.21.56:699][775]LogShaderCompilers: Display: Tracking 182 distinct input hashes that result in 162 distinct outputs (89.01%) +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: RAM used: 124.67 KiB of 1.60 GiB budget. Usage: 0.01% +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: === Shader Compilation stats === +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Shaders Compiled: 5 +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Jobs assigned 5, completed 5 (100%) +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Time job spent in pending queue: average 0.09 s, longest 0.09 s +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Job execution time: average 5.49 s, max 5.71 s +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Job life time (pending + execution): average 5.58 s, max 5.80 +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Shader code size: average 6.767 KiB, min 4.148 KiB, max 10.125 KiB +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Time at least one job was in flight (either pending or executed): 5.80 s +[2025.06.16-10.21.56:707][775]LogShaderCompilers: Display: Mutex wait stall in FShaderJobCache::SubmitJobs: 0.00% +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Jobs were issued in 5 batches (only local compilation was used), average 1.00 jobs/batch +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Average processing rate: 0.86 jobs/sec +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Total thread time: 1.433 s +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Total thread preprocess time: 2.47 s +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Percentage time preprocessing: 172.36% +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Effective parallelization: 0.25 (times faster than compiling all shaders on one thread). Compare with number of workers: 12 +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Top 5 most expensive shader types by average time: +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: TMaterialCHSFNoLightMapPolicy (compiled 1 times, average 0.55 sec, max 0.55 sec, min 0.55 sec) +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicy (compiled 1 times, average 0.30 sec, max 0.30 sec, min 0.30 sec) +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: FLumenCardPS (compiled 1 times, average 0.20 sec, max 0.20 sec, min 0.20 sec) +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: TBasePassVSFNoLightMapPolicy (compiled 1 times, average 0.19 sec, max 0.19 sec, min 0.19 sec) +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: FLumenCardVS (compiled 1 times, average 0.19 sec, max 0.19 sec, min 0.19 sec) +[2025.06.16-10.21.56:708][775]LogShaderCompilers: Display: Top 5 shader types by total compile time: +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: TMaterialCHSFNoLightMapPolicy - 38.05% of total time (compiled 1 times, average 0.55 sec, max 0.55 sec, min 0.55 sec) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: TBasePassPSFNoLightMapPolicy - 20.87% of total time (compiled 1 times, average 0.30 sec, max 0.30 sec, min 0.30 sec) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: FLumenCardPS - 14.14% of total time (compiled 1 times, average 0.20 sec, max 0.20 sec, min 0.20 sec) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: TBasePassVSFNoLightMapPolicy - 13.54% of total time (compiled 1 times, average 0.19 sec, max 0.19 sec, min 0.19 sec) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: FLumenCardVS - 13.40% of total time (compiled 1 times, average 0.19 sec, max 0.19 sec, min 0.19 sec) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: === Material stats === +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Materials Cooked: 0 +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Materials Translated: 135 +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Material Total Translate Time: 0.06 s +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Material Translation Only: 0.03 s (43%) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Material DDC Serialization Only: 0.00 s (2%) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: Material Cache Hits: 25 (19%) +[2025.06.16-10.21.56:710][775]LogShaderCompilers: Display: ================================================ +[2025.06.16-10.22.28:358][303]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.22.28:751][338]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.22.28:804][338]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-10.22.28:808][338]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-10.22.28:808][338]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-10.22.28:808][338]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-10.22.28:813][338]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-10.22.28:813][338]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect1AFF7A7B404E83E15C4FF38CD5472666.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-10.22.28:823][338]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.756 ms (total: 1.76 sec) +[2025.06.16-10.22.28:885][338]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.22.28:885][338]LogContentValidation: Enabled validators: +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.22.28:885][338]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.22.28:887][338]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-10.22.29:860][440]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.22.29:867][440]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.22.29:867][440]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.22.29:869][440]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.281 ms (total: 43.946 ms) +[2025.06.16-10.22.29:869][440]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.22.29:874][440]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.22.29:877][440]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002572s) +[2025.06.16-10.22.29:877][440]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002754s) +[2025.06.16-10.22.29:890][440]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.22.29:896][440]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.22.29:897][440]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.22.29:897][440]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.22.29:897][440]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.22.29:897][440]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.22.29:898][440]LogWorldPartition: Display: WorldPartition initialize took 1.058 ms (total: 120.584 ms) +[2025.06.16-10.22.29:898][440]LogPlayLevel: PIE: World Init took: (0.002597s) +[2025.06.16-10.22.29:899][440]LogAudio: Display: Creating Audio Device: Id: 35, Scope: Unique, Realtime: True +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.22.29:899][440]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.22.29:899][440]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.22.29:899][440]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.22.29:899][440]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.22.29:899][440]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.22.29:901][440]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.22.29:927][440]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.22.29:928][440]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.22.29:928][440]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.22.29:928][440]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.22.29:928][440]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=35 +[2025.06.16-10.22.29:928][440]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=35 +[2025.06.16-10.22.29:931][440]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=35 +[2025.06.16-10.22.29:931][440]LogInit: FAudioDevice initialized with ID 35. +[2025.06.16-10.22.29:931][440]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=35 +[2025.06.16-10.22.29:931][440]LogAudio: Display: Audio Device (ID: 35) registered with world 'Dabaza'. +[2025.06.16-10.22.29:931][440]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 35 +[2025.06.16-10.22.29:934][440]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.22.29:935][440]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.22.29 +[2025.06.16-10.22.29:935][440]LogWorld: Bringing up level for play took: 0.001455 +[2025.06.16-10.22.29:938][440]LogOnline: OSS: Created online subsystem instance for: :Context_45 +[2025.06.16-10.22.29:940][440]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.22.29:940][440]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.22.29:942][440]PIE: Server logged in +[2025.06.16-10.22.29:943][440]PIE: Play in editor total start time 0.075 seconds. +[2025.06.16-10.22.30:434][490]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=998.000 Y=511.000 +[2025.06.16-10.22.32:191][698]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=950.000 Y=518.000 +[2025.06.16-10.22.33:368][826]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.22.33:368][826]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.22.33:369][826]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.22.33:369][826]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.22.33:369][826]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.22.33:372][826]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.22.33:375][826]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.22.33:391][826]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.22.33:391][826]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 35 +[2025.06.16-10.22.33:391][826]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=35 +[2025.06.16-10.22.33:394][826]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=35 +[2025.06.16-10.22.33:397][826]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.22.33:398][826]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.22.33:457][827]LogPlayLevel: Display: Destroying online subsystem :Context_45 +[2025.06.16-10.22.39:306][478]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.22.40:363][567]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.22.40:368][567]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.22.40:368][567]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.22.40:369][567]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.263 ms (total: 45.210 ms) +[2025.06.16-10.22.40:369][567]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.22.40:373][567]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.22.40:375][567]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002210s) +[2025.06.16-10.22.40:375][567]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002380s) +[2025.06.16-10.22.40:389][567]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.22.40:393][567]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.22.40:394][567]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.22.40:394][567]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.22.40:394][567]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.22.40:394][567]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.22.40:396][567]LogWorldPartition: Display: WorldPartition initialize took 1.125 ms (total: 121.710 ms) +[2025.06.16-10.22.40:396][567]LogPlayLevel: PIE: World Init took: (0.002683s) +[2025.06.16-10.22.40:397][567]LogAudio: Display: Creating Audio Device: Id: 36, Scope: Unique, Realtime: True +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.22.40:397][567]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.22.40:397][567]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.22.40:397][567]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.22.40:397][567]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.22.40:397][567]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.22.40:400][567]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.22.40:425][567]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.22.40:425][567]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.22.40:426][567]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.22.40:426][567]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.22.40:426][567]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=36 +[2025.06.16-10.22.40:426][567]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=36 +[2025.06.16-10.22.40:428][567]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=36 +[2025.06.16-10.22.40:428][567]LogInit: FAudioDevice initialized with ID 36. +[2025.06.16-10.22.40:428][567]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=36 +[2025.06.16-10.22.40:428][567]LogAudio: Display: Audio Device (ID: 36) registered with world 'Dabaza'. +[2025.06.16-10.22.40:428][567]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 36 +[2025.06.16-10.22.40:430][567]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.22.40:432][567]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.22.40 +[2025.06.16-10.22.40:433][567]LogWorld: Bringing up level for play took: 0.001131 +[2025.06.16-10.22.40:435][567]LogOnline: OSS: Created online subsystem instance for: :Context_46 +[2025.06.16-10.22.40:437][567]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.22.40:437][567]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.22.40:437][567]PIE: Server logged in +[2025.06.16-10.22.40:438][567]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-10.22.40:944][617]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=592.000 Y=519.000 +[2025.06.16-10.22.43:678][936]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.22.43:678][936]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.22.43:679][936]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.22.43:679][936]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.22.43:679][936]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.22.43:682][936]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.22.43:685][936]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.22.43:701][936]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.22.43:701][936]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 36 +[2025.06.16-10.22.43:703][936]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=36 +[2025.06.16-10.22.43:704][936]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=36 +[2025.06.16-10.22.43:708][936]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.22.43:709][936]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.22.43:768][937]LogPlayLevel: Display: Destroying online subsystem :Context_46 +[2025.06.16-10.22.49:562][601]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.22.50:684][702]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.22.50:689][702]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.22.50:689][702]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.22.50:690][702]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.209 ms (total: 46.420 ms) +[2025.06.16-10.22.50:691][702]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.22.50:703][702]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.22.50:705][702]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002365s) +[2025.06.16-10.22.50:705][702]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002591s) +[2025.06.16-10.22.50:718][702]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.22.50:724][702]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.22.50:725][702]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.22.50:726][702]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.22.50:726][702]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.22.50:726][702]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.22.50:727][702]LogWorldPartition: Display: WorldPartition initialize took 1.132 ms (total: 122.843 ms) +[2025.06.16-10.22.50:727][702]LogPlayLevel: PIE: World Init took: (0.002576s) +[2025.06.16-10.22.50:727][702]LogAudio: Display: Creating Audio Device: Id: 37, Scope: Unique, Realtime: True +[2025.06.16-10.22.50:727][702]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.22.50:727][702]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.22.50:727][702]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.22.50:727][702]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.22.50:728][702]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.22.50:728][702]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.22.50:728][702]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.22.50:728][702]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.22.50:728][702]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.22.50:728][702]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.22.50:728][702]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.22.50:730][702]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.22.50:754][702]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.22.50:754][702]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.22.50:755][702]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.22.50:755][702]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.22.50:755][702]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=37 +[2025.06.16-10.22.50:755][702]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=37 +[2025.06.16-10.22.50:758][702]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=37 +[2025.06.16-10.22.50:758][702]LogInit: FAudioDevice initialized with ID 37. +[2025.06.16-10.22.50:758][702]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=37 +[2025.06.16-10.22.50:758][702]LogAudio: Display: Audio Device (ID: 37) registered with world 'Dabaza'. +[2025.06.16-10.22.50:758][702]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 37 +[2025.06.16-10.22.50:760][702]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.22.50:761][702]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.22.50 +[2025.06.16-10.22.50:762][702]LogWorld: Bringing up level for play took: 0.001163 +[2025.06.16-10.22.50:764][702]LogOnline: OSS: Created online subsystem instance for: :Context_47 +[2025.06.16-10.22.50:766][702]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.22.50:766][702]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.22.50:767][702]PIE: Server logged in +[2025.06.16-10.22.50:768][702]PIE: Play in editor total start time 0.079 seconds. +[2025.06.16-10.22.51:429][772]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=618.000 Y=515.000 +[2025.06.16-10.22.53:626][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=376.000 Y=511.000 +[2025.06.16-10.22.55:259][229]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=494.000 Y=513.000 +[2025.06.16-10.22.57:330][475]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=555.000 Y=514.000 +[2025.06.16-10.22.58:682][636]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.22.58:740][643]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=511.000 Y=513.000 +[2025.06.16-10.23.00:682][872]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.23.01:258][929]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.23.01:259][929]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.23.01:259][929]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.23.01:259][929]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.23.01:259][929]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.23.01:262][929]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.23.01:266][929]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.23.01:281][929]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.23.01:281][929]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 37 +[2025.06.16-10.23.01:281][929]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=37 +[2025.06.16-10.23.01:284][929]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=37 +[2025.06.16-10.23.01:288][929]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.23.01:289][929]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.23.01:346][930]LogPlayLevel: Display: Destroying online subsystem :Context_47 +[2025.06.16-10.23.14:504][446]LogUObjectHash: Compacting FUObjectHashTables data took 1.02ms +[2025.06.16-10.23.15:601][546]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.23.15:607][546]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.23.15:607][546]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.23.15:609][546]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.314 ms (total: 47.735 ms) +[2025.06.16-10.23.15:609][546]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.23.15:609][546]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.23.15:611][546]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002205s) +[2025.06.16-10.23.15:612][546]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002374s) +[2025.06.16-10.23.15:624][546]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.23.15:628][546]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.23.15:629][546]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.23.15:629][546]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.23.15:630][546]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.23.15:630][546]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.23.15:631][546]LogWorldPartition: Display: WorldPartition initialize took 1.064 ms (total: 123.908 ms) +[2025.06.16-10.23.15:631][546]LogPlayLevel: PIE: World Init took: (0.002433s) +[2025.06.16-10.23.15:631][546]LogAudio: Display: Creating Audio Device: Id: 38, Scope: Unique, Realtime: True +[2025.06.16-10.23.15:631][546]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.23.15:631][546]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.23.15:632][546]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.23.15:632][546]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.23.15:632][546]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.23.15:632][546]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.23.15:632][546]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.23.15:632][546]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.23.15:632][546]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.23.15:632][546]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.23.15:632][546]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.23.15:634][546]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.23.15:661][546]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.23.15:661][546]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.23.15:661][546]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.23.15:662][546]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.23.15:662][546]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=38 +[2025.06.16-10.23.15:662][546]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=38 +[2025.06.16-10.23.15:664][546]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=38 +[2025.06.16-10.23.15:665][546]LogInit: FAudioDevice initialized with ID 38. +[2025.06.16-10.23.15:665][546]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=38 +[2025.06.16-10.23.15:665][546]LogAudio: Display: Audio Device (ID: 38) registered with world 'Dabaza'. +[2025.06.16-10.23.15:665][546]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 38 +[2025.06.16-10.23.15:668][546]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.23.15:669][546]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.23.15 +[2025.06.16-10.23.15:670][546]LogWorld: Bringing up level for play took: 0.001125 +[2025.06.16-10.23.15:672][546]LogOnline: OSS: Created online subsystem instance for: :Context_48 +[2025.06.16-10.23.15:674][546]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.23.15:674][546]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.23.15:674][546]PIE: Server logged in +[2025.06.16-10.23.15:675][546]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.23.16:279][608]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=656.000 Y=511.000 +[2025.06.16-10.23.18:572][879]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=495.000 Y=511.000 +[2025.06.16-10.23.20:687][132]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=542.000 Y=514.000 +[2025.06.16-10.23.23:578][472]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.23.23:578][472]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.23.23:579][472]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.23.23:579][472]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.23.23:579][472]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.23.23:581][472]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.23.23:585][472]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.23.23:601][472]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.23.23:601][472]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 38 +[2025.06.16-10.23.23:601][472]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=38 +[2025.06.16-10.23.23:603][472]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=38 +[2025.06.16-10.23.23:607][472]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.23.23:608][472]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.23.23:666][473]LogPlayLevel: Display: Destroying online subsystem :Context_48 +[2025.06.16-10.23.36:558][997]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText +[2025.06.16-10.23.36:558][997]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_21 +[2025.06.16-10.23.36:567][997]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_22 +[2025.06.16-10.23.43:555][777]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.24.01:916][920]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.24.10:158][822]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.24.10:714][856]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.24.10:775][856]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.24.10:778][856]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.24.10:778][856]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.24.10:778][856]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.24.10:787][856]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.24.10:788][856]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardDF743E2543E7A7044A48E3A743F653DA.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.24.10:798][856]LogFileHelpers: InternalPromptForCheckoutAndSave took 83.645 ms (total: 1.85 sec) +[2025.06.16-10.24.10:851][856]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.24.10:851][856]LogContentValidation: Enabled validators: +[2025.06.16-10.24.10:851][856]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.24.10:851][856]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.24.10:851][856]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.24.10:852][856]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.24.10:852][856]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.24.10:852][856]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.24.10:852][856]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.24.11:705][948]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.24.11:711][948]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.24.11:711][948]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.24.11:712][948]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.207 ms (total: 48.942 ms) +[2025.06.16-10.24.11:712][948]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.24.11:712][948]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.24.11:714][948]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002174s) +[2025.06.16-10.24.11:715][948]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002323s) +[2025.06.16-10.24.11:728][948]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.24.11:731][948]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.24.11:732][948]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.24.11:732][948]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.24.11:733][948]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.24.11:733][948]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.24.11:734][948]LogWorldPartition: Display: WorldPartition initialize took 1.121 ms (total: 125.030 ms) +[2025.06.16-10.24.11:734][948]LogPlayLevel: PIE: World Init took: (0.002489s) +[2025.06.16-10.24.11:734][948]LogAudio: Display: Creating Audio Device: Id: 39, Scope: Unique, Realtime: True +[2025.06.16-10.24.11:734][948]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.24.11:735][948]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.24.11:735][948]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.24.11:735][948]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.24.11:735][948]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.24.11:735][948]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.24.11:737][948]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.24.11:763][948]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.24.11:763][948]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.24.11:763][948]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.24.11:764][948]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.24.11:764][948]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=39 +[2025.06.16-10.24.11:764][948]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=39 +[2025.06.16-10.24.11:766][948]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=39 +[2025.06.16-10.24.11:767][948]LogInit: FAudioDevice initialized with ID 39. +[2025.06.16-10.24.11:767][948]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=39 +[2025.06.16-10.24.11:767][948]LogAudio: Display: Audio Device (ID: 39) registered with world 'Dabaza'. +[2025.06.16-10.24.11:767][948]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 39 +[2025.06.16-10.24.11:769][948]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.24.11:770][948]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.24.11 +[2025.06.16-10.24.11:770][948]LogWorld: Bringing up level for play took: 0.001161 +[2025.06.16-10.24.11:773][948]LogOnline: OSS: Created online subsystem instance for: :Context_51 +[2025.06.16-10.24.11:775][948]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.24.11:775][948]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.24.11:775][948]PIE: Server logged in +[2025.06.16-10.24.11:777][948]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.24.12:171][987]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=652.000 Y=515.000 +[2025.06.16-10.24.13:539][149]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=902.000 Y=513.000 +[2025.06.16-10.24.14:392][251]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1193.000 Y=511.000 +[2025.06.16-10.24.16:501][503]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1271.000 Y=515.000 +[2025.06.16-10.24.18:043][687]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1342.000 Y=512.000 +[2025.06.16-10.24.19:699][885]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.24.20:208][939]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.24.20:208][939]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.24.20:209][939]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.24.20:209][939]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.24.20:209][939]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.24.20:212][939]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.24.20:216][939]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.24.20:231][939]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.24.20:231][939]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 39 +[2025.06.16-10.24.20:231][939]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=39 +[2025.06.16-10.24.20:233][939]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=39 +[2025.06.16-10.24.20:237][939]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.24.20:239][939]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.24.20:300][940]LogPlayLevel: Display: Destroying online subsystem :Context_51 +[2025.06.16-10.24.46:938][ 74]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.24.47:384][112]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.24.47:434][112]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-10.24.47:437][112]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-10.24.47:437][112]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-10.24.47:437][112]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-10.24.47:442][112]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-10.24.47:442][112]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect536200F741186D74190A7EBA0BBD344D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-10.24.47:451][112]LogFileHelpers: InternalPromptForCheckoutAndSave took 68.009 ms (total: 1.91 sec) +[2025.06.16-10.24.47:514][112]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.24.47:514][112]LogContentValidation: Enabled validators: +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.24.47:514][112]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.24.47:516][112]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-10.24.48:342][202]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.24.48:348][202]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.24.48:348][202]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.24.48:349][202]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.197 ms (total: 50.140 ms) +[2025.06.16-10.24.48:349][202]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.24.48:349][202]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.24.48:352][202]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002218s) +[2025.06.16-10.24.48:352][202]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002372s) +[2025.06.16-10.24.48:364][202]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.24.48:369][202]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.24.48:370][202]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.24.48:370][202]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.24.48:371][202]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.24.48:371][202]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.24.48:372][202]LogWorldPartition: Display: WorldPartition initialize took 1.107 ms (total: 126.137 ms) +[2025.06.16-10.24.48:372][202]LogPlayLevel: PIE: World Init took: (0.002646s) +[2025.06.16-10.24.48:372][202]LogAudio: Display: Creating Audio Device: Id: 40, Scope: Unique, Realtime: True +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.24.48:372][202]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.24.48:372][202]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.24.48:372][202]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.24.48:373][202]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.24.48:373][202]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.24.48:375][202]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.24.48:401][202]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.24.48:401][202]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.24.48:401][202]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.24.48:401][202]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.24.48:402][202]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=40 +[2025.06.16-10.24.48:402][202]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=40 +[2025.06.16-10.24.48:404][202]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=40 +[2025.06.16-10.24.48:404][202]LogInit: FAudioDevice initialized with ID 40. +[2025.06.16-10.24.48:404][202]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=40 +[2025.06.16-10.24.48:404][202]LogAudio: Display: Audio Device (ID: 40) registered with world 'Dabaza'. +[2025.06.16-10.24.48:404][202]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 40 +[2025.06.16-10.24.48:407][202]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.24.48:408][202]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.24.48 +[2025.06.16-10.24.48:408][202]LogWorld: Bringing up level for play took: 0.001229 +[2025.06.16-10.24.48:410][202]LogOnline: OSS: Created online subsystem instance for: :Context_52 +[2025.06.16-10.24.48:413][202]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.24.48:413][202]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.24.48:413][202]PIE: Server logged in +[2025.06.16-10.24.48:415][202]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.24.49:090][274]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1044.000 Y=516.000 +[2025.06.16-10.24.50:124][396]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=647.000 Y=513.000 +[2025.06.16-10.24.50:936][493]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.000 Y=513.000 +[2025.06.16-10.24.51:715][586]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=513.000 Y=511.000 +[2025.06.16-10.24.52:307][657]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1054.000 Y=511.000 +[2025.06.16-10.24.53:948][842]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.24.53:948][842]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.24.53:949][842]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.24.53:949][842]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.24.53:949][842]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.24.53:952][842]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.24.53:956][842]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.24.53:974][842]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.24.53:974][842]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 40 +[2025.06.16-10.24.53:974][842]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=40 +[2025.06.16-10.24.53:976][842]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=40 +[2025.06.16-10.24.53:980][842]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.24.53:981][842]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.24.54:041][843]LogPlayLevel: Display: Destroying online subsystem :Context_52 +[2025.06.16-10.25.14:967][253]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.25.16:133][371]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.25.16:138][371]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.25.16:138][371]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.25.16:139][371]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.247 ms (total: 51.387 ms) +[2025.06.16-10.25.16:139][371]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.25.16:139][371]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.25.16:141][371]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002172s) +[2025.06.16-10.25.16:141][371]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002311s) +[2025.06.16-10.25.16:157][371]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.25.16:160][371]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.25.16:161][371]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.25.16:161][371]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.25.16:162][371]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.25.16:162][371]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.25.16:162][371]LogWorldPartition: Display: WorldPartition initialize took 1.152 ms (total: 127.290 ms) +[2025.06.16-10.25.16:163][371]LogPlayLevel: PIE: World Init took: (0.002630s) +[2025.06.16-10.25.16:163][371]LogAudio: Display: Creating Audio Device: Id: 41, Scope: Unique, Realtime: True +[2025.06.16-10.25.16:163][371]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.25.16:163][371]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.25.16:163][371]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.25.16:163][371]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.25.16:163][371]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.25.16:164][371]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.25.16:164][371]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.25.16:164][371]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.25.16:164][371]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.25.16:164][371]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.25.16:164][371]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.25.16:166][371]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.25.16:191][371]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.25.16:191][371]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.25.16:191][371]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.25.16:191][371]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.25.16:192][371]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=41 +[2025.06.16-10.25.16:192][371]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=41 +[2025.06.16-10.25.16:195][371]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=41 +[2025.06.16-10.25.16:195][371]LogInit: FAudioDevice initialized with ID 41. +[2025.06.16-10.25.16:195][371]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=41 +[2025.06.16-10.25.16:195][371]LogAudio: Display: Audio Device (ID: 41) registered with world 'Dabaza'. +[2025.06.16-10.25.16:195][371]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 41 +[2025.06.16-10.25.16:197][371]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.25.16:198][371]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.25.16 +[2025.06.16-10.25.16:199][371]LogWorld: Bringing up level for play took: 0.001249 +[2025.06.16-10.25.16:202][371]LogOnline: OSS: Created online subsystem instance for: :Context_53 +[2025.06.16-10.25.16:204][371]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.25.16:204][371]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.25.16:204][371]PIE: Server logged in +[2025.06.16-10.25.16:205][371]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.25.16:963][451]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1073.000 Y=512.000 +[2025.06.16-10.25.19:995][813]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1057.000 Y=512.000 +[2025.06.16-10.25.22:128][ 59]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.25.22:128][ 59]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.25.22:128][ 59]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.25.22:128][ 59]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.25.22:128][ 59]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.25.22:132][ 59]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.25.22:135][ 59]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.25.22:154][ 59]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.25.22:154][ 59]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 41 +[2025.06.16-10.25.22:154][ 59]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=41 +[2025.06.16-10.25.22:156][ 59]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=41 +[2025.06.16-10.25.22:158][ 59]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.25.22:161][ 59]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.25.22:221][ 60]LogPlayLevel: Display: Destroying online subsystem :Context_53 +[2025.06.16-10.25.29:506][896]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.25.30:845][ 32]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.25.30:850][ 32]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.25.30:850][ 32]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.25.30:852][ 32]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.291 ms (total: 52.679 ms) +[2025.06.16-10.25.30:852][ 32]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.25.30:852][ 32]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.25.30:854][ 32]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002212s) +[2025.06.16-10.25.30:854][ 32]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002343s) +[2025.06.16-10.25.30:867][ 32]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.25.30:870][ 32]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.25.30:872][ 32]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.25.30:872][ 32]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.25.30:872][ 32]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.25.30:872][ 32]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.25.30:873][ 32]LogWorldPartition: Display: WorldPartition initialize took 1.115 ms (total: 128.406 ms) +[2025.06.16-10.25.30:873][ 32]LogPlayLevel: PIE: World Init took: (0.002578s) +[2025.06.16-10.25.30:873][ 32]LogAudio: Display: Creating Audio Device: Id: 42, Scope: Unique, Realtime: True +[2025.06.16-10.25.30:873][ 32]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.25.30:873][ 32]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.25.30:874][ 32]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.25.30:874][ 32]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.25.30:874][ 32]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.25.30:874][ 32]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.25.30:874][ 32]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.25.30:874][ 32]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.25.30:874][ 32]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.25.30:874][ 32]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.25.30:874][ 32]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.25.30:876][ 32]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=42 +[2025.06.16-10.25.30:902][ 32]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=42 +[2025.06.16-10.25.30:905][ 32]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=42 +[2025.06.16-10.25.30:905][ 32]LogInit: FAudioDevice initialized with ID 42. +[2025.06.16-10.25.30:905][ 32]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=42 +[2025.06.16-10.25.30:905][ 32]LogAudio: Display: Audio Device (ID: 42) registered with world 'Dabaza'. +[2025.06.16-10.25.30:905][ 32]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 42 +[2025.06.16-10.25.30:908][ 32]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.25.30:909][ 32]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.25.30 +[2025.06.16-10.25.30:909][ 32]LogWorld: Bringing up level for play took: 0.001165 +[2025.06.16-10.25.30:912][ 32]LogOnline: OSS: Created online subsystem instance for: :Context_54 +[2025.06.16-10.25.30:914][ 32]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.25.30:914][ 32]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.25.30:914][ 32]PIE: Server logged in +[2025.06.16-10.25.30:915][ 32]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-10.25.31:463][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1236.000 Y=511.000 +[2025.06.16-10.25.33:139][284]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=984.000 Y=510.000 +[2025.06.16-10.25.34:281][418]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1036.000 Y=510.000 +[2025.06.16-10.25.36:366][663]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1074.000 Y=512.000 +[2025.06.16-10.25.37:083][748]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1123.000 Y=510.000 +[2025.06.16-10.25.37:722][823]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1203.000 Y=512.000 +[2025.06.16-10.25.38:357][898]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1338.000 Y=516.000 +[2025.06.16-10.25.38:839][955]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.25.39:176][995]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1402.000 Y=514.000 +[2025.06.16-10.25.40:012][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1347.000 Y=516.000 +[2025.06.16-10.25.40:844][192]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.25.40:895][198]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1330.000 Y=512.000 +[2025.06.16-10.25.41:755][301]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1246.000 Y=525.000 +[2025.06.16-10.25.42:457][384]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1039.000 Y=526.000 +[2025.06.16-10.25.43:099][460]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=880.000 Y=511.000 +[2025.06.16-10.25.43:852][549]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=574.000 Y=511.000 +[2025.06.16-10.25.44:622][640]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1069.000 Y=511.000 +[2025.06.16-10.25.45:287][718]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.000 Y=510.000 +[2025.06.16-10.25.45:738][772]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=408.000 Y=519.000 +[2025.06.16-10.25.45:849][785]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.25.46:510][864]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=204.000 Y=527.000 +[2025.06.16-10.25.47:302][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=407.000 Y=523.000 +[2025.06.16-10.25.48:059][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1111.000 Y=512.000 +[2025.06.16-10.25.48:883][146]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.000 Y=510.000 +[2025.06.16-10.25.49:775][253]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=191.000 Y=522.000 +[2025.06.16-10.25.50:274][312]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=326.000 Y=545.000 +[2025.06.16-10.25.50:483][337]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=568.000 Y=514.000 +[2025.06.16-10.25.50:844][380]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.25.50:844][380]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.25.52:148][529]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.25.52:148][529]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.25.52:149][529]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.25.52:149][529]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.25.52:149][529]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.25.52:152][529]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.25.52:156][529]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.25.52:174][529]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.25.52:174][529]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 42 +[2025.06.16-10.25.52:174][529]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=42 +[2025.06.16-10.25.52:176][529]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=42 +[2025.06.16-10.25.52:179][529]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.25.52:181][529]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.25.52:241][530]LogPlayLevel: Display: Destroying online subsystem :Context_54 +[2025.06.16-10.25.55:225][877]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.25.55:231][877]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.25.55:231][877]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.25.55:232][877]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.219 ms (total: 53.898 ms) +[2025.06.16-10.25.55:232][877]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.25.55:232][877]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.25.55:234][877]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002155s) +[2025.06.16-10.25.55:234][877]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002316s) +[2025.06.16-10.25.55:245][877]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.25.55:248][877]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.25.55:249][877]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.25.55:249][877]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.25.55:249][877]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.25.55:249][877]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.25.55:251][877]LogWorldPartition: Display: WorldPartition initialize took 1.105 ms (total: 129.511 ms) +[2025.06.16-10.25.55:251][877]LogPlayLevel: PIE: World Init took: (0.002613s) +[2025.06.16-10.25.55:251][877]LogAudio: Display: Creating Audio Device: Id: 43, Scope: Unique, Realtime: True +[2025.06.16-10.25.55:251][877]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.25.55:251][877]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.25.55:252][877]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.25.55:252][877]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.25.55:252][877]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.25.55:252][877]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.25.55:252][877]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.25.55:252][877]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.25.55:252][877]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.25.55:252][877]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.25.55:252][877]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.25.55:254][877]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.25.55:279][877]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.25.55:279][877]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.25.55:279][877]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.25.55:279][877]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.25.55:279][877]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=43 +[2025.06.16-10.25.55:279][877]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=43 +[2025.06.16-10.25.55:282][877]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=43 +[2025.06.16-10.25.55:282][877]LogInit: FAudioDevice initialized with ID 43. +[2025.06.16-10.25.55:282][877]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=43 +[2025.06.16-10.25.55:282][877]LogAudio: Display: Audio Device (ID: 43) registered with world 'Dabaza'. +[2025.06.16-10.25.55:282][877]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 43 +[2025.06.16-10.25.55:284][877]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.25.55:285][877]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.25.55 +[2025.06.16-10.25.55:285][877]LogWorld: Bringing up level for play took: 0.001205 +[2025.06.16-10.25.55:288][877]LogOnline: OSS: Created online subsystem instance for: :Context_55 +[2025.06.16-10.25.55:290][877]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.25.55:290][877]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.25.55:291][877]PIE: Server logged in +[2025.06.16-10.25.55:292][877]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-10.25.55:727][921]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1091.000 Y=510.000 +[2025.06.16-10.25.57:660][149]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1035.000 Y=511.000 +[2025.06.16-10.26.00:058][429]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.26.00:058][429]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.26.00:058][429]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.26.00:059][429]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.26.00:059][429]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.26.00:062][429]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.26.00:066][429]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.26.00:081][429]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.26.00:082][429]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 43 +[2025.06.16-10.26.00:082][429]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=43 +[2025.06.16-10.26.00:084][429]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=43 +[2025.06.16-10.26.00:090][429]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.26.00:153][430]LogPlayLevel: Display: Destroying online subsystem :Context_55 +[2025.06.16-10.26.05:981][ 99]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.26.05:987][ 99]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.26.05:987][ 99]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.26.05:988][ 99]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.348 ms (total: 55.247 ms) +[2025.06.16-10.26.05:988][ 99]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.26.05:989][ 99]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.26.05:991][ 99]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002227s) +[2025.06.16-10.26.05:991][ 99]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002366s) +[2025.06.16-10.26.06:003][ 99]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.26.06:004][ 99]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.26.06:006][ 99]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.26.06:006][ 99]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.26.06:006][ 99]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.26.06:006][ 99]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.26.06:007][ 99]LogWorldPartition: Display: WorldPartition initialize took 1.097 ms (total: 130.608 ms) +[2025.06.16-10.26.06:007][ 99]LogPlayLevel: PIE: World Init took: (0.002448s) +[2025.06.16-10.26.06:008][ 99]LogAudio: Display: Creating Audio Device: Id: 44, Scope: Unique, Realtime: True +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.26.06:008][ 99]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.26.06:008][ 99]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.26.06:008][ 99]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.26.06:008][ 99]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.26.06:008][ 99]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.26.06:010][ 99]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.26.06:035][ 99]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.26.06:035][ 99]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.26.06:035][ 99]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.26.06:035][ 99]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.26.06:037][ 99]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=44 +[2025.06.16-10.26.06:037][ 99]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=44 +[2025.06.16-10.26.06:039][ 99]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=44 +[2025.06.16-10.26.06:039][ 99]LogInit: FAudioDevice initialized with ID 44. +[2025.06.16-10.26.06:039][ 99]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=44 +[2025.06.16-10.26.06:039][ 99]LogAudio: Display: Audio Device (ID: 44) registered with world 'Dabaza'. +[2025.06.16-10.26.06:039][ 99]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 44 +[2025.06.16-10.26.06:041][ 99]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.26.06:042][ 99]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.26.06 +[2025.06.16-10.26.06:044][ 99]LogWorld: Bringing up level for play took: 0.001197 +[2025.06.16-10.26.06:045][ 99]LogOnline: OSS: Created online subsystem instance for: :Context_56 +[2025.06.16-10.26.06:048][ 99]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.26.06:048][ 99]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.26.06:048][ 99]PIE: Server logged in +[2025.06.16-10.26.06:049][ 99]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-10.26.06:634][160]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=163.000 Y=510.000 +[2025.06.16-10.26.07:697][283]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.000 Y=510.000 +[2025.06.16-10.26.08:673][399]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=96.000 Y=553.000 +[2025.06.16-10.26.09:955][549]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=101.000 Y=511.000 +[2025.06.16-10.26.12:038][795]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.000 Y=593.000 +[2025.06.16-10.26.13:167][929]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.000 Y=596.000 +[2025.06.16-10.26.13:975][ 25]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.26.14:244][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.000 Y=597.000 +[2025.06.16-10.26.15:094][158]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.000 Y=599.000 +[2025.06.16-10.26.15:979][263]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.26.16:231][293]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.000 Y=601.000 +[2025.06.16-10.26.17:112][398]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=97.000 Y=602.000 +[2025.06.16-10.26.18:549][558]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.26.18:549][558]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.26.18:549][558]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.26.18:550][558]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.26.18:550][558]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.26.18:554][558]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.26.18:558][558]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.26.18:576][558]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.26.18:576][558]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 44 +[2025.06.16-10.26.18:576][558]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=44 +[2025.06.16-10.26.18:579][558]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=44 +[2025.06.16-10.26.18:584][558]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.16-10.26.18:646][559]LogPlayLevel: Display: Destroying online subsystem :Context_56 +[2025.06.16-10.27.05:284][931]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.27.06:578][ 44]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.27.06:583][ 44]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.27.06:583][ 44]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.27.06:584][ 44]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.330 ms (total: 56.577 ms) +[2025.06.16-10.27.06:584][ 44]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.27.06:585][ 44]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.27.06:587][ 44]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002527s) +[2025.06.16-10.27.06:587][ 44]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002701s) +[2025.06.16-10.27.06:601][ 44]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.27.06:605][ 44]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.27.06:606][ 44]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.27.06:606][ 44]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.27.06:606][ 44]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.27.06:607][ 44]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.27.06:607][ 44]LogWorldPartition: Display: WorldPartition initialize took 1.005 ms (total: 131.613 ms) +[2025.06.16-10.27.06:607][ 44]LogPlayLevel: PIE: World Init took: (0.002491s) +[2025.06.16-10.27.06:608][ 44]LogAudio: Display: Creating Audio Device: Id: 45, Scope: Unique, Realtime: True +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.27.06:608][ 44]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.27.06:608][ 44]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.27.06:609][ 44]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.27.06:609][ 44]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.27.06:609][ 44]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.27.06:611][ 44]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.27.06:638][ 44]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.27.06:638][ 44]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.27.06:638][ 44]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.27.06:638][ 44]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.27.06:639][ 44]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=45 +[2025.06.16-10.27.06:639][ 44]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=45 +[2025.06.16-10.27.06:641][ 44]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=45 +[2025.06.16-10.27.06:641][ 44]LogInit: FAudioDevice initialized with ID 45. +[2025.06.16-10.27.06:641][ 44]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=45 +[2025.06.16-10.27.06:641][ 44]LogAudio: Display: Audio Device (ID: 45) registered with world 'Dabaza'. +[2025.06.16-10.27.06:641][ 44]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 45 +[2025.06.16-10.27.06:643][ 44]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.27.06:644][ 44]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.27.06 +[2025.06.16-10.27.06:644][ 44]LogWorld: Bringing up level for play took: 0.001133 +[2025.06.16-10.27.06:647][ 44]LogOnline: OSS: Created online subsystem instance for: :Context_57 +[2025.06.16-10.27.06:650][ 44]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.27.06:650][ 44]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.27.06:650][ 44]PIE: Server logged in +[2025.06.16-10.27.06:651][ 44]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.27.07:267][108]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=845.000 Y=510.000 +[2025.06.16-10.27.07:963][188]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=986.000 Y=510.000 +[2025.06.16-10.27.08:599][264]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1122.000 Y=518.000 +[2025.06.16-10.27.10:098][436]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.27.10:098][436]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.27.10:099][436]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.27.10:099][436]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.27.10:099][436]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.27.10:102][436]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.27.10:105][436]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.27.10:123][436]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.27.10:123][436]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 45 +[2025.06.16-10.27.10:124][436]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=45 +[2025.06.16-10.27.10:125][436]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=45 +[2025.06.16-10.27.10:129][436]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.27.10:130][436]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-10.27.10:193][437]LogPlayLevel: Display: Destroying online subsystem :Context_57 +[2025.06.16-10.27.15:872][ 58]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.27.16:308][ 94]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.27.16:361][ 94]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-10.27.16:364][ 94]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-10.27.16:364][ 94]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-10.27.16:364][ 94]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-10.27.16:368][ 94]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-10.27.16:369][ 94]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffect0F5B41C44B9F871BD6A5DBBCC0A6C9C2.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-10.27.16:381][ 94]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.958 ms (total: 1.99 sec) +[2025.06.16-10.27.16:438][ 94]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.27.16:438][ 94]LogContentValidation: Enabled validators: +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.27.16:438][ 94]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.27.16:438][ 94]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-10.27.17:268][176]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.27.17:274][176]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.27.17:274][176]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.27.17:275][176]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.322 ms (total: 57.899 ms) +[2025.06.16-10.27.17:276][176]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.27.17:276][176]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.27.17:278][176]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002239s) +[2025.06.16-10.27.17:278][176]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002382s) +[2025.06.16-10.27.17:295][176]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.27.17:299][176]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.27.17:301][176]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.27.17:301][176]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.27.17:301][176]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.27.17:301][176]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.27.17:302][176]LogWorldPartition: Display: WorldPartition initialize took 1.312 ms (total: 132.925 ms) +[2025.06.16-10.27.17:302][176]LogPlayLevel: PIE: World Init took: (0.002926s) +[2025.06.16-10.27.17:302][176]LogAudio: Display: Creating Audio Device: Id: 46, Scope: Unique, Realtime: True +[2025.06.16-10.27.17:302][176]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.27.17:303][176]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.27.17:303][176]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.27.17:303][176]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.27.17:303][176]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.27.17:304][176]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.27.17:306][176]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.27.17:330][176]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.27.17:330][176]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.27.17:330][176]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.27.17:330][176]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.27.17:330][176]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=46 +[2025.06.16-10.27.17:330][176]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=46 +[2025.06.16-10.27.17:334][176]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=46 +[2025.06.16-10.27.17:334][176]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=46 +[2025.06.16-10.27.17:334][176]LogInit: FAudioDevice initialized with ID 46. +[2025.06.16-10.27.17:334][176]LogAudio: Display: Audio Device (ID: 46) registered with world 'Dabaza'. +[2025.06.16-10.27.17:334][176]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 46 +[2025.06.16-10.27.17:335][176]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.27.17:337][176]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.27.17 +[2025.06.16-10.27.17:338][176]LogWorld: Bringing up level for play took: 0.001174 +[2025.06.16-10.27.17:340][176]LogOnline: OSS: Created online subsystem instance for: :Context_58 +[2025.06.16-10.27.17:342][176]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.27.17:342][176]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.27.17:343][176]PIE: Server logged in +[2025.06.16-10.27.17:344][176]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-10.27.17:747][215]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1015.000 Y=515.000 +[2025.06.16-10.27.18:478][300]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=818.000 Y=510.000 +[2025.06.16-10.27.18:969][359]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=759.000 Y=516.000 +[2025.06.16-10.27.19:162][382]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=566.000 Y=517.000 +[2025.06.16-10.27.19:853][464]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=411.000 Y=512.000 +[2025.06.16-10.27.20:648][558]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.000 Y=510.000 +[2025.06.16-10.27.21:521][663]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=467.000 Y=512.000 +[2025.06.16-10.27.21:983][718]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=408.000 Y=511.000 +[2025.06.16-10.27.22:048][726]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=317.000 Y=598.000 +[2025.06.16-10.27.22:611][793]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=419.000 Y=718.000 +[2025.06.16-10.27.23:334][879]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=317.000 Y=663.000 +[2025.06.16-10.27.24:259][990]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=321.000 Y=627.000 +[2025.06.16-10.27.25:199][102]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=312.000 Y=601.000 +[2025.06.16-10.27.25:264][110]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.27.26:034][202]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=320.000 Y=575.000 +[2025.06.16-10.27.26:620][272]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=317.000 Y=567.000 +[2025.06.16-10.27.27:144][335]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=323.000 Y=553.000 +[2025.06.16-10.27.27:263][349]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.27.28:211][462]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=802.000 Y=511.000 +[2025.06.16-10.27.29:296][591]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=953.000 Y=512.000 +[2025.06.16-10.27.30:199][698]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=968.000 Y=510.000 +[2025.06.16-10.27.31:139][810]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1213.000 Y=718.000 +[2025.06.16-10.27.32:074][922]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1147.000 Y=718.000 +[2025.06.16-10.27.32:268][945]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.27.33:298][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1098.000 Y=718.000 +[2025.06.16-10.27.34:148][170]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=950.000 Y=718.000 +[2025.06.16-10.27.35:235][300]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=747.000 Y=592.000 +[2025.06.16-10.27.36:858][494]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=649.000 Y=510.000 +[2025.06.16-10.27.37:268][543]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.27.37:268][543]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.27.38:966][746]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=315.000 Y=553.000 +[2025.06.16-10.27.39:268][782]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.27.39:269][782]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-10.27.40:098][871]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.27.40:098][871]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.27.40:099][871]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.27.40:099][871]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.27.40:099][871]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.27.40:103][871]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.27.40:107][871]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.27.40:124][871]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.27.40:124][871]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 46 +[2025.06.16-10.27.40:125][871]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=46 +[2025.06.16-10.27.40:127][871]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=46 +[2025.06.16-10.27.40:130][871]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.27.40:132][871]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.27.40:193][872]LogPlayLevel: Display: Destroying online subsystem :Context_58 +[2025.06.16-10.28.02:942][300]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.28.03:922][384]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.28.03:982][384]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.28.03:984][384]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.28.03:984][384]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.28.03:984][384]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.28.03:996][384]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.28.03:996][384]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardB517966F4C2EB16E751BC19A0CFAEEE6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.28.04:009][384]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.943 ms (total: 2.07 sec) +[2025.06.16-10.28.04:064][384]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.28.04:064][384]LogContentValidation: Enabled validators: +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.28.04:064][384]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.28.04:065][384]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.28.04:964][477]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.28.04:969][477]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.28.04:969][477]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.28.04:970][477]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.338 ms (total: 59.238 ms) +[2025.06.16-10.28.04:970][477]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.28.04:970][477]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.28.04:973][477]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002223s) +[2025.06.16-10.28.04:973][477]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002375s) +[2025.06.16-10.28.04:985][477]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.28.04:989][477]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.28.04:991][477]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.28.04:991][477]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.28.04:991][477]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.28.04:991][477]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.28.04:992][477]LogWorldPartition: Display: WorldPartition initialize took 992 us (total: 133.918 ms) +[2025.06.16-10.28.04:992][477]LogPlayLevel: PIE: World Init took: (0.002419s) +[2025.06.16-10.28.04:992][477]LogAudio: Display: Creating Audio Device: Id: 47, Scope: Unique, Realtime: True +[2025.06.16-10.28.04:992][477]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.28.04:992][477]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.28.04:993][477]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.28.04:993][477]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.28.04:993][477]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.28.04:993][477]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.28.04:993][477]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.28.04:993][477]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.28.04:993][477]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.28.04:993][477]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.28.04:993][477]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.28.04:995][477]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.28.05:021][477]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.28.05:021][477]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.28.05:021][477]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.28.05:022][477]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.28.05:022][477]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=47 +[2025.06.16-10.28.05:022][477]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=47 +[2025.06.16-10.28.05:024][477]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=47 +[2025.06.16-10.28.05:024][477]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=47 +[2025.06.16-10.28.05:024][477]LogInit: FAudioDevice initialized with ID 47. +[2025.06.16-10.28.05:024][477]LogAudio: Display: Audio Device (ID: 47) registered with world 'Dabaza'. +[2025.06.16-10.28.05:024][477]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 47 +[2025.06.16-10.28.05:027][477]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.28.05:028][477]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.28.05 +[2025.06.16-10.28.05:029][477]LogWorld: Bringing up level for play took: 0.001241 +[2025.06.16-10.28.05:031][477]LogOnline: OSS: Created online subsystem instance for: :Context_59 +[2025.06.16-10.28.05:032][477]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.28.05:032][477]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.28.05:034][477]PIE: Server logged in +[2025.06.16-10.28.05:035][477]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.28.05:042][477]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:042][477]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:042][477]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:058][478]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:058][478]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:059][478]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:119][479]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:119][479]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:119][479]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:131][480]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:131][480]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:131][480]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:140][481]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:140][481]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:140][481]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:151][482]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:151][482]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:151][482]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:160][483]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:161][483]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:161][483]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:170][484]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:170][484]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:170][484]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:177][485]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:178][485]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:178][485]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:187][486]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:187][486]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:187][486]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:196][487]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:196][487]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:196][487]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:204][488]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:204][488]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:205][488]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:215][489]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:215][489]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:215][489]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:224][490]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:225][490]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:225][490]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:233][491]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:233][491]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:233][491]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:241][492]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:241][492]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:241][492]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:249][493]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:249][493]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:250][493]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:257][494]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:258][494]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:258][494]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:268][495]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:268][495]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:268][495]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:280][496]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:280][496]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:280][496]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:289][497]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:289][497]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:289][497]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:298][498]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:299][498]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:299][498]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:310][499]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:310][499]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:310][499]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:320][500]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:320][500]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:320][500]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:329][501]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:330][501]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:330][501]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:341][502]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:341][502]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:341][502]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:349][503]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:350][503]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:350][503]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:360][504]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:360][504]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:360][504]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:369][505]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:369][505]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:369][505]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:377][506]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:377][506]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:377][506]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:387][507]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:387][507]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:387][507]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:395][508]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=0.000 Y=0.000 +[2025.06.16-10.28.05:395][508]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=0.000 Y=0.000 +[2025.06.16-10.28.05:395][508]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=0.000 Y=0.000 +[2025.06.16-10.28.05:404][509]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=646.840 Y=0.000 +[2025.06.16-10.28.05:404][509]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=646.840 Y=0.000 +[2025.06.16-10.28.05:404][509]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=646.840 Y=0.000 +[2025.06.16-10.28.05:412][510]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=638.273 Y=5.712 +[2025.06.16-10.28.05:412][510]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=638.273 Y=5.712 +[2025.06.16-10.28.05:412][510]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=638.273 Y=5.712 +[2025.06.16-10.28.05:420][511]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=632.561 Y=9.995 +[2025.06.16-10.28.05:420][511]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=632.561 Y=9.995 +[2025.06.16-10.28.05:420][511]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=632.561 Y=9.995 +[2025.06.16-10.28.05:428][512]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=626.849 Y=14.279 +[2025.06.16-10.28.05:428][512]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=626.849 Y=14.279 +[2025.06.16-10.28.05:428][512]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=626.849 Y=14.279 +[2025.06.16-10.28.05:437][513]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=618.282 Y=21.419 +[2025.06.16-10.28.05:437][513]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=618.282 Y=21.419 +[2025.06.16-10.28.05:438][513]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=618.282 Y=21.419 +[2025.06.16-10.28.05:445][514]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=611.142 Y=27.130 +[2025.06.16-10.28.05:445][514]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=611.142 Y=27.130 +[2025.06.16-10.28.05:446][514]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=611.142 Y=27.130 +[2025.06.16-10.28.05:455][515]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=608.287 Y=29.986 +[2025.06.16-10.28.05:455][515]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=608.287 Y=29.986 +[2025.06.16-10.28.05:455][515]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=608.287 Y=29.986 +[2025.06.16-10.28.05:463][516]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=598.291 Y=37.125 +[2025.06.16-10.28.05:463][516]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=598.291 Y=37.125 +[2025.06.16-10.28.05:463][516]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=598.291 Y=37.125 +[2025.06.16-10.28.05:471][517]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=592.580 Y=42.837 +[2025.06.16-10.28.05:471][517]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=592.580 Y=42.837 +[2025.06.16-10.28.05:471][517]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=592.580 Y=42.837 +[2025.06.16-10.28.05:481][518]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=586.868 Y=47.121 +[2025.06.16-10.28.05:481][518]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=586.868 Y=47.121 +[2025.06.16-10.28.05:481][518]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=586.868 Y=47.121 +[2025.06.16-10.28.05:488][519]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=581.156 Y=52.832 +[2025.06.16-10.28.05:488][519]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=581.156 Y=52.832 +[2025.06.16-10.28.05:488][519]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=581.156 Y=52.832 +[2025.06.16-10.28.05:498][520]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=575.445 Y=57.116 +[2025.06.16-10.28.05:498][520]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=575.445 Y=57.116 +[2025.06.16-10.28.05:498][520]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=575.445 Y=57.116 +[2025.06.16-10.28.05:507][521]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=571.161 Y=62.828 +[2025.06.16-10.28.05:507][521]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=571.161 Y=62.828 +[2025.06.16-10.28.05:507][521]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=571.161 Y=62.828 +[2025.06.16-10.28.05:515][522]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=564.022 Y=71.395 +[2025.06.16-10.28.05:516][522]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=564.022 Y=71.395 +[2025.06.16-10.28.05:516][522]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=564.022 Y=71.395 +[2025.06.16-10.28.05:523][523]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=559.738 Y=77.107 +[2025.06.16-10.28.05:523][523]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=559.738 Y=77.107 +[2025.06.16-10.28.05:523][523]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=559.738 Y=77.107 +[2025.06.16-10.28.05:532][524]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=556.882 Y=84.246 +[2025.06.16-10.28.05:532][524]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=556.882 Y=84.246 +[2025.06.16-10.28.05:532][524]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=556.882 Y=84.246 +[2025.06.16-10.28.05:540][525]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=554.026 Y=87.102 +[2025.06.16-10.28.05:541][525]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=554.026 Y=87.102 +[2025.06.16-10.28.05:541][525]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=554.026 Y=87.102 +[2025.06.16-10.28.05:548][526]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=552.598 Y=91.386 +[2025.06.16-10.28.05:548][526]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=552.598 Y=91.386 +[2025.06.16-10.28.05:548][526]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=552.598 Y=91.386 +[2025.06.16-10.28.05:558][527]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=551.170 Y=95.669 +[2025.06.16-10.28.05:558][527]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=551.170 Y=95.669 +[2025.06.16-10.28.05:558][527]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=551.170 Y=95.669 +[2025.06.16-10.28.05:566][528]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=97.097 +[2025.06.16-10.28.05:566][528]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=97.097 +[2025.06.16-10.28.05:566][528]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=97.097 +[2025.06.16-10.28.05:574][529]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:575][529]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:575][529]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:583][530]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:583][530]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:583][530]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:592][531]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:593][531]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:593][531]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:600][532]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:600][532]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:600][532]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:608][533]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:608][533]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:608][533]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:617][534]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:617][534]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:617][534]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:625][535]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:625][535]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:625][535]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:634][536]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:634][536]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:634][536]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:642][537]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:642][537]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:643][537]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:651][538]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:651][538]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:651][538]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:659][539]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:659][539]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:659][539]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:668][540]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:668][540]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:668][540]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:675][541]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:677][541]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:677][541]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:684][542]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:684][542]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:685][542]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:693][543]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:693][543]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:693][543]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:701][544]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:701][544]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:701][544]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:709][545]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:709][545]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:709][545]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:717][546]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:717][546]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:717][546]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:727][547]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:727][547]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:727][547]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:735][548]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:735][548]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:735][548]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:743][549]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:743][549]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:743][549]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:751][550]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:751][550]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:751][550]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:760][551]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:760][551]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:760][551]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:769][552]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:770][552]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:770][552]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:777][553]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:777][553]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:777][553]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:785][554]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:785][554]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:785][554]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:794][555]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:794][555]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:794][555]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:803][556]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:803][556]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:803][556]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:810][557]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:810][557]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:810][557]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:819][558]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:819][558]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:819][558]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:829][559]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:829][559]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:829][559]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:838][560]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:838][560]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:838][560]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:845][561]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:845][561]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:845][561]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:854][562]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=99.953 +[2025.06.16-10.28.05:854][562]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=99.953 +[2025.06.16-10.28.05:854][562]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=99.953 +[2025.06.16-10.28.05:862][563]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:862][563]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:862][563]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:871][564]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:871][564]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:871][564]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:879][565]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:879][565]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:879][565]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:888][566]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:888][566]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:888][566]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:897][567]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:897][567]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:897][567]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:905][568]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:905][568]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:905][568]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:913][569]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:913][569]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:913][569]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:922][570]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:922][570]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:922][570]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:929][571]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:930][571]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:930][571]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:938][572]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:938][572]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:938][572]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:947][573]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:947][573]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:947][573]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:955][574]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:955][574]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:955][574]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:963][575]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:964][575]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:964][575]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:982][576]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:982][576]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:982][576]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:990][577]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:990][577]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:990][577]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.05:999][578]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.05:999][578]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.05:999][578]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.06:007][579]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.06:007][579]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.06:007][579]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.06:015][580]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.06:017][580]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.06:017][580]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.06:025][581]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=549.743 Y=98.525 +[2025.06.16-10.28.06:025][581]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=549.743 Y=98.525 +[2025.06.16-10.28.06:025][581]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=549.743 Y=98.525 +[2025.06.16-10.28.06:033][582]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=548.315 Y=98.525 +[2025.06.16-10.28.06:033][582]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=548.315 Y=98.525 +[2025.06.16-10.28.06:033][582]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=548.315 Y=98.525 +[2025.06.16-10.28.06:042][583]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=545.459 Y=97.097 +[2025.06.16-10.28.06:042][583]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=545.459 Y=97.097 +[2025.06.16-10.28.06:042][583]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=545.459 Y=97.097 +[2025.06.16-10.28.06:051][584]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=544.031 Y=97.097 +[2025.06.16-10.28.06:051][584]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=544.031 Y=97.097 +[2025.06.16-10.28.06:051][584]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=544.031 Y=97.097 +[2025.06.16-10.28.06:059][585]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=538.319 Y=95.669 +[2025.06.16-10.28.06:059][585]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=538.319 Y=95.669 +[2025.06.16-10.28.06:059][585]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=538.319 Y=95.669 +[2025.06.16-10.28.06:067][586]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=534.036 Y=95.669 +[2025.06.16-10.28.06:067][586]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=534.036 Y=95.669 +[2025.06.16-10.28.06:067][586]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=534.036 Y=95.669 +[2025.06.16-10.28.06:075][587]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=528.324 Y=95.669 +[2025.06.16-10.28.06:075][587]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=528.324 Y=95.669 +[2025.06.16-10.28.06:075][587]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=528.324 Y=95.669 +[2025.06.16-10.28.06:084][588]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=519.757 Y=95.669 +[2025.06.16-10.28.06:084][588]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=519.757 Y=95.669 +[2025.06.16-10.28.06:084][588]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=519.757 Y=95.669 +[2025.06.16-10.28.06:094][589]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=512.617 Y=95.669 +[2025.06.16-10.28.06:094][589]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=512.617 Y=95.669 +[2025.06.16-10.28.06:094][589]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=512.617 Y=95.669 +[2025.06.16-10.28.06:102][590]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=504.050 Y=95.669 +[2025.06.16-10.28.06:102][590]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=504.050 Y=95.669 +[2025.06.16-10.28.06:103][590]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=504.050 Y=95.669 +[2025.06.16-10.28.06:111][591]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=486.915 Y=95.669 +[2025.06.16-10.28.06:111][591]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=486.915 Y=95.669 +[2025.06.16-10.28.06:111][591]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=486.915 Y=95.669 +[2025.06.16-10.28.06:120][592]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=474.064 Y=95.669 +[2025.06.16-10.28.06:120][592]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=474.064 Y=95.669 +[2025.06.16-10.28.06:120][592]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=474.064 Y=95.669 +[2025.06.16-10.28.06:128][593]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=458.357 Y=95.669 +[2025.06.16-10.28.06:128][593]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=458.357 Y=95.669 +[2025.06.16-10.28.06:128][593]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=458.357 Y=95.669 +[2025.06.16-10.28.06:136][594]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=442.650 Y=94.242 +[2025.06.16-10.28.06:137][594]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=442.650 Y=94.242 +[2025.06.16-10.28.06:137][594]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=442.650 Y=94.242 +[2025.06.16-10.28.06:145][595]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=416.948 Y=91.386 +[2025.06.16-10.28.06:145][595]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=416.948 Y=91.386 +[2025.06.16-10.28.06:145][595]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=416.948 Y=91.386 +[2025.06.16-10.28.06:153][596]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=408.380 Y=89.958 +[2025.06.16-10.28.06:153][596]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=408.380 Y=89.958 +[2025.06.16-10.28.06:153][596]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=408.380 Y=89.958 +[2025.06.16-10.28.06:162][597]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=384.106 Y=87.102 +[2025.06.16-10.28.06:163][597]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=384.106 Y=87.102 +[2025.06.16-10.28.06:163][597]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=384.106 Y=87.102 +[2025.06.16-10.28.06:170][598]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=369.827 Y=85.674 +[2025.06.16-10.28.06:170][598]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=369.827 Y=85.674 +[2025.06.16-10.28.06:170][598]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=369.827 Y=85.674 +[2025.06.16-10.28.06:179][599]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=362.687 Y=85.674 +[2025.06.16-10.28.06:179][599]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=362.687 Y=85.674 +[2025.06.16-10.28.06:179][599]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=362.687 Y=85.674 +[2025.06.16-10.28.06:187][600]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=345.552 Y=82.818 +[2025.06.16-10.28.06:187][600]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=345.552 Y=82.818 +[2025.06.16-10.28.06:187][600]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=345.552 Y=82.818 +[2025.06.16-10.28.06:197][601]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=332.701 Y=81.390 +[2025.06.16-10.28.06:197][601]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=332.701 Y=81.390 +[2025.06.16-10.28.06:197][601]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=332.701 Y=81.390 +[2025.06.16-10.28.06:205][602]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=322.706 Y=79.963 +[2025.06.16-10.28.06:205][602]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=322.706 Y=79.963 +[2025.06.16-10.28.06:206][602]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=322.706 Y=79.963 +[2025.06.16-10.28.06:213][603]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=78.535 +[2025.06.16-10.28.06:213][603]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=78.535 +[2025.06.16-10.28.06:213][603]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=78.535 +[2025.06.16-10.28.06:223][604]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=299.860 Y=78.535 +[2025.06.16-10.28.06:223][604]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=299.860 Y=78.535 +[2025.06.16-10.28.06:223][604]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=299.860 Y=78.535 +[2025.06.16-10.28.06:230][605]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=295.576 Y=77.107 +[2025.06.16-10.28.06:231][605]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=295.576 Y=77.107 +[2025.06.16-10.28.06:231][605]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=295.576 Y=77.107 +[2025.06.16-10.28.06:239][606]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=282.725 Y=74.251 +[2025.06.16-10.28.06:240][606]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=282.725 Y=74.251 +[2025.06.16-10.28.06:240][606]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=282.725 Y=74.251 +[2025.06.16-10.28.06:247][607]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=274.157 Y=74.251 +[2025.06.16-10.28.06:247][607]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=274.157 Y=74.251 +[2025.06.16-10.28.06:247][607]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=274.157 Y=74.251 +[2025.06.16-10.28.06:255][608]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=267.018 Y=72.823 +[2025.06.16-10.28.06:255][608]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=267.018 Y=72.823 +[2025.06.16-10.28.06:255][608]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=267.018 Y=72.823 +[2025.06.16-10.28.06:264][609]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=261.306 Y=71.395 +[2025.06.16-10.28.06:264][609]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=261.306 Y=71.395 +[2025.06.16-10.28.06:264][609]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=261.306 Y=71.395 +[2025.06.16-10.28.06:272][610]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=255.595 Y=69.967 +[2025.06.16-10.28.06:273][610]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=255.595 Y=69.967 +[2025.06.16-10.28.06:273][610]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=255.595 Y=69.967 +[2025.06.16-10.28.06:282][611]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=251.311 Y=69.967 +[2025.06.16-10.28.06:282][611]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=251.311 Y=69.967 +[2025.06.16-10.28.06:282][611]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=251.311 Y=69.967 +[2025.06.16-10.28.06:290][612]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=245.599 Y=69.967 +[2025.06.16-10.28.06:290][612]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=245.599 Y=69.967 +[2025.06.16-10.28.06:291][612]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=245.599 Y=69.967 +[2025.06.16-10.28.06:299][613]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=68.539 +[2025.06.16-10.28.06:299][613]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=68.539 +[2025.06.16-10.28.06:299][613]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=68.539 +[2025.06.16-10.28.06:307][614]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=68.539 +[2025.06.16-10.28.06:307][614]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=68.539 +[2025.06.16-10.28.06:307][614]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=68.539 +[2025.06.16-10.28.06:315][615]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=68.539 +[2025.06.16-10.28.06:317][615]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=68.539 +[2025.06.16-10.28.06:317][615]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=68.539 +[2025.06.16-10.28.06:324][616]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=67.111 +[2025.06.16-10.28.06:324][616]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=67.111 +[2025.06.16-10.28.06:324][616]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=67.111 +[2025.06.16-10.28.06:334][617]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.892 Y=67.111 +[2025.06.16-10.28.06:334][617]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=229.892 Y=67.111 +[2025.06.16-10.28.06:334][617]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=229.892 Y=67.111 +[2025.06.16-10.28.06:343][618]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=65.684 +[2025.06.16-10.28.06:343][618]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=65.684 +[2025.06.16-10.28.06:344][618]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=65.684 +[2025.06.16-10.28.06:351][619]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=65.684 +[2025.06.16-10.28.06:351][619]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=65.684 +[2025.06.16-10.28.06:351][619]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=65.684 +[2025.06.16-10.28.06:359][620]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=64.256 +[2025.06.16-10.28.06:359][620]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=64.256 +[2025.06.16-10.28.06:359][620]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=64.256 +[2025.06.16-10.28.06:368][621]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.753 Y=64.256 +[2025.06.16-10.28.06:368][621]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=222.753 Y=64.256 +[2025.06.16-10.28.06:368][621]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=222.753 Y=64.256 +[2025.06.16-10.28.06:378][622]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=64.256 +[2025.06.16-10.28.06:378][622]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=64.256 +[2025.06.16-10.28.06:378][622]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=64.256 +[2025.06.16-10.28.06:385][623]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=62.828 +[2025.06.16-10.28.06:385][623]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=62.828 +[2025.06.16-10.28.06:385][623]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=62.828 +[2025.06.16-10.28.06:394][624]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=217.041 Y=61.400 +[2025.06.16-10.28.06:395][624]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=217.041 Y=61.400 +[2025.06.16-10.28.06:395][624]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=217.041 Y=61.400 +[2025.06.16-10.28.06:403][625]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=215.613 Y=59.972 +[2025.06.16-10.28.06:403][625]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=215.613 Y=59.972 +[2025.06.16-10.28.06:403][625]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=215.613 Y=59.972 +[2025.06.16-10.28.06:412][626]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=212.758 Y=59.972 +[2025.06.16-10.28.06:412][626]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=212.758 Y=59.972 +[2025.06.16-10.28.06:412][626]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=212.758 Y=59.972 +[2025.06.16-10.28.06:421][627]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=211.330 Y=58.544 +[2025.06.16-10.28.06:421][627]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=211.330 Y=58.544 +[2025.06.16-10.28.06:421][627]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=211.330 Y=58.544 +[2025.06.16-10.28.06:429][628]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=207.046 Y=55.688 +[2025.06.16-10.28.06:429][628]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=207.046 Y=55.688 +[2025.06.16-10.28.06:429][628]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=207.046 Y=55.688 +[2025.06.16-10.28.06:438][629]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=205.618 Y=55.688 +[2025.06.16-10.28.06:438][629]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=205.618 Y=55.688 +[2025.06.16-10.28.06:438][629]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=205.618 Y=55.688 +[2025.06.16-10.28.06:445][630]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=199.906 Y=52.832 +[2025.06.16-10.28.06:445][630]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=199.906 Y=52.832 +[2025.06.16-10.28.06:445][630]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=199.906 Y=52.832 +[2025.06.16-10.28.06:454][631]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=197.051 Y=51.404 +[2025.06.16-10.28.06:454][631]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=197.051 Y=51.404 +[2025.06.16-10.28.06:454][631]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=197.051 Y=51.404 +[2025.06.16-10.28.06:463][632]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=194.195 Y=51.404 +[2025.06.16-10.28.06:463][632]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=194.195 Y=51.404 +[2025.06.16-10.28.06:463][632]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=194.195 Y=51.404 +[2025.06.16-10.28.06:471][633]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=189.911 Y=48.549 +[2025.06.16-10.28.06:471][633]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=189.911 Y=48.549 +[2025.06.16-10.28.06:471][633]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=189.911 Y=48.549 +[2025.06.16-10.28.06:480][634]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=188.483 Y=45.693 +[2025.06.16-10.28.06:480][634]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=188.483 Y=45.693 +[2025.06.16-10.28.06:480][634]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=188.483 Y=45.693 +[2025.06.16-10.28.06:488][635]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=185.627 Y=45.693 +[2025.06.16-10.28.06:489][635]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=185.627 Y=45.693 +[2025.06.16-10.28.06:489][635]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=185.627 Y=45.693 +[2025.06.16-10.28.06:497][636]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=182.772 Y=42.837 +[2025.06.16-10.28.06:497][636]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=182.772 Y=42.837 +[2025.06.16-10.28.06:497][636]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=182.772 Y=42.837 +[2025.06.16-10.28.06:505][637]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=181.344 Y=41.409 +[2025.06.16-10.28.06:505][637]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=181.344 Y=41.409 +[2025.06.16-10.28.06:505][637]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=181.344 Y=41.409 +[2025.06.16-10.28.06:513][638]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=179.916 Y=39.981 +[2025.06.16-10.28.06:513][638]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=179.916 Y=39.981 +[2025.06.16-10.28.06:514][638]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=179.916 Y=39.981 +[2025.06.16-10.28.06:522][639]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=177.060 Y=38.553 +[2025.06.16-10.28.06:522][639]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=177.060 Y=38.553 +[2025.06.16-10.28.06:522][639]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=177.060 Y=38.553 +[2025.06.16-10.28.06:530][640]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=174.204 Y=37.125 +[2025.06.16-10.28.06:530][640]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=174.204 Y=37.125 +[2025.06.16-10.28.06:530][640]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=174.204 Y=37.125 +[2025.06.16-10.28.06:538][641]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=172.776 Y=35.698 +[2025.06.16-10.28.06:539][641]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=172.776 Y=35.698 +[2025.06.16-10.28.06:539][641]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=172.776 Y=35.698 +[2025.06.16-10.28.06:548][642]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=171.348 Y=34.270 +[2025.06.16-10.28.06:548][642]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=171.348 Y=34.270 +[2025.06.16-10.28.06:548][642]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=171.348 Y=34.270 +[2025.06.16-10.28.06:557][643]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=169.920 Y=34.270 +[2025.06.16-10.28.06:557][643]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=169.920 Y=34.270 +[2025.06.16-10.28.06:557][643]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=169.920 Y=34.270 +[2025.06.16-10.28.06:566][644]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=167.065 Y=32.842 +[2025.06.16-10.28.06:566][644]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=167.065 Y=32.842 +[2025.06.16-10.28.06:566][644]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=167.065 Y=32.842 +[2025.06.16-10.28.06:573][645]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=165.637 Y=32.842 +[2025.06.16-10.28.06:573][645]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=165.637 Y=32.842 +[2025.06.16-10.28.06:573][645]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=165.637 Y=32.842 +[2025.06.16-10.28.06:582][646]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=165.637 Y=31.414 +[2025.06.16-10.28.06:582][646]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=165.637 Y=31.414 +[2025.06.16-10.28.06:582][646]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=165.637 Y=31.414 +[2025.06.16-10.28.06:591][647]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=165.637 Y=29.986 +[2025.06.16-10.28.06:591][647]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=165.637 Y=29.986 +[2025.06.16-10.28.06:591][647]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=165.637 Y=29.986 +[2025.06.16-10.28.06:600][648]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=164.209 Y=29.986 +[2025.06.16-10.28.06:600][648]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=164.209 Y=29.986 +[2025.06.16-10.28.06:600][648]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=164.209 Y=29.986 +[2025.06.16-10.28.06:608][649]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=164.209 Y=29.986 +[2025.06.16-10.28.06:608][649]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=164.209 Y=29.986 +[2025.06.16-10.28.06:608][649]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=164.209 Y=29.986 +[2025.06.16-10.28.06:618][650]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=162.781 Y=28.558 +[2025.06.16-10.28.06:618][650]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=162.781 Y=28.558 +[2025.06.16-10.28.06:620][650]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=162.781 Y=28.558 +[2025.06.16-10.28.06:627][651]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=161.353 Y=28.558 +[2025.06.16-10.28.06:627][651]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=161.353 Y=28.558 +[2025.06.16-10.28.06:627][651]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=161.353 Y=28.558 +[2025.06.16-10.28.06:636][652]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=161.353 Y=27.130 +[2025.06.16-10.28.06:636][652]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=161.353 Y=27.130 +[2025.06.16-10.28.06:637][652]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=161.353 Y=27.130 +[2025.06.16-10.28.06:644][653]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=159.925 Y=27.130 +[2025.06.16-10.28.06:644][653]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=159.925 Y=27.130 +[2025.06.16-10.28.06:644][653]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=159.925 Y=27.130 +[2025.06.16-10.28.06:652][654]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=159.925 Y=25.702 +[2025.06.16-10.28.06:652][654]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=159.925 Y=25.702 +[2025.06.16-10.28.06:652][654]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=159.925 Y=25.702 +[2025.06.16-10.28.06:661][655]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=158.497 Y=24.274 +[2025.06.16-10.28.06:661][655]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=158.497 Y=24.274 +[2025.06.16-10.28.06:661][655]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=158.497 Y=24.274 +[2025.06.16-10.28.06:670][656]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=157.069 Y=24.274 +[2025.06.16-10.28.06:670][656]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=157.069 Y=24.274 +[2025.06.16-10.28.06:670][656]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=157.069 Y=24.274 +[2025.06.16-10.28.06:678][657]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=155.641 Y=24.274 +[2025.06.16-10.28.06:678][657]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=155.641 Y=24.274 +[2025.06.16-10.28.06:678][657]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=155.641 Y=24.274 +[2025.06.16-10.28.06:687][658]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=155.641 Y=22.846 +[2025.06.16-10.28.06:687][658]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=155.641 Y=22.846 +[2025.06.16-10.28.06:687][658]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=155.641 Y=22.846 +[2025.06.16-10.28.06:695][659]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=154.213 Y=22.846 +[2025.06.16-10.28.06:695][659]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=154.213 Y=22.846 +[2025.06.16-10.28.06:695][659]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=154.213 Y=22.846 +[2025.06.16-10.28.06:704][660]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=154.213 Y=21.419 +[2025.06.16-10.28.06:705][660]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=154.213 Y=21.419 +[2025.06.16-10.28.06:705][660]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=154.213 Y=21.419 +[2025.06.16-10.28.06:712][661]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=152.786 Y=21.419 +[2025.06.16-10.28.06:712][661]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=152.786 Y=21.419 +[2025.06.16-10.28.06:712][661]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=152.786 Y=21.419 +[2025.06.16-10.28.06:720][662]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=152.786 Y=19.991 +[2025.06.16-10.28.06:720][662]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=152.786 Y=19.991 +[2025.06.16-10.28.06:720][662]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=152.786 Y=19.991 +[2025.06.16-10.28.06:728][663]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=151.358 Y=18.563 +[2025.06.16-10.28.06:729][663]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=151.358 Y=18.563 +[2025.06.16-10.28.06:729][663]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=151.358 Y=18.563 +[2025.06.16-10.28.06:737][664]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=149.930 Y=18.563 +[2025.06.16-10.28.06:738][664]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=149.930 Y=18.563 +[2025.06.16-10.28.06:738][664]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=149.930 Y=18.563 +[2025.06.16-10.28.06:745][665]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=149.930 Y=17.135 +[2025.06.16-10.28.06:746][665]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=149.930 Y=17.135 +[2025.06.16-10.28.06:746][665]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=149.930 Y=17.135 +[2025.06.16-10.28.06:755][666]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=148.502 Y=17.135 +[2025.06.16-10.28.06:755][666]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=148.502 Y=17.135 +[2025.06.16-10.28.06:755][666]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=148.502 Y=17.135 +[2025.06.16-10.28.06:763][667]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=148.502 Y=17.135 +[2025.06.16-10.28.06:763][667]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=148.502 Y=17.135 +[2025.06.16-10.28.06:763][667]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=148.502 Y=17.135 +[2025.06.16-10.28.06:771][668]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:771][668]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:771][668]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:779][669]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:779][669]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:780][669]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:788][670]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:788][670]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:788][670]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:795][671]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:795][671]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:795][671]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:804][672]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:804][672]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:804][672]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:813][673]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:813][673]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:813][673]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:821][674]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:821][674]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:821][674]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:829][675]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:829][675]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:829][675]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:838][676]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:838][676]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:838][676]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:845][677]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:845][677]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:845][677]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:854][678]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=17.135 +[2025.06.16-10.28.06:854][678]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=17.135 +[2025.06.16-10.28.06:854][678]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=17.135 +[2025.06.16-10.28.06:863][679]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=15.707 +[2025.06.16-10.28.06:863][679]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=15.707 +[2025.06.16-10.28.06:863][679]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=15.707 +[2025.06.16-10.28.06:872][680]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=15.707 +[2025.06.16-10.28.06:872][680]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=15.707 +[2025.06.16-10.28.06:872][680]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=15.707 +[2025.06.16-10.28.06:881][681]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=15.707 +[2025.06.16-10.28.06:881][681]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=15.707 +[2025.06.16-10.28.06:881][681]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=15.707 +[2025.06.16-10.28.06:889][682]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=15.707 +[2025.06.16-10.28.06:889][682]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=15.707 +[2025.06.16-10.28.06:889][682]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=15.707 +[2025.06.16-10.28.06:897][683]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=15.707 +[2025.06.16-10.28.06:898][683]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=15.707 +[2025.06.16-10.28.06:898][683]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=15.707 +[2025.06.16-10.28.06:905][684]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=15.707 +[2025.06.16-10.28.06:905][684]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=15.707 +[2025.06.16-10.28.06:907][684]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=15.707 +[2025.06.16-10.28.06:914][685]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=14.279 +[2025.06.16-10.28.06:915][685]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=14.279 +[2025.06.16-10.28.06:915][685]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=14.279 +[2025.06.16-10.28.06:922][686]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=14.279 +[2025.06.16-10.28.06:924][686]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=14.279 +[2025.06.16-10.28.06:924][686]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=14.279 +[2025.06.16-10.28.06:933][687]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=145.646 Y=14.279 +[2025.06.16-10.28.06:933][687]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=145.646 Y=14.279 +[2025.06.16-10.28.06:933][687]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=145.646 Y=14.279 +[2025.06.16-10.28.06:940][688]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=144.218 Y=12.851 +[2025.06.16-10.28.06:940][688]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=144.218 Y=12.851 +[2025.06.16-10.28.06:940][688]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=144.218 Y=12.851 +[2025.06.16-10.28.06:948][689]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=142.790 Y=12.851 +[2025.06.16-10.28.06:948][689]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=142.790 Y=12.851 +[2025.06.16-10.28.06:948][689]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=142.790 Y=12.851 +[2025.06.16-10.28.06:957][690]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=142.790 Y=11.423 +[2025.06.16-10.28.06:958][690]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=142.790 Y=11.423 +[2025.06.16-10.28.06:958][690]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=142.790 Y=11.423 +[2025.06.16-10.28.06:965][691]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=142.790 Y=11.423 +[2025.06.16-10.28.06:965][691]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=142.790 Y=11.423 +[2025.06.16-10.28.06:965][691]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=142.790 Y=11.423 +[2025.06.16-10.28.06:974][692]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=142.790 Y=11.423 +[2025.06.16-10.28.06:974][692]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=142.790 Y=11.423 +[2025.06.16-10.28.06:974][692]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=142.790 Y=11.423 +[2025.06.16-10.28.06:982][693]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.06:982][693]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.06:982][693]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.06:990][694]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.06:991][694]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.06:991][694]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.06:999][695]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.06:999][695]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.06:999][695]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:007][696]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:007][696]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:007][696]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:017][697]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:017][697]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:017][697]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:025][698]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:025][698]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:025][698]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:034][699]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:034][699]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:034][699]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:044][700]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:045][700]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:045][700]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:052][701]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:052][701]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:052][701]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:060][702]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:060][702]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:060][702]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:068][703]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:068][703]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:068][703]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:077][704]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:078][704]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:078][704]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:085][705]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:085][705]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:086][705]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:093][706]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:093][706]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:093][706]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:102][707]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:103][707]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:103][707]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:110][708]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:110][708]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:110][708]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:118][709]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:118][709]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:118][709]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:127][710]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:127][710]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:127][710]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:135][711]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:135][711]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:135][711]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:143][712]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=9.995 +[2025.06.16-10.28.07:144][712]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=9.995 +[2025.06.16-10.28.07:144][712]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=9.995 +[2025.06.16-10.28.07:152][713]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=9.995 +[2025.06.16-10.28.07:152][713]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=9.995 +[2025.06.16-10.28.07:152][713]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=9.995 +[2025.06.16-10.28.07:161][714]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:161][714]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:161][714]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:169][715]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:169][715]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:169][715]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:177][716]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:177][716]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:177][716]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:186][717]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:186][717]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:186][717]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:193][718]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:193][718]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:193][718]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:202][719]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:202][719]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:202][719]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:210][720]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:210][720]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:211][720]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:220][721]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:220][721]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:220][721]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:228][722]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:228][722]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:228][722]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:236][723]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:236][723]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:236][723]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:244][724]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:244][724]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:245][724]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:252][725]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:253][725]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:253][725]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:262][726]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=8.567 +[2025.06.16-10.28.07:262][726]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=8.567 +[2025.06.16-10.28.07:262][726]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=8.567 +[2025.06.16-10.28.07:270][727]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=7.140 +[2025.06.16-10.28.07:270][727]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=7.140 +[2025.06.16-10.28.07:270][727]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=7.140 +[2025.06.16-10.28.07:278][728]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=7.140 +[2025.06.16-10.28.07:278][728]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=7.140 +[2025.06.16-10.28.07:278][728]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=7.140 +[2025.06.16-10.28.07:285][729]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.507 Y=7.140 +[2025.06.16-10.28.07:287][729]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=138.507 Y=7.140 +[2025.06.16-10.28.07:287][729]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=138.507 Y=7.140 +[2025.06.16-10.28.07:294][730]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.507 Y=7.140 +[2025.06.16-10.28.07:294][730]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=138.507 Y=7.140 +[2025.06.16-10.28.07:294][730]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=138.507 Y=7.140 +[2025.06.16-10.28.07:303][731]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.507 Y=7.140 +[2025.06.16-10.28.07:304][731]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=138.507 Y=7.140 +[2025.06.16-10.28.07:304][731]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=138.507 Y=7.140 +[2025.06.16-10.28.07:312][732]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.507 Y=7.140 +[2025.06.16-10.28.07:312][732]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=138.507 Y=7.140 +[2025.06.16-10.28.07:312][732]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=138.507 Y=7.140 +[2025.06.16-10.28.07:320][733]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=138.507 Y=7.140 +[2025.06.16-10.28.07:321][733]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=138.507 Y=7.140 +[2025.06.16-10.28.07:321][733]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=138.507 Y=7.140 +[2025.06.16-10.28.07:329][734]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=7.140 +[2025.06.16-10.28.07:330][734]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=7.140 +[2025.06.16-10.28.07:330][734]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=7.140 +[2025.06.16-10.28.07:337][735]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:337][735]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:337][735]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:347][736]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:347][736]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:347][736]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:356][737]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:356][737]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:356][737]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:365][738]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:365][738]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:365][738]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:372][739]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:372][739]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:372][739]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:381][740]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:382][740]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:382][740]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:389][741]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:390][741]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:390][741]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:398][742]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:398][742]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:398][742]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:405][743]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:405][743]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:405][743]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:414][744]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:414][744]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:414][744]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:423][745]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:423][745]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:423][745]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:431][746]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:431][746]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:431][746]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:439][747]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:440][747]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:440][747]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:449][748]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:449][748]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:449][748]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:457][749]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:457][749]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:457][749]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:465][750]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:466][750]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:466][750]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:473][751]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:473][751]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:473][751]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:481][752]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=5.712 +[2025.06.16-10.28.07:482][752]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=5.712 +[2025.06.16-10.28.07:482][752]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=5.712 +[2025.06.16-10.28.07:490][753]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:490][753]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:491][753]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:499][754]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:500][754]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:500][754]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:507][755]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:507][755]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:507][755]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:515][756]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:515][756]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:515][756]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:524][757]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:524][757]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:524][757]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:532][758]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:533][758]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:533][758]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:540][759]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:540][759]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:540][759]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:548][760]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:548][760]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:548][760]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:558][761]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:558][761]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:558][761]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:565][762]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:565][762]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:566][762]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:574][763]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:574][763]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:575][763]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:583][764]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:583][764]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:584][764]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:591][765]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:592][765]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:592][765]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:599][766]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:599][766]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:599][766]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:607][767]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:608][767]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:608][767]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:615][768]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:615][768]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:615][768]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:624][769]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:624][769]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:624][769]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:633][770]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=5.712 +[2025.06.16-10.28.07:633][770]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=5.712 +[2025.06.16-10.28.07:633][770]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=5.712 +[2025.06.16-10.28.07:642][771]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:642][771]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:642][771]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:650][772]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:650][772]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:650][772]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:658][773]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:658][773]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:659][773]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:667][774]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:668][774]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:668][774]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:675][775]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:675][775]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:675][775]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:683][776]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:683][776]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:683][776]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:692][777]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:692][777]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:692][777]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:701][778]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:702][778]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:702][778]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:709][779]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=5.712 +[2025.06.16-10.28.07:709][779]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=5.712 +[2025.06.16-10.28.07:709][779]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=5.712 +[2025.06.16-10.28.07:717][780]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=5.712 +[2025.06.16-10.28.07:717][780]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=5.712 +[2025.06.16-10.28.07:718][780]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=5.712 +[2025.06.16-10.28.07:725][781]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=5.712 +[2025.06.16-10.28.07:725][781]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=5.712 +[2025.06.16-10.28.07:725][781]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=5.712 +[2025.06.16-10.28.07:734][782]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=5.712 +[2025.06.16-10.28.07:734][782]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=5.712 +[2025.06.16-10.28.07:734][782]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=5.712 +[2025.06.16-10.28.07:742][783]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=5.712 +[2025.06.16-10.28.07:742][783]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=5.712 +[2025.06.16-10.28.07:742][783]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=5.712 +[2025.06.16-10.28.07:750][784]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:751][784]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:751][784]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:759][785]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:759][785]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:760][785]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:768][786]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:768][786]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:768][786]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:775][787]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:775][787]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:777][787]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:784][788]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:785][788]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:785][788]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:794][789]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:794][789]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:794][789]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:801][790]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:801][790]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:801][790]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:810][791]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:810][791]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:810][791]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:818][792]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:818][792]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:818][792]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:826][793]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:827][793]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:827][793]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:835][794]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=5.712 +[2025.06.16-10.28.07:835][794]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=5.712 +[2025.06.16-10.28.07:835][794]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=5.712 +[2025.06.16-10.28.07:843][795]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=4.284 +[2025.06.16-10.28.07:844][795]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=4.284 +[2025.06.16-10.28.07:844][795]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=4.284 +[2025.06.16-10.28.07:852][796]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=4.284 +[2025.06.16-10.28.07:852][796]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=4.284 +[2025.06.16-10.28.07:852][796]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=4.284 +[2025.06.16-10.28.07:860][797]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=4.284 +[2025.06.16-10.28.07:860][797]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=4.284 +[2025.06.16-10.28.07:860][797]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=4.284 +[2025.06.16-10.28.07:869][798]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=4.284 +[2025.06.16-10.28.07:869][798]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=4.284 +[2025.06.16-10.28.07:869][798]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=4.284 +[2025.06.16-10.28.07:879][799]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=4.284 +[2025.06.16-10.28.07:879][799]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=4.284 +[2025.06.16-10.28.07:879][799]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=4.284 +[2025.06.16-10.28.07:887][800]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=4.284 +[2025.06.16-10.28.07:887][800]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=4.284 +[2025.06.16-10.28.07:887][800]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=4.284 +[2025.06.16-10.28.07:895][801]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=4.284 +[2025.06.16-10.28.07:895][801]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=4.284 +[2025.06.16-10.28.07:896][801]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=4.284 +[2025.06.16-10.28.07:903][802]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=4.284 +[2025.06.16-10.28.07:903][802]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=4.284 +[2025.06.16-10.28.07:903][802]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=4.284 +[2025.06.16-10.28.07:912][803]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=2.856 +[2025.06.16-10.28.07:912][803]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=2.856 +[2025.06.16-10.28.07:912][803]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=2.856 +[2025.06.16-10.28.07:921][804]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=2.856 +[2025.06.16-10.28.07:921][804]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=2.856 +[2025.06.16-10.28.07:921][804]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=2.856 +[2025.06.16-10.28.07:930][805]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=2.856 +[2025.06.16-10.28.07:930][805]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=2.856 +[2025.06.16-10.28.07:930][805]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=2.856 +[2025.06.16-10.28.07:938][806]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=2.856 +[2025.06.16-10.28.07:938][806]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=2.856 +[2025.06.16-10.28.07:938][806]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=2.856 +[2025.06.16-10.28.07:945][807]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=1.428 +[2025.06.16-10.28.07:945][807]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=1.428 +[2025.06.16-10.28.07:945][807]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=1.428 +[2025.06.16-10.28.07:954][808]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=1.428 +[2025.06.16-10.28.07:955][808]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=1.428 +[2025.06.16-10.28.07:955][808]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=1.428 +[2025.06.16-10.28.07:962][809]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=1.428 +[2025.06.16-10.28.07:963][809]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=1.428 +[2025.06.16-10.28.07:963][809]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=1.428 +[2025.06.16-10.28.07:971][810]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=0.000 +[2025.06.16-10.28.07:971][810]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=0.000 +[2025.06.16-10.28.07:972][810]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=0.000 +[2025.06.16-10.28.07:980][811]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=0.000 +[2025.06.16-10.28.07:980][811]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=0.000 +[2025.06.16-10.28.07:980][811]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=0.000 +[2025.06.16-10.28.07:988][812]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.07:988][812]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.07:988][812]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.07:997][813]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.07:998][813]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.07:998][813]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:006][814]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:006][814]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:006][814]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:015][815]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:015][815]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:015][815]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:023][816]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:023][816]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:023][816]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:030][817]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:030][817]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:030][817]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:040][818]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:040][818]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:040][818]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:049][819]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:049][819]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:049][819]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:057][820]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:057][820]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:057][820]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:065][821]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:065][821]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:065][821]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:074][822]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:074][822]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:074][822]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:081][823]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:081][823]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:081][823]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:091][824]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:091][824]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:091][824]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:098][825]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:098][825]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:098][825]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:107][826]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:107][826]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:107][826]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:117][827]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:117][827]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:117][827]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:124][828]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:125][828]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:125][828]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:133][829]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:133][829]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:133][829]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:142][830]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:142][830]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:142][830]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:150][831]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:150][831]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:150][831]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:157][832]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:157][832]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:157][832]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:165][833]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:167][833]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:167][833]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:175][834]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:175][834]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:175][834]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:183][835]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:183][835]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:183][835]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:192][836]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:192][836]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:192][836]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:200][837]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:201][837]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:201][837]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:209][838]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:209][838]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:209][838]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:219][839]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:219][839]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:219][839]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:227][840]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:228][840]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:228][840]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:238][841]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:238][841]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:238][841]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:247][842]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:247][842]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:247][842]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:255][843]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:255][843]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:257][843]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:265][844]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:265][844]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:265][844]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:273][845]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:274][845]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:274][845]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:282][846]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:282][846]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:282][846]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:290][847]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:291][847]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:291][847]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:299][848]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:299][848]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:299][848]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:307][849]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:307][849]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:307][849]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:317][850]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:317][850]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:317][850]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:325][851]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:325][851]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:325][851]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:333][852]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:333][852]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:333][852]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:341][853]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:341][853]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:341][853]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:349][854]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:349][854]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:349][854]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:358][855]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:358][855]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:358][855]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:365][856]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:367][856]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:367][856]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:375][857]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:375][857]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:375][857]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:383][858]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:383][858]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:383][858]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:391][859]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:392][859]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:392][859]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:400][860]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:400][860]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:400][860]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:408][861]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:408][861]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:408][861]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:417][862]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:417][862]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:417][862]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:425][863]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:425][863]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:425][863]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:432][864]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:434][864]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:434][864]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:442][865]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:442][865]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:442][865]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:450][866]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:450][866]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:450][866]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:458][867]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:459][867]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:459][867]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:467][868]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:467][868]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:467][868]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:475][869]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:475][869]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:475][869]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:483][870]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:484][870]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:484][870]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:491][871]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:492][871]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:492][871]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:501][872]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:501][872]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:501][872]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:509][873]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:510][873]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:510][873]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:519][874]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:519][874]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:519][874]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:527][875]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:528][875]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:528][875]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:537][876]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:537][876]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:537][876]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:545][877]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:545][877]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:545][877]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:552][878]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:552][878]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:553][878]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:561][879]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:561][879]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:561][879]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:569][880]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:570][880]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:570][880]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:578][881]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:578][881]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:578][881]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:585][882]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:587][882]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:587][882]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:594][883]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:594][883]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:594][883]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:603][884]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:603][884]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:603][884]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:611][885]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:611][885]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:611][885]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:620][886]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:620][886]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:620][886]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:629][887]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:629][887]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:629][887]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:637][888]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:637][888]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:637][888]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:645][889]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:645][889]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:645][889]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:653][890]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:653][890]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:653][890]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:662][891]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:662][891]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:662][891]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:670][892]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:670][892]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:670][892]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:678][893]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:678][893]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:678][893]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:687][894]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:687][894]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:687][894]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:695][895]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:695][895]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:695][895]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:704][896]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:704][896]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:704][896]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:712][897]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:712][897]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:712][897]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:721][898]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:721][898]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:721][898]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:729][899]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:729][899]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:729][899]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:737][900]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:737][900]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:737][900]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:746][901]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:746][901]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:746][901]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:753][902]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:754][902]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:754][902]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:763][903]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:763][903]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:763][903]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:770][904]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:770][904]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:770][904]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:779][905]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:780][905]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:780][905]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:788][906]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:788][906]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:788][906]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:797][907]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:797][907]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:797][907]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:804][908]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:804][908]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:804][908]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:813][909]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:813][909]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:813][909]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:821][910]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:821][910]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:821][910]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:830][911]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:830][911]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:830][911]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:838][912]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:839][912]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:839][912]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:847][913]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:847][913]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:847][913]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:855][914]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:855][914]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:855][914]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:863][915]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:863][915]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:864][915]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:871][916]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:871][916]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:872][916]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:880][917]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:880][917]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:880][917]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:889][918]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:889][918]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:889][918]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:897][919]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:897][919]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:897][919]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:905][920]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:905][920]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:905][920]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:913][921]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:914][921]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:914][921]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:922][922]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:922][922]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:922][922]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:930][923]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:930][923]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:930][923]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:938][924]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:938][924]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:938][924]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:947][925]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:947][925]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:947][925]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:955][926]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:957][926]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:957][926]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:964][927]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:964][927]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:964][927]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:972][928]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:972][928]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:973][928]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:981][929]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:981][929]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:981][929]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:989][930]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:990][930]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:990][930]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.08:998][931]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.08:998][931]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.08:999][931]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:006][932]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:006][932]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:007][932]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:014][933]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:014][933]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:014][933]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:023][934]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:023][934]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:023][934]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:032][935]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:032][935]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:033][935]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:040][936]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:040][936]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:040][936]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:048][937]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:048][937]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:048][937]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:057][938]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:058][938]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:058][938]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:065][939]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:065][939]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:065][939]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:074][940]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:074][940]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:074][940]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:082][941]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:082][941]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:082][941]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:091][942]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:091][942]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:091][942]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:099][943]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:099][943]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:100][943]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:107][944]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:107][944]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:107][944]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:116][945]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:116][945]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:116][945]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:124][946]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:124][946]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:124][946]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:132][947]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:132][947]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:132][947]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:141][948]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:141][948]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:141][948]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:149][949]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:149][949]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:149][949]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:158][950]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:158][950]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:158][950]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:167][951]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:167][951]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:167][951]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:175][952]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:175][952]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:175][952]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:183][953]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:183][953]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:183][953]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:191][954]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:191][954]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:192][954]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:200][955]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:200][955]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:200][955]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:209][956]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:209][956]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:209][956]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:216][957]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:217][957]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:217][957]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:226][958]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:226][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:226][958]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:234][959]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:235][959]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:235][959]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:243][960]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:243][960]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:243][960]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:251][961]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:251][961]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:252][961]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:260][962]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:260][962]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:260][962]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:268][963]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:268][963]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:268][963]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:277][964]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:277][964]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:277][964]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:285][965]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:285][965]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:285][965]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:293][966]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:294][966]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:294][966]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:303][967]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:303][967]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:303][967]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:311][968]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:311][968]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:311][968]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:319][969]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=0.000 +[2025.06.16-10.28.09:319][969]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=0.000 +[2025.06.16-10.28.09:320][969]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=0.000 +[2025.06.16-10.28.09:328][970]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=118.516 Y=0.000 +[2025.06.16-10.28.09:328][970]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=118.516 Y=0.000 +[2025.06.16-10.28.09:328][970]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=118.516 Y=0.000 +[2025.06.16-10.28.09:337][971]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=117.088 Y=0.000 +[2025.06.16-10.28.09:337][971]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=117.088 Y=0.000 +[2025.06.16-10.28.09:337][971]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=117.088 Y=0.000 +[2025.06.16-10.28.09:345][972]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=115.660 Y=1.428 +[2025.06.16-10.28.09:345][972]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=115.660 Y=1.428 +[2025.06.16-10.28.09:345][972]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=115.660 Y=1.428 +[2025.06.16-10.28.09:354][973]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=112.804 Y=1.428 +[2025.06.16-10.28.09:354][973]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=112.804 Y=1.428 +[2025.06.16-10.28.09:354][973]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=112.804 Y=1.428 +[2025.06.16-10.28.09:361][974]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=111.376 Y=1.428 +[2025.06.16-10.28.09:361][974]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=111.376 Y=1.428 +[2025.06.16-10.28.09:361][974]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=111.376 Y=1.428 +[2025.06.16-10.28.09:370][975]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.521 Y=1.428 +[2025.06.16-10.28.09:370][975]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=108.521 Y=1.428 +[2025.06.16-10.28.09:370][975]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=108.521 Y=1.428 +[2025.06.16-10.28.09:378][976]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.521 Y=1.428 +[2025.06.16-10.28.09:378][976]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=108.521 Y=1.428 +[2025.06.16-10.28.09:378][976]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=108.521 Y=1.428 +[2025.06.16-10.28.09:387][977]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=1.428 +[2025.06.16-10.28.09:387][977]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=1.428 +[2025.06.16-10.28.09:387][977]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=1.428 +[2025.06.16-10.28.09:395][978]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=1.428 +[2025.06.16-10.28.09:395][978]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=1.428 +[2025.06.16-10.28.09:395][978]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=1.428 +[2025.06.16-10.28.09:403][979]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=1.428 +[2025.06.16-10.28.09:404][979]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=1.428 +[2025.06.16-10.28.09:404][979]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=1.428 +[2025.06.16-10.28.09:412][980]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=1.428 +[2025.06.16-10.28.09:412][980]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=1.428 +[2025.06.16-10.28.09:412][980]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=1.428 +[2025.06.16-10.28.09:421][981]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=2.856 +[2025.06.16-10.28.09:421][981]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=2.856 +[2025.06.16-10.28.09:421][981]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=2.856 +[2025.06.16-10.28.09:429][982]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=105.665 Y=2.856 +[2025.06.16-10.28.09:429][982]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=105.665 Y=2.856 +[2025.06.16-10.28.09:429][982]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=105.665 Y=2.856 +[2025.06.16-10.28.09:437][983]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=105.665 Y=2.856 +[2025.06.16-10.28.09:437][983]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=105.665 Y=2.856 +[2025.06.16-10.28.09:437][983]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=105.665 Y=2.856 +[2025.06.16-10.28.09:446][984]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=102.809 Y=2.856 +[2025.06.16-10.28.09:446][984]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=102.809 Y=2.856 +[2025.06.16-10.28.09:446][984]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=102.809 Y=2.856 +[2025.06.16-10.28.09:453][985]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=102.809 Y=2.856 +[2025.06.16-10.28.09:453][985]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=102.809 Y=2.856 +[2025.06.16-10.28.09:453][985]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=102.809 Y=2.856 +[2025.06.16-10.28.09:462][986]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=102.809 Y=2.856 +[2025.06.16-10.28.09:462][986]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=102.809 Y=2.856 +[2025.06.16-10.28.09:462][986]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=102.809 Y=2.856 +[2025.06.16-10.28.09:471][987]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=101.381 Y=2.856 +[2025.06.16-10.28.09:471][987]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=101.381 Y=2.856 +[2025.06.16-10.28.09:471][987]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=101.381 Y=2.856 +[2025.06.16-10.28.09:478][988]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=99.953 Y=2.856 +[2025.06.16-10.28.09:478][988]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=99.953 Y=2.856 +[2025.06.16-10.28.09:478][988]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=99.953 Y=2.856 +[2025.06.16-10.28.09:488][989]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=98.525 Y=2.856 +[2025.06.16-10.28.09:488][989]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=98.525 Y=2.856 +[2025.06.16-10.28.09:488][989]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=98.525 Y=2.856 +[2025.06.16-10.28.09:495][990]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=97.097 Y=2.856 +[2025.06.16-10.28.09:495][990]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=97.097 Y=2.856 +[2025.06.16-10.28.09:495][990]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=97.097 Y=2.856 +[2025.06.16-10.28.09:505][991]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.669 Y=2.856 +[2025.06.16-10.28.09:505][991]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=95.669 Y=2.856 +[2025.06.16-10.28.09:505][991]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=95.669 Y=2.856 +[2025.06.16-10.28.09:512][992]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=94.242 Y=2.856 +[2025.06.16-10.28.09:513][992]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=94.242 Y=2.856 +[2025.06.16-10.28.09:513][992]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=94.242 Y=2.856 +[2025.06.16-10.28.09:521][993]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=92.814 Y=2.856 +[2025.06.16-10.28.09:521][993]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=92.814 Y=2.856 +[2025.06.16-10.28.09:521][993]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=92.814 Y=2.856 +[2025.06.16-10.28.09:530][994]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=91.386 Y=4.284 +[2025.06.16-10.28.09:530][994]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=91.386 Y=4.284 +[2025.06.16-10.28.09:530][994]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=91.386 Y=4.284 +[2025.06.16-10.28.09:538][995]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=91.386 Y=4.284 +[2025.06.16-10.28.09:538][995]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=91.386 Y=4.284 +[2025.06.16-10.28.09:538][995]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=91.386 Y=4.284 +[2025.06.16-10.28.09:545][996]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=91.386 Y=4.284 +[2025.06.16-10.28.09:545][996]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=91.386 Y=4.284 +[2025.06.16-10.28.09:545][996]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=91.386 Y=4.284 +[2025.06.16-10.28.09:554][997]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=89.958 Y=4.284 +[2025.06.16-10.28.09:554][997]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=89.958 Y=4.284 +[2025.06.16-10.28.09:554][997]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=89.958 Y=4.284 +[2025.06.16-10.28.09:563][998]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=89.958 Y=4.284 +[2025.06.16-10.28.09:563][998]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=89.958 Y=4.284 +[2025.06.16-10.28.09:563][998]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=89.958 Y=4.284 +[2025.06.16-10.28.09:572][999]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=89.958 Y=4.284 +[2025.06.16-10.28.09:572][999]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=89.958 Y=4.284 +[2025.06.16-10.28.09:572][999]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=89.958 Y=4.284 +[2025.06.16-10.28.09:581][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=89.958 Y=4.284 +[2025.06.16-10.28.09:581][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=89.958 Y=4.284 +[2025.06.16-10.28.09:581][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=89.958 Y=4.284 +[2025.06.16-10.28.09:589][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:590][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:590][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:598][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:598][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:598][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:606][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:606][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:606][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:614][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:614][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:614][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:623][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:623][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:623][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:631][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:631][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:631][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:639][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:639][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:639][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:647][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:648][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:648][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:655][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:655][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:655][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:663][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:664][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:664][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:672][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:673][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:673][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:681][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:681][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:681][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:689][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:689][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:689][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:697][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:697][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:697][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:706][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:706][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:706][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:714][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:714][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:714][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:724][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:724][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:724][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:731][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:733][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:733][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:739][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:741][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:741][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:748][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:749][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:749][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:757][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:757][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:757][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:767][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:767][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:767][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:774][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:774][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:774][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:782][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:783][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:783][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:790][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:790][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:790][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:799][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:799][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:799][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:808][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:808][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:808][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:815][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:815][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:815][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:824][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:824][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:824][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:832][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:832][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:832][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:841][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:841][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:841][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:849][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:849][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:849][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:857][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:857][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:857][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:865][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:865][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:865][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:875][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:875][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:875][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:883][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:883][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:883][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:891][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:891][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:891][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:900][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:900][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:900][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:908][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:908][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:908][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:915][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:915][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:915][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:924][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:924][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:926][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:934][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:934][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:934][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:942][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:942][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:942][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:951][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:951][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:951][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:959][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:959][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:959][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:968][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:969][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:969][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:975][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:977][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:977][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:984][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:984][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:984][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.09:993][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.09:993][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.09:993][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:001][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:001][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:001][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:010][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:010][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:010][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:017][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:018][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:018][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:025][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:025][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:025][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:035][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:035][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:035][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:043][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:043][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:043][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:051][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:051][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:051][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:060][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:060][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:060][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:069][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:069][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:069][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:077][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:078][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:078][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:085][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:085][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:086][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:094][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:094][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:094][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:101][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:101][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:101][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:110][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:110][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:110][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:118][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:118][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:118][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:127][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:127][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:127][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:135][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:135][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:135][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:144][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:144][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:144][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:152][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:152][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:152][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:160][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:160][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:160][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:169][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:169][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:170][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:178][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:178][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:178][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:186][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:186][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:187][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:194][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:194][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:194][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:203][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:203][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:203][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:211][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:211][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:211][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:221][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:221][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:221][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:230][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:230][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:230][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:239][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:239][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:239][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:248][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:248][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:248][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:257][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:257][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:257][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:265][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:265][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:265][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:274][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:274][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:274][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:283][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:283][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:283][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:291][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:291][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:291][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:301][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:301][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:302][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:309][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:310][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:310][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:318][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:318][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:318][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:327][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:327][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:327][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:335][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:336][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:336][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:344][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:344][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:344][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:352][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:352][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:352][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:361][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:362][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:362][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:370][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:370][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:370][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:378][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:378][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:378][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:388][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:388][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:388][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:395][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:395][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:395][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:405][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:405][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:405][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:414][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:414][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:414][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:423][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:423][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:423][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:430][100]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:431][100]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:431][100]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:439][101]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:439][101]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:439][101]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:448][102]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:448][102]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:448][102]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:456][103]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:456][103]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:456][103]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:464][104]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:464][104]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:464][104]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:473][105]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:473][105]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:473][105]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:481][106]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:481][106]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:481][106]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:489][107]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:489][107]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:489][107]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:498][108]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:498][108]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:498][108]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:505][109]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:505][109]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:505][109]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:515][110]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:515][110]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:515][110]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:523][111]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:523][111]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:523][111]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:531][112]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:531][112]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:531][112]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:540][113]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:540][113]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:540][113]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:548][114]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:548][114]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:548][114]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:557][115]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:557][115]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:557][115]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:565][116]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:565][116]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:565][116]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:574][117]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:574][117]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:574][117]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:582][118]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:582][118]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:582][118]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:590][119]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:590][119]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:591][119]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:598][120]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:598][120]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:598][120]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:607][121]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:607][121]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:607][121]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:614][122]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=4.284 +[2025.06.16-10.28.10:615][122]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=4.284 +[2025.06.16-10.28.10:615][122]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=4.284 +[2025.06.16-10.28.10:624][123]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=5.712 +[2025.06.16-10.28.10:624][123]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=5.712 +[2025.06.16-10.28.10:624][123]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=5.712 +[2025.06.16-10.28.10:631][124]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=5.712 +[2025.06.16-10.28.10:631][124]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=5.712 +[2025.06.16-10.28.10:631][124]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=5.712 +[2025.06.16-10.28.10:640][125]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=5.712 +[2025.06.16-10.28.10:640][125]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=5.712 +[2025.06.16-10.28.10:640][125]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=5.712 +[2025.06.16-10.28.10:648][126]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=5.712 +[2025.06.16-10.28.10:648][126]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=5.712 +[2025.06.16-10.28.10:648][126]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=5.712 +[2025.06.16-10.28.10:657][127]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=7.140 +[2025.06.16-10.28.10:657][127]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=7.140 +[2025.06.16-10.28.10:657][127]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=7.140 +[2025.06.16-10.28.10:665][128]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=87.102 Y=7.140 +[2025.06.16-10.28.10:665][128]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=87.102 Y=7.140 +[2025.06.16-10.28.10:665][128]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=87.102 Y=7.140 +[2025.06.16-10.28.10:674][129]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=85.674 Y=7.140 +[2025.06.16-10.28.10:674][129]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=85.674 Y=7.140 +[2025.06.16-10.28.10:674][129]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=85.674 Y=7.140 +[2025.06.16-10.28.10:682][130]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=85.674 Y=7.140 +[2025.06.16-10.28.10:682][130]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=85.674 Y=7.140 +[2025.06.16-10.28.10:682][130]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=85.674 Y=7.140 +[2025.06.16-10.28.10:690][131]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=84.246 Y=7.140 +[2025.06.16-10.28.10:690][131]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=84.246 Y=7.140 +[2025.06.16-10.28.10:690][131]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=84.246 Y=7.140 +[2025.06.16-10.28.10:699][132]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=82.818 Y=8.567 +[2025.06.16-10.28.10:699][132]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=82.818 Y=8.567 +[2025.06.16-10.28.10:699][132]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=82.818 Y=8.567 +[2025.06.16-10.28.10:707][133]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=81.390 Y=8.567 +[2025.06.16-10.28.10:707][133]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=81.390 Y=8.567 +[2025.06.16-10.28.10:707][133]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=81.390 Y=8.567 +[2025.06.16-10.28.10:715][134]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=79.963 Y=8.567 +[2025.06.16-10.28.10:715][134]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=79.963 Y=8.567 +[2025.06.16-10.28.10:715][134]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=79.963 Y=8.567 +[2025.06.16-10.28.10:724][135]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=78.535 Y=8.567 +[2025.06.16-10.28.10:724][135]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=78.535 Y=8.567 +[2025.06.16-10.28.10:724][135]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=78.535 Y=8.567 +[2025.06.16-10.28.10:732][136]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=77.107 Y=8.567 +[2025.06.16-10.28.10:732][136]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=77.107 Y=8.567 +[2025.06.16-10.28.10:732][136]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=77.107 Y=8.567 +[2025.06.16-10.28.10:740][137]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=77.107 Y=9.995 +[2025.06.16-10.28.10:740][137]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=77.107 Y=9.995 +[2025.06.16-10.28.10:740][137]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=77.107 Y=9.995 +[2025.06.16-10.28.10:749][138]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=75.679 Y=9.995 +[2025.06.16-10.28.10:749][138]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=75.679 Y=9.995 +[2025.06.16-10.28.10:749][138]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=75.679 Y=9.995 +[2025.06.16-10.28.10:758][139]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=74.251 Y=9.995 +[2025.06.16-10.28.10:758][139]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=74.251 Y=9.995 +[2025.06.16-10.28.10:758][139]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=74.251 Y=9.995 +[2025.06.16-10.28.10:767][140]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=72.823 Y=9.995 +[2025.06.16-10.28.10:768][140]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=72.823 Y=9.995 +[2025.06.16-10.28.10:768][140]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=72.823 Y=9.995 +[2025.06.16-10.28.10:775][141]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=71.395 Y=9.995 +[2025.06.16-10.28.10:775][141]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=71.395 Y=9.995 +[2025.06.16-10.28.10:775][141]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=71.395 Y=9.995 +[2025.06.16-10.28.10:784][142]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=71.395 Y=11.423 +[2025.06.16-10.28.10:784][142]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=71.395 Y=11.423 +[2025.06.16-10.28.10:784][142]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=71.395 Y=11.423 +[2025.06.16-10.28.10:793][143]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=68.539 Y=12.851 +[2025.06.16-10.28.10:793][143]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=68.539 Y=12.851 +[2025.06.16-10.28.10:793][143]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=68.539 Y=12.851 +[2025.06.16-10.28.10:801][144]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=67.111 Y=12.851 +[2025.06.16-10.28.10:802][144]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=67.111 Y=12.851 +[2025.06.16-10.28.10:802][144]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=67.111 Y=12.851 +[2025.06.16-10.28.10:810][145]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=67.111 Y=12.851 +[2025.06.16-10.28.10:810][145]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=67.111 Y=12.851 +[2025.06.16-10.28.10:810][145]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=67.111 Y=12.851 +[2025.06.16-10.28.10:820][146]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=64.256 Y=14.279 +[2025.06.16-10.28.10:820][146]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=64.256 Y=14.279 +[2025.06.16-10.28.10:820][146]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=64.256 Y=14.279 +[2025.06.16-10.28.10:828][147]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=62.828 Y=14.279 +[2025.06.16-10.28.10:828][147]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=62.828 Y=14.279 +[2025.06.16-10.28.10:828][147]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=62.828 Y=14.279 +[2025.06.16-10.28.10:836][148]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=61.400 Y=14.279 +[2025.06.16-10.28.10:836][148]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=61.400 Y=14.279 +[2025.06.16-10.28.10:836][148]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=61.400 Y=14.279 +[2025.06.16-10.28.10:844][149]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=61.400 Y=14.279 +[2025.06.16-10.28.10:845][149]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=61.400 Y=14.279 +[2025.06.16-10.28.10:845][149]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=61.400 Y=14.279 +[2025.06.16-10.28.10:853][150]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=61.400 Y=14.279 +[2025.06.16-10.28.10:853][150]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=61.400 Y=14.279 +[2025.06.16-10.28.10:853][150]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=61.400 Y=14.279 +[2025.06.16-10.28.10:862][151]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:863][151]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:863][151]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:870][152]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:871][152]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:871][152]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:878][153]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:878][153]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:878][153]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:887][154]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:887][154]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:887][154]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:895][155]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:895][155]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:895][155]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:904][156]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:904][156]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:904][156]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:913][157]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:913][157]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:913][157]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:920][158]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:920][158]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:920][158]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:929][159]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:929][159]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:929][159]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:938][160]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:938][160]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:938][160]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:946][161]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:947][161]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:947][161]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:954][162]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:954][162]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:954][162]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:963][163]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:963][163]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:964][163]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:972][164]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:972][164]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:972][164]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:980][165]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:980][165]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:980][165]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:988][166]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:988][166]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:988][166]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.10:997][167]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.10:997][167]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.10:997][167]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:006][168]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:006][168]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:006][168]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:014][169]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:014][169]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:014][169]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:022][170]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:022][170]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:022][170]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:032][171]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:032][171]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:032][171]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:041][172]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:041][172]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:041][172]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:049][173]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:049][173]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:049][173]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:057][174]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:057][174]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:057][174]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:065][175]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:066][175]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:066][175]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:074][176]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:074][176]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:074][176]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:082][177]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:083][177]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:083][177]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:091][178]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:091][178]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:091][178]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:099][179]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:099][179]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:099][179]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:109][180]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:109][180]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:109][180]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:115][181]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:117][181]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:117][181]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:124][182]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:125][182]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:125][182]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:133][183]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:133][183]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:133][183]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:142][184]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:142][184]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:142][184]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:150][185]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:150][185]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:150][185]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:158][186]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:158][186]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:158][186]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:167][187]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:167][187]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:167][187]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:176][188]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:177][188]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:177][188]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:186][189]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:186][189]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:186][189]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:194][190]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:194][190]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:194][190]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:202][191]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:202][191]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:202][191]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:210][192]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:211][192]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:211][192]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:219][193]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:219][193]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:219][193]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:227][194]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:227][194]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:228][194]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:235][195]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:236][195]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:236][195]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:244][196]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:244][196]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:244][196]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:252][197]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:253][197]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:253][197]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:261][198]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:261][198]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:261][198]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:269][199]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:270][199]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:270][199]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:278][200]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:278][200]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:278][200]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:286][201]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:286][201]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:286][201]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:294][202]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:294][202]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:294][202]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:303][203]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:303][203]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:303][203]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:310][204]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:310][204]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:310][204]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:319][205]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:319][205]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:319][205]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:328][206]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:328][206]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:328][206]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:336][207]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:336][207]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:336][207]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:345][208]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:345][208]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:345][208]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:352][209]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:353][209]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:353][209]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:361][210]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:361][210]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:361][210]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:369][211]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:369][211]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:369][211]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:378][212]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:378][212]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:378][212]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:385][213]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:385][213]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:385][213]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:395][214]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:395][214]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:395][214]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:402][215]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:402][215]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:402][215]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:411][216]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:411][216]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:411][216]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:419][217]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:419][217]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:419][217]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:427][218]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:427][218]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:428][218]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:435][219]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:436][219]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:436][219]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:444][220]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:444][220]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:445][220]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:452][221]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:452][221]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:452][221]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:461][222]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:461][222]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:461][222]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:470][223]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:470][223]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:470][223]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:477][224]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:478][224]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:478][224]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:486][225]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:486][225]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:486][225]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:494][226]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:494][226]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:494][226]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:502][227]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:502][227]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:503][227]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:511][228]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:511][228]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:511][228]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:519][229]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:520][229]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:520][229]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:527][230]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:527][230]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:527][230]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:537][231]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:537][231]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:537][231]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:544][232]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:544][232]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:544][232]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:553][233]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:553][233]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:553][233]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:561][234]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:561][234]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:561][234]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:570][235]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:570][235]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:570][235]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:579][236]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=59.972 Y=14.279 +[2025.06.16-10.28.11:579][236]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=59.972 Y=14.279 +[2025.06.16-10.28.11:579][236]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=59.972 Y=14.279 +[2025.06.16-10.28.11:587][237]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=61.400 Y=15.707 +[2025.06.16-10.28.11:587][237]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=61.400 Y=15.707 +[2025.06.16-10.28.11:587][237]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=61.400 Y=15.707 +[2025.06.16-10.28.11:596][238]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=62.828 Y=15.707 +[2025.06.16-10.28.11:596][238]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=62.828 Y=15.707 +[2025.06.16-10.28.11:596][238]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=62.828 Y=15.707 +[2025.06.16-10.28.11:604][239]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=62.828 Y=15.707 +[2025.06.16-10.28.11:604][239]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=62.828 Y=15.707 +[2025.06.16-10.28.11:604][239]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=62.828 Y=15.707 +[2025.06.16-10.28.11:612][240]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=62.828 Y=15.707 +[2025.06.16-10.28.11:612][240]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=62.828 Y=15.707 +[2025.06.16-10.28.11:612][240]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=62.828 Y=15.707 +[2025.06.16-10.28.11:621][241]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=64.256 Y=15.707 +[2025.06.16-10.28.11:621][241]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=64.256 Y=15.707 +[2025.06.16-10.28.11:621][241]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=64.256 Y=15.707 +[2025.06.16-10.28.11:629][242]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=64.256 Y=15.707 +[2025.06.16-10.28.11:629][242]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=64.256 Y=15.707 +[2025.06.16-10.28.11:629][242]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=64.256 Y=15.707 +[2025.06.16-10.28.11:639][243]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=64.256 Y=15.707 +[2025.06.16-10.28.11:639][243]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=64.256 Y=15.707 +[2025.06.16-10.28.11:639][243]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=64.256 Y=15.707 +[2025.06.16-10.28.11:647][244]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=64.256 Y=15.707 +[2025.06.16-10.28.11:647][244]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=64.256 Y=15.707 +[2025.06.16-10.28.11:647][244]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=64.256 Y=15.707 +[2025.06.16-10.28.11:656][245]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=65.684 Y=15.707 +[2025.06.16-10.28.11:656][245]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=65.684 Y=15.707 +[2025.06.16-10.28.11:656][245]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=65.684 Y=15.707 +[2025.06.16-10.28.11:663][246]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=65.684 Y=15.707 +[2025.06.16-10.28.11:663][246]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=65.684 Y=15.707 +[2025.06.16-10.28.11:663][246]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=65.684 Y=15.707 +[2025.06.16-10.28.11:672][247]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=65.684 Y=15.707 +[2025.06.16-10.28.11:672][247]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=65.684 Y=15.707 +[2025.06.16-10.28.11:672][247]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=65.684 Y=15.707 +[2025.06.16-10.28.11:681][248]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=67.111 Y=17.135 +[2025.06.16-10.28.11:681][248]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=67.111 Y=17.135 +[2025.06.16-10.28.11:682][248]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=67.111 Y=17.135 +[2025.06.16-10.28.11:691][249]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=68.539 Y=17.135 +[2025.06.16-10.28.11:691][249]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=68.539 Y=17.135 +[2025.06.16-10.28.11:691][249]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=68.539 Y=17.135 +[2025.06.16-10.28.11:699][250]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=68.539 Y=17.135 +[2025.06.16-10.28.11:699][250]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=68.539 Y=17.135 +[2025.06.16-10.28.11:699][250]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=68.539 Y=17.135 +[2025.06.16-10.28.11:707][251]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=69.967 Y=17.135 +[2025.06.16-10.28.11:707][251]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=69.967 Y=17.135 +[2025.06.16-10.28.11:707][251]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=69.967 Y=17.135 +[2025.06.16-10.28.11:715][252]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=69.967 Y=17.135 +[2025.06.16-10.28.11:715][252]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=69.967 Y=17.135 +[2025.06.16-10.28.11:715][252]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=69.967 Y=17.135 +[2025.06.16-10.28.11:724][253]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=71.395 Y=18.563 +[2025.06.16-10.28.11:724][253]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=71.395 Y=18.563 +[2025.06.16-10.28.11:724][253]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=71.395 Y=18.563 +[2025.06.16-10.28.11:732][254]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=72.823 Y=18.563 +[2025.06.16-10.28.11:732][254]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=72.823 Y=18.563 +[2025.06.16-10.28.11:733][254]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=72.823 Y=18.563 +[2025.06.16-10.28.11:741][255]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=75.679 Y=19.991 +[2025.06.16-10.28.11:741][255]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=75.679 Y=19.991 +[2025.06.16-10.28.11:741][255]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=75.679 Y=19.991 +[2025.06.16-10.28.11:749][256]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=75.679 Y=19.991 +[2025.06.16-10.28.11:750][256]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=75.679 Y=19.991 +[2025.06.16-10.28.11:750][256]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=75.679 Y=19.991 +[2025.06.16-10.28.11:758][257]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=78.535 Y=19.991 +[2025.06.16-10.28.11:758][257]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=78.535 Y=19.991 +[2025.06.16-10.28.11:758][257]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=78.535 Y=19.991 +[2025.06.16-10.28.11:765][258]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=79.963 Y=19.991 +[2025.06.16-10.28.11:767][258]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=79.963 Y=19.991 +[2025.06.16-10.28.11:767][258]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=79.963 Y=19.991 +[2025.06.16-10.28.11:774][259]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=81.390 Y=19.991 +[2025.06.16-10.28.11:774][259]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=81.390 Y=19.991 +[2025.06.16-10.28.11:774][259]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=81.390 Y=19.991 +[2025.06.16-10.28.11:782][260]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=82.818 Y=21.419 +[2025.06.16-10.28.11:783][260]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=82.818 Y=21.419 +[2025.06.16-10.28.11:783][260]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=82.818 Y=21.419 +[2025.06.16-10.28.11:791][261]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=84.246 Y=21.419 +[2025.06.16-10.28.11:791][261]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=84.246 Y=21.419 +[2025.06.16-10.28.11:791][261]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=84.246 Y=21.419 +[2025.06.16-10.28.11:801][262]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=85.674 Y=21.419 +[2025.06.16-10.28.11:801][262]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=85.674 Y=21.419 +[2025.06.16-10.28.11:801][262]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=85.674 Y=21.419 +[2025.06.16-10.28.11:809][263]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=87.102 Y=21.419 +[2025.06.16-10.28.11:809][263]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=87.102 Y=21.419 +[2025.06.16-10.28.11:809][263]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=87.102 Y=21.419 +[2025.06.16-10.28.11:818][264]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=22.846 +[2025.06.16-10.28.11:819][264]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=22.846 +[2025.06.16-10.28.11:819][264]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=22.846 +[2025.06.16-10.28.11:827][265]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=88.530 Y=22.846 +[2025.06.16-10.28.11:827][265]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=88.530 Y=22.846 +[2025.06.16-10.28.11:827][265]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=88.530 Y=22.846 +[2025.06.16-10.28.11:834][266]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=91.386 Y=22.846 +[2025.06.16-10.28.11:834][266]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=91.386 Y=22.846 +[2025.06.16-10.28.11:835][266]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=91.386 Y=22.846 +[2025.06.16-10.28.11:843][267]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=92.814 Y=24.274 +[2025.06.16-10.28.11:843][267]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=92.814 Y=24.274 +[2025.06.16-10.28.11:844][267]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=92.814 Y=24.274 +[2025.06.16-10.28.11:852][268]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=95.669 Y=25.702 +[2025.06.16-10.28.11:852][268]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=95.669 Y=25.702 +[2025.06.16-10.28.11:852][268]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=95.669 Y=25.702 +[2025.06.16-10.28.11:860][269]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=98.525 Y=25.702 +[2025.06.16-10.28.11:860][269]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=98.525 Y=25.702 +[2025.06.16-10.28.11:860][269]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=98.525 Y=25.702 +[2025.06.16-10.28.11:868][270]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=101.381 Y=27.130 +[2025.06.16-10.28.11:868][270]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=101.381 Y=27.130 +[2025.06.16-10.28.11:868][270]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=101.381 Y=27.130 +[2025.06.16-10.28.11:877][271]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=102.809 Y=27.130 +[2025.06.16-10.28.11:877][271]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=102.809 Y=27.130 +[2025.06.16-10.28.11:877][271]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=102.809 Y=27.130 +[2025.06.16-10.28.11:885][272]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=105.665 Y=28.558 +[2025.06.16-10.28.11:885][272]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=105.665 Y=28.558 +[2025.06.16-10.28.11:885][272]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=105.665 Y=28.558 +[2025.06.16-10.28.11:893][273]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=28.558 +[2025.06.16-10.28.11:893][273]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=28.558 +[2025.06.16-10.28.11:893][273]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=28.558 +[2025.06.16-10.28.11:902][274]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=107.093 Y=28.558 +[2025.06.16-10.28.11:902][274]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=107.093 Y=28.558 +[2025.06.16-10.28.11:902][274]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=107.093 Y=28.558 +[2025.06.16-10.28.11:910][275]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.521 Y=29.986 +[2025.06.16-10.28.11:910][275]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=108.521 Y=29.986 +[2025.06.16-10.28.11:910][275]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=108.521 Y=29.986 +[2025.06.16-10.28.11:918][276]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.521 Y=29.986 +[2025.06.16-10.28.11:918][276]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=108.521 Y=29.986 +[2025.06.16-10.28.11:918][276]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=108.521 Y=29.986 +[2025.06.16-10.28.11:927][277]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=108.521 Y=29.986 +[2025.06.16-10.28.11:927][277]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=108.521 Y=29.986 +[2025.06.16-10.28.11:927][277]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=108.521 Y=29.986 +[2025.06.16-10.28.11:936][278]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=109.949 Y=29.986 +[2025.06.16-10.28.11:936][278]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=109.949 Y=29.986 +[2025.06.16-10.28.11:936][278]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=109.949 Y=29.986 +[2025.06.16-10.28.11:944][279]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=109.949 Y=29.986 +[2025.06.16-10.28.11:944][279]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=109.949 Y=29.986 +[2025.06.16-10.28.11:944][279]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=109.949 Y=29.986 +[2025.06.16-10.28.11:952][280]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=109.949 Y=29.986 +[2025.06.16-10.28.11:953][280]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=109.949 Y=29.986 +[2025.06.16-10.28.11:953][280]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=109.949 Y=29.986 +[2025.06.16-10.28.11:961][281]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=111.376 Y=31.414 +[2025.06.16-10.28.11:961][281]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=111.376 Y=31.414 +[2025.06.16-10.28.11:961][281]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=111.376 Y=31.414 +[2025.06.16-10.28.11:969][282]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=112.804 Y=31.414 +[2025.06.16-10.28.11:969][282]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=112.804 Y=31.414 +[2025.06.16-10.28.11:969][282]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=112.804 Y=31.414 +[2025.06.16-10.28.11:977][283]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=112.804 Y=31.414 +[2025.06.16-10.28.11:977][283]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=112.804 Y=31.414 +[2025.06.16-10.28.11:977][283]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=112.804 Y=31.414 +[2025.06.16-10.28.11:985][284]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=114.232 Y=32.842 +[2025.06.16-10.28.11:985][284]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=114.232 Y=32.842 +[2025.06.16-10.28.11:987][284]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=114.232 Y=32.842 +[2025.06.16-10.28.11:994][285]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=114.232 Y=32.842 +[2025.06.16-10.28.11:994][285]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=114.232 Y=32.842 +[2025.06.16-10.28.11:994][285]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=114.232 Y=32.842 +[2025.06.16-10.28.12:002][286]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=115.660 Y=34.270 +[2025.06.16-10.28.12:002][286]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=115.660 Y=34.270 +[2025.06.16-10.28.12:002][286]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=115.660 Y=34.270 +[2025.06.16-10.28.12:011][287]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=117.088 Y=35.698 +[2025.06.16-10.28.12:011][287]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=117.088 Y=35.698 +[2025.06.16-10.28.12:011][287]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=117.088 Y=35.698 +[2025.06.16-10.28.12:019][288]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=118.516 Y=37.125 +[2025.06.16-10.28.12:019][288]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=118.516 Y=37.125 +[2025.06.16-10.28.12:019][288]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=118.516 Y=37.125 +[2025.06.16-10.28.12:028][289]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=119.944 Y=38.553 +[2025.06.16-10.28.12:028][289]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=119.944 Y=38.553 +[2025.06.16-10.28.12:028][289]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=119.944 Y=38.553 +[2025.06.16-10.28.12:035][290]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=121.372 Y=39.981 +[2025.06.16-10.28.12:035][290]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=121.372 Y=39.981 +[2025.06.16-10.28.12:035][290]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=121.372 Y=39.981 +[2025.06.16-10.28.12:045][291]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=122.800 Y=41.409 +[2025.06.16-10.28.12:045][291]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=122.800 Y=41.409 +[2025.06.16-10.28.12:045][291]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=122.800 Y=41.409 +[2025.06.16-10.28.12:054][292]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=124.228 Y=41.409 +[2025.06.16-10.28.12:054][292]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=124.228 Y=41.409 +[2025.06.16-10.28.12:054][292]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=124.228 Y=41.409 +[2025.06.16-10.28.12:063][293]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=125.655 Y=42.837 +[2025.06.16-10.28.12:063][293]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=125.655 Y=42.837 +[2025.06.16-10.28.12:063][293]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=125.655 Y=42.837 +[2025.06.16-10.28.12:071][294]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=125.655 Y=44.265 +[2025.06.16-10.28.12:071][294]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=125.655 Y=44.265 +[2025.06.16-10.28.12:071][294]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=125.655 Y=44.265 +[2025.06.16-10.28.12:079][295]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=125.655 Y=44.265 +[2025.06.16-10.28.12:079][295]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=125.655 Y=44.265 +[2025.06.16-10.28.12:079][295]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=125.655 Y=44.265 +[2025.06.16-10.28.12:088][296]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=44.265 +[2025.06.16-10.28.12:088][296]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=44.265 +[2025.06.16-10.28.12:088][296]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=44.265 +[2025.06.16-10.28.12:095][297]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=44.265 +[2025.06.16-10.28.12:095][297]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=44.265 +[2025.06.16-10.28.12:097][297]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=44.265 +[2025.06.16-10.28.12:105][298]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=45.693 +[2025.06.16-10.28.12:105][298]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=45.693 +[2025.06.16-10.28.12:106][298]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=45.693 +[2025.06.16-10.28.12:114][299]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=127.083 Y=47.121 +[2025.06.16-10.28.12:114][299]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=127.083 Y=47.121 +[2025.06.16-10.28.12:114][299]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=127.083 Y=47.121 +[2025.06.16-10.28.12:122][300]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=47.121 +[2025.06.16-10.28.12:122][300]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=47.121 +[2025.06.16-10.28.12:123][300]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=47.121 +[2025.06.16-10.28.12:131][301]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=128.511 Y=47.121 +[2025.06.16-10.28.12:131][301]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=128.511 Y=47.121 +[2025.06.16-10.28.12:131][301]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=128.511 Y=47.121 +[2025.06.16-10.28.12:139][302]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=48.549 +[2025.06.16-10.28.12:139][302]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=48.549 +[2025.06.16-10.28.12:139][302]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=48.549 +[2025.06.16-10.28.12:147][303]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=129.939 Y=49.977 +[2025.06.16-10.28.12:148][303]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=129.939 Y=49.977 +[2025.06.16-10.28.12:148][303]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=129.939 Y=49.977 +[2025.06.16-10.28.12:156][304]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=49.977 +[2025.06.16-10.28.12:156][304]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=49.977 +[2025.06.16-10.28.12:156][304]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=49.977 +[2025.06.16-10.28.12:164][305]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=131.367 Y=49.977 +[2025.06.16-10.28.12:164][305]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=131.367 Y=49.977 +[2025.06.16-10.28.12:164][305]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=131.367 Y=49.977 +[2025.06.16-10.28.12:173][306]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=51.404 +[2025.06.16-10.28.12:173][306]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=51.404 +[2025.06.16-10.28.12:173][306]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=51.404 +[2025.06.16-10.28.12:181][307]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=132.795 Y=51.404 +[2025.06.16-10.28.12:181][307]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=132.795 Y=51.404 +[2025.06.16-10.28.12:181][307]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=132.795 Y=51.404 +[2025.06.16-10.28.12:190][308]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=134.223 Y=54.260 +[2025.06.16-10.28.12:190][308]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=134.223 Y=54.260 +[2025.06.16-10.28.12:190][308]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=134.223 Y=54.260 +[2025.06.16-10.28.12:198][309]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=54.260 +[2025.06.16-10.28.12:198][309]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=54.260 +[2025.06.16-10.28.12:198][309]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=54.260 +[2025.06.16-10.28.12:205][310]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=135.651 Y=55.688 +[2025.06.16-10.28.12:205][310]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=135.651 Y=55.688 +[2025.06.16-10.28.12:207][310]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=135.651 Y=55.688 +[2025.06.16-10.28.12:215][311]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=137.079 Y=59.972 +[2025.06.16-10.28.12:215][311]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=137.079 Y=59.972 +[2025.06.16-10.28.12:215][311]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=137.079 Y=59.972 +[2025.06.16-10.28.12:223][312]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=62.828 +[2025.06.16-10.28.12:223][312]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=62.828 +[2025.06.16-10.28.12:223][312]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=62.828 +[2025.06.16-10.28.12:232][313]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=139.934 Y=64.256 +[2025.06.16-10.28.12:232][313]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=139.934 Y=64.256 +[2025.06.16-10.28.12:232][313]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=139.934 Y=64.256 +[2025.06.16-10.28.12:240][314]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=141.362 Y=67.111 +[2025.06.16-10.28.12:240][314]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=141.362 Y=67.111 +[2025.06.16-10.28.12:241][314]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=141.362 Y=67.111 +[2025.06.16-10.28.12:250][315]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=144.218 Y=72.823 +[2025.06.16-10.28.12:250][315]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=144.218 Y=72.823 +[2025.06.16-10.28.12:250][315]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=144.218 Y=72.823 +[2025.06.16-10.28.12:258][316]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=144.218 Y=72.823 +[2025.06.16-10.28.12:258][316]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=144.218 Y=72.823 +[2025.06.16-10.28.12:258][316]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=144.218 Y=72.823 +[2025.06.16-10.28.12:265][317]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=147.074 Y=77.107 +[2025.06.16-10.28.12:265][317]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=147.074 Y=77.107 +[2025.06.16-10.28.12:265][317]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=147.074 Y=77.107 +[2025.06.16-10.28.12:275][318]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=148.502 Y=79.963 +[2025.06.16-10.28.12:275][318]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=148.502 Y=79.963 +[2025.06.16-10.28.12:275][318]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=148.502 Y=79.963 +[2025.06.16-10.28.12:283][319]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=151.358 Y=84.246 +[2025.06.16-10.28.12:283][319]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=151.358 Y=84.246 +[2025.06.16-10.28.12:283][319]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=151.358 Y=84.246 +[2025.06.16-10.28.12:291][320]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=152.786 Y=87.102 +[2025.06.16-10.28.12:291][320]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=152.786 Y=87.102 +[2025.06.16-10.28.12:292][320]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=152.786 Y=87.102 +[2025.06.16-10.28.12:300][321]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=154.213 Y=89.958 +[2025.06.16-10.28.12:300][321]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=154.213 Y=89.958 +[2025.06.16-10.28.12:300][321]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=154.213 Y=89.958 +[2025.06.16-10.28.12:308][322]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=155.641 Y=94.242 +[2025.06.16-10.28.12:308][322]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=155.641 Y=94.242 +[2025.06.16-10.28.12:308][322]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=155.641 Y=94.242 +[2025.06.16-10.28.12:317][323]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=159.925 Y=99.953 +[2025.06.16-10.28.12:317][323]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=159.925 Y=99.953 +[2025.06.16-10.28.12:317][323]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=159.925 Y=99.953 +[2025.06.16-10.28.12:326][324]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=161.353 Y=102.809 +[2025.06.16-10.28.12:326][324]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=161.353 Y=102.809 +[2025.06.16-10.28.12:326][324]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=161.353 Y=102.809 +[2025.06.16-10.28.12:334][325]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=162.781 Y=104.237 +[2025.06.16-10.28.12:334][325]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=162.781 Y=104.237 +[2025.06.16-10.28.12:334][325]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=162.781 Y=104.237 +[2025.06.16-10.28.12:343][326]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=165.637 Y=109.949 +[2025.06.16-10.28.12:343][326]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=165.637 Y=109.949 +[2025.06.16-10.28.12:343][326]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=165.637 Y=109.949 +[2025.06.16-10.28.12:351][327]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=165.637 Y=111.376 +[2025.06.16-10.28.12:351][327]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=165.637 Y=111.376 +[2025.06.16-10.28.12:351][327]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=165.637 Y=111.376 +[2025.06.16-10.28.12:359][328]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=167.065 Y=114.232 +[2025.06.16-10.28.12:360][328]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=167.065 Y=114.232 +[2025.06.16-10.28.12:360][328]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=167.065 Y=114.232 +[2025.06.16-10.28.12:369][329]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=169.920 Y=117.088 +[2025.06.16-10.28.12:369][329]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=169.920 Y=117.088 +[2025.06.16-10.28.12:369][329]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=169.920 Y=117.088 +[2025.06.16-10.28.12:377][330]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=171.348 Y=121.372 +[2025.06.16-10.28.12:377][330]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=171.348 Y=121.372 +[2025.06.16-10.28.12:377][330]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=171.348 Y=121.372 +[2025.06.16-10.28.12:384][331]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=171.348 Y=122.800 +[2025.06.16-10.28.12:386][331]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=171.348 Y=122.800 +[2025.06.16-10.28.12:386][331]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=171.348 Y=122.800 +[2025.06.16-10.28.12:394][332]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=174.204 Y=129.939 +[2025.06.16-10.28.12:394][332]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=174.204 Y=129.939 +[2025.06.16-10.28.12:394][332]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=174.204 Y=129.939 +[2025.06.16-10.28.12:402][333]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=175.632 Y=132.795 +[2025.06.16-10.28.12:402][333]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=175.632 Y=132.795 +[2025.06.16-10.28.12:402][333]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=175.632 Y=132.795 +[2025.06.16-10.28.12:411][334]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=175.632 Y=135.651 +[2025.06.16-10.28.12:411][334]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=175.632 Y=135.651 +[2025.06.16-10.28.12:411][334]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=175.632 Y=135.651 +[2025.06.16-10.28.12:420][335]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=177.060 Y=139.934 +[2025.06.16-10.28.12:420][335]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=177.060 Y=139.934 +[2025.06.16-10.28.12:420][335]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=177.060 Y=139.934 +[2025.06.16-10.28.12:428][336]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=178.488 Y=142.790 +[2025.06.16-10.28.12:428][336]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=178.488 Y=142.790 +[2025.06.16-10.28.12:428][336]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=178.488 Y=142.790 +[2025.06.16-10.28.12:436][337]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=179.916 Y=147.074 +[2025.06.16-10.28.12:436][337]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=179.916 Y=147.074 +[2025.06.16-10.28.12:436][337]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=179.916 Y=147.074 +[2025.06.16-10.28.12:444][338]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=181.344 Y=149.930 +[2025.06.16-10.28.12:444][338]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=181.344 Y=149.930 +[2025.06.16-10.28.12:444][338]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=181.344 Y=149.930 +[2025.06.16-10.28.12:452][339]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=185.627 Y=158.497 +[2025.06.16-10.28.12:453][339]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=185.627 Y=158.497 +[2025.06.16-10.28.12:453][339]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=185.627 Y=158.497 +[2025.06.16-10.28.12:461][340]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=185.627 Y=161.353 +[2025.06.16-10.28.12:461][340]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=185.627 Y=161.353 +[2025.06.16-10.28.12:461][340]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=185.627 Y=161.353 +[2025.06.16-10.28.12:470][341]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=187.055 Y=169.920 +[2025.06.16-10.28.12:470][341]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=187.055 Y=169.920 +[2025.06.16-10.28.12:470][341]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=187.055 Y=169.920 +[2025.06.16-10.28.12:479][342]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=187.055 Y=175.632 +[2025.06.16-10.28.12:479][342]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=187.055 Y=175.632 +[2025.06.16-10.28.12:479][342]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=187.055 Y=175.632 +[2025.06.16-10.28.12:488][343]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=188.483 Y=179.916 +[2025.06.16-10.28.12:488][343]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=188.483 Y=179.916 +[2025.06.16-10.28.12:488][343]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=188.483 Y=179.916 +[2025.06.16-10.28.12:498][344]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=189.911 Y=185.627 +[2025.06.16-10.28.12:498][344]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=189.911 Y=185.627 +[2025.06.16-10.28.12:498][344]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=189.911 Y=185.627 +[2025.06.16-10.28.12:506][345]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=194.195 Y=197.051 +[2025.06.16-10.28.12:506][345]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=194.195 Y=197.051 +[2025.06.16-10.28.12:506][345]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=194.195 Y=197.051 +[2025.06.16-10.28.12:514][346]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=195.623 Y=199.906 +[2025.06.16-10.28.12:514][346]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=195.623 Y=199.906 +[2025.06.16-10.28.12:514][346]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=195.623 Y=199.906 +[2025.06.16-10.28.12:522][347]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=197.051 Y=209.902 +[2025.06.16-10.28.12:523][347]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=197.051 Y=209.902 +[2025.06.16-10.28.12:523][347]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=197.051 Y=209.902 +[2025.06.16-10.28.12:531][348]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=197.051 Y=214.185 +[2025.06.16-10.28.12:532][348]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=197.051 Y=214.185 +[2025.06.16-10.28.12:532][348]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=197.051 Y=214.185 +[2025.06.16-10.28.12:540][349]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=198.478 Y=218.469 +[2025.06.16-10.28.12:540][349]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=198.478 Y=218.469 +[2025.06.16-10.28.12:540][349]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=198.478 Y=218.469 +[2025.06.16-10.28.12:549][350]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=198.478 Y=224.181 +[2025.06.16-10.28.12:549][350]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=198.478 Y=224.181 +[2025.06.16-10.28.12:549][350]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=198.478 Y=224.181 +[2025.06.16-10.28.12:559][351]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=199.906 Y=228.464 +[2025.06.16-10.28.12:559][351]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=199.906 Y=228.464 +[2025.06.16-10.28.12:559][351]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=199.906 Y=228.464 +[2025.06.16-10.28.12:568][352]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=201.334 Y=232.748 +[2025.06.16-10.28.12:568][352]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=201.334 Y=232.748 +[2025.06.16-10.28.12:568][352]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=201.334 Y=232.748 +[2025.06.16-10.28.12:577][353]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=202.762 Y=241.316 +[2025.06.16-10.28.12:577][353]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=202.762 Y=241.316 +[2025.06.16-10.28.12:577][353]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=202.762 Y=241.316 +[2025.06.16-10.28.12:587][354]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=202.762 Y=244.171 +[2025.06.16-10.28.12:587][354]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=202.762 Y=244.171 +[2025.06.16-10.28.12:587][354]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=202.762 Y=244.171 +[2025.06.16-10.28.12:597][355]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=204.190 Y=247.027 +[2025.06.16-10.28.12:597][355]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=204.190 Y=247.027 +[2025.06.16-10.28.12:598][355]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=204.190 Y=247.027 +[2025.06.16-10.28.12:607][356]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=205.618 Y=251.311 +[2025.06.16-10.28.12:607][356]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=205.618 Y=251.311 +[2025.06.16-10.28.12:607][356]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=205.618 Y=251.311 +[2025.06.16-10.28.12:616][357]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=207.046 Y=255.595 +[2025.06.16-10.28.12:616][357]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=207.046 Y=255.595 +[2025.06.16-10.28.12:616][357]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=207.046 Y=255.595 +[2025.06.16-10.28.12:625][358]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=208.474 Y=258.450 +[2025.06.16-10.28.12:625][358]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=208.474 Y=258.450 +[2025.06.16-10.28.12:626][358]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=208.474 Y=258.450 +[2025.06.16-10.28.12:634][359]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=211.330 Y=262.734 +[2025.06.16-10.28.12:635][359]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=211.330 Y=262.734 +[2025.06.16-10.28.12:635][359]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=211.330 Y=262.734 +[2025.06.16-10.28.12:643][360]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=265.590 +[2025.06.16-10.28.12:643][360]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=265.590 +[2025.06.16-10.28.12:643][360]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=265.590 +[2025.06.16-10.28.12:651][361]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=268.446 +[2025.06.16-10.28.12:651][361]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=268.446 +[2025.06.16-10.28.12:651][361]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=268.446 +[2025.06.16-10.28.12:660][362]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.753 Y=271.302 +[2025.06.16-10.28.12:660][362]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=222.753 Y=271.302 +[2025.06.16-10.28.12:661][362]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=222.753 Y=271.302 +[2025.06.16-10.28.12:669][363]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=277.013 +[2025.06.16-10.28.12:669][363]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=277.013 +[2025.06.16-10.28.12:669][363]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=277.013 +[2025.06.16-10.28.12:677][364]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=277.013 +[2025.06.16-10.28.12:677][364]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=277.013 +[2025.06.16-10.28.12:678][364]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=277.013 +[2025.06.16-10.28.12:686][365]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:686][365]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:686][365]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:694][366]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:694][366]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:694][366]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:702][367]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:702][367]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:702][367]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:711][368]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:711][368]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:711][368]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:718][369]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:719][369]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:719][369]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:727][370]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:728][370]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:728][370]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:736][371]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:736][371]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:736][371]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:745][372]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:745][372]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:745][372]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:753][373]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:753][373]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:753][373]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:762][374]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:762][374]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:762][374]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:770][375]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:770][375]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:770][375]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:778][376]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:778][376]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:778][376]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:787][377]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:788][377]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:788][377]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:796][378]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:796][378]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:796][378]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:805][379]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:805][379]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:805][379]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:812][380]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:813][380]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:813][380]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:821][381]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:821][381]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:821][381]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:829][382]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:829][382]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:829][382]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:837][383]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:837][383]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:837][383]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:846][384]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:846][384]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:846][384]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:854][385]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:855][385]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:855][385]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:862][386]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:862][386]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:862][386]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:872][387]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:872][387]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:872][387]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:881][388]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:881][388]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:881][388]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:890][389]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:890][389]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:890][389]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:898][390]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:898][390]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:898][390]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:905][391]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:905][391]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:907][391]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:914][392]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:914][392]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:914][392]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:923][393]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:923][393]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:923][393]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:930][394]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:930][394]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:930][394]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:940][395]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:940][395]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:940][395]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:948][396]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=281.297 +[2025.06.16-10.28.12:948][396]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=281.297 +[2025.06.16-10.28.12:949][396]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=281.297 +[2025.06.16-10.28.12:957][397]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=287.008 +[2025.06.16-10.28.12:957][397]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=287.008 +[2025.06.16-10.28.12:957][397]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=287.008 +[2025.06.16-10.28.12:962][398]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.28.12:965][398]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=301.287 +[2025.06.16-10.28.12:965][398]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=301.287 +[2025.06.16-10.28.12:965][398]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=301.287 +[2025.06.16-10.28.12:974][399]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=306.999 +[2025.06.16-10.28.12:974][399]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=306.999 +[2025.06.16-10.28.12:974][399]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=306.999 +[2025.06.16-10.28.12:983][400]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=308.427 +[2025.06.16-10.28.12:983][400]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=308.427 +[2025.06.16-10.28.12:983][400]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=308.427 +[2025.06.16-10.28.12:992][401]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=311.283 +[2025.06.16-10.28.12:992][401]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=311.283 +[2025.06.16-10.28.12:992][401]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=311.283 +[2025.06.16-10.28.13:001][402]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=319.850 +[2025.06.16-10.28.13:001][402]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=319.850 +[2025.06.16-10.28.13:001][402]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=319.850 +[2025.06.16-10.28.13:009][403]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=331.273 +[2025.06.16-10.28.13:010][403]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=331.273 +[2025.06.16-10.28.13:010][403]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=331.273 +[2025.06.16-10.28.13:018][404]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=344.125 +[2025.06.16-10.28.13:018][404]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=344.125 +[2025.06.16-10.28.13:018][404]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=344.125 +[2025.06.16-10.28.13:025][405]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=351.264 +[2025.06.16-10.28.13:025][405]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=351.264 +[2025.06.16-10.28.13:027][405]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=351.264 +[2025.06.16-10.28.13:029][405]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3262.797119 +[2025.06.16-10.28.13:035][406]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=352.692 +[2025.06.16-10.28.13:035][406]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=352.692 +[2025.06.16-10.28.13:035][406]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=352.692 +[2025.06.16-10.28.13:043][407]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=359.831 +[2025.06.16-10.28.13:043][407]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=359.831 +[2025.06.16-10.28.13:044][407]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=359.831 +[2025.06.16-10.28.13:051][408]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=362.687 +[2025.06.16-10.28.13:052][408]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=362.687 +[2025.06.16-10.28.13:052][408]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=362.687 +[2025.06.16-10.28.13:059][409]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=364.115 +[2025.06.16-10.28.13:060][409]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=364.115 +[2025.06.16-10.28.13:060][409]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=364.115 +[2025.06.16-10.28.13:068][410]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=366.971 +[2025.06.16-10.28.13:068][410]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=366.971 +[2025.06.16-10.28.13:068][410]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=366.971 +[2025.06.16-10.28.13:077][411]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=368.399 +[2025.06.16-10.28.13:078][411]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=368.399 +[2025.06.16-10.28.13:078][411]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=368.399 +[2025.06.16-10.28.13:085][412]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=369.827 +[2025.06.16-10.28.13:085][412]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=369.827 +[2025.06.16-10.28.13:085][412]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=369.827 +[2025.06.16-10.28.13:094][413]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=374.111 +[2025.06.16-10.28.13:094][413]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=374.111 +[2025.06.16-10.28.13:094][413]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=374.111 +[2025.06.16-10.28.13:102][414]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=376.966 +[2025.06.16-10.28.13:102][414]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=376.966 +[2025.06.16-10.28.13:102][414]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=376.966 +[2025.06.16-10.28.13:110][415]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=376.966 +[2025.06.16-10.28.13:111][415]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=376.966 +[2025.06.16-10.28.13:111][415]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=376.966 +[2025.06.16-10.28.13:119][416]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=381.250 +[2025.06.16-10.28.13:119][416]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=381.250 +[2025.06.16-10.28.13:119][416]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=381.250 +[2025.06.16-10.28.13:128][417]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.753 Y=385.534 +[2025.06.16-10.28.13:128][417]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=222.753 Y=385.534 +[2025.06.16-10.28.13:128][417]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=222.753 Y=385.534 +[2025.06.16-10.28.13:136][418]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.753 Y=388.390 +[2025.06.16-10.28.13:136][418]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=222.753 Y=388.390 +[2025.06.16-10.28.13:137][418]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=222.753 Y=388.390 +[2025.06.16-10.28.13:143][419]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=396.957 +[2025.06.16-10.28.13:143][419]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=396.957 +[2025.06.16-10.28.13:145][419]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=396.957 +[2025.06.16-10.28.13:153][420]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=405.524 +[2025.06.16-10.28.13:153][420]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=405.524 +[2025.06.16-10.28.13:153][420]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=405.524 +[2025.06.16-10.28.13:161][421]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=406.952 +[2025.06.16-10.28.13:162][421]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=406.952 +[2025.06.16-10.28.13:162][421]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=406.952 +[2025.06.16-10.28.13:169][422]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=415.520 +[2025.06.16-10.28.13:169][422]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=415.520 +[2025.06.16-10.28.13:169][422]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=415.520 +[2025.06.16-10.28.13:179][423]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=419.803 +[2025.06.16-10.28.13:179][423]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=419.803 +[2025.06.16-10.28.13:179][423]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=419.803 +[2025.06.16-10.28.13:188][424]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=425.515 +[2025.06.16-10.28.13:188][424]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=425.515 +[2025.06.16-10.28.13:188][424]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=425.515 +[2025.06.16-10.28.13:195][425]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=431.227 +[2025.06.16-10.28.13:195][425]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=431.227 +[2025.06.16-10.28.13:195][425]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=431.227 +[2025.06.16-10.28.13:204][426]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=436.938 +[2025.06.16-10.28.13:204][426]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=436.938 +[2025.06.16-10.28.13:205][426]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=436.938 +[2025.06.16-10.28.13:212][427]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=444.078 +[2025.06.16-10.28.13:212][427]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=444.078 +[2025.06.16-10.28.13:212][427]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=444.078 +[2025.06.16-10.28.13:221][428]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=449.789 +[2025.06.16-10.28.13:221][428]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=449.789 +[2025.06.16-10.28.13:221][428]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=449.789 +[2025.06.16-10.28.13:230][429]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=455.501 +[2025.06.16-10.28.13:230][429]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=455.501 +[2025.06.16-10.28.13:230][429]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=455.501 +[2025.06.16-10.28.13:239][430]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=218.469 Y=456.929 +[2025.06.16-10.28.13:239][430]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=218.469 Y=456.929 +[2025.06.16-10.28.13:239][430]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=218.469 Y=456.929 +[2025.06.16-10.28.13:247][431]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=464.068 +[2025.06.16-10.28.13:247][431]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=464.068 +[2025.06.16-10.28.13:247][431]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=464.068 +[2025.06.16-10.28.13:256][432]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=468.352 +[2025.06.16-10.28.13:256][432]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=468.352 +[2025.06.16-10.28.13:256][432]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=468.352 +[2025.06.16-10.28.13:264][433]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=472.636 +[2025.06.16-10.28.13:264][433]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=472.636 +[2025.06.16-10.28.13:264][433]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=472.636 +[2025.06.16-10.28.13:272][434]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=476.919 +[2025.06.16-10.28.13:272][434]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=476.919 +[2025.06.16-10.28.13:273][434]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=476.919 +[2025.06.16-10.28.13:282][435]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=481.203 +[2025.06.16-10.28.13:282][435]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=481.203 +[2025.06.16-10.28.13:282][435]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=481.203 +[2025.06.16-10.28.13:285][435]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.28.13:285][435]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3263.043457, Update Interval: 357.678162 +[2025.06.16-10.28.13:290][436]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=481.203 +[2025.06.16-10.28.13:290][436]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=481.203 +[2025.06.16-10.28.13:290][436]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=481.203 +[2025.06.16-10.28.13:298][437]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=485.487 +[2025.06.16-10.28.13:299][437]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=485.487 +[2025.06.16-10.28.13:299][437]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=485.487 +[2025.06.16-10.28.13:307][438]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=222.753 Y=486.915 +[2025.06.16-10.28.13:307][438]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=222.753 Y=486.915 +[2025.06.16-10.28.13:307][438]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=222.753 Y=486.915 +[2025.06.16-10.28.13:316][439]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=488.343 +[2025.06.16-10.28.13:316][439]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=488.343 +[2025.06.16-10.28.13:316][439]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=488.343 +[2025.06.16-10.28.13:324][440]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=489.771 +[2025.06.16-10.28.13:324][440]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=489.771 +[2025.06.16-10.28.13:324][440]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=489.771 +[2025.06.16-10.28.13:332][441]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=224.181 Y=491.199 +[2025.06.16-10.28.13:332][441]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=224.181 Y=491.199 +[2025.06.16-10.28.13:332][441]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=224.181 Y=491.199 +[2025.06.16-10.28.13:340][442]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=492.626 +[2025.06.16-10.28.13:340][442]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=492.626 +[2025.06.16-10.28.13:340][442]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=492.626 +[2025.06.16-10.28.13:348][443]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=492.626 +[2025.06.16-10.28.13:348][443]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=492.626 +[2025.06.16-10.28.13:348][443]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=492.626 +[2025.06.16-10.28.13:357][444]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=494.054 +[2025.06.16-10.28.13:357][444]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=494.054 +[2025.06.16-10.28.13:357][444]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=494.054 +[2025.06.16-10.28.13:364][445]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=494.054 +[2025.06.16-10.28.13:364][445]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=494.054 +[2025.06.16-10.28.13:364][445]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=494.054 +[2025.06.16-10.28.13:373][446]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=494.054 +[2025.06.16-10.28.13:373][446]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=494.054 +[2025.06.16-10.28.13:374][446]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=494.054 +[2025.06.16-10.28.13:382][447]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=495.482 +[2025.06.16-10.28.13:382][447]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=495.482 +[2025.06.16-10.28.13:383][447]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=495.482 +[2025.06.16-10.28.13:392][448]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=225.609 Y=495.482 +[2025.06.16-10.28.13:392][448]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=225.609 Y=495.482 +[2025.06.16-10.28.13:392][448]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=225.609 Y=495.482 +[2025.06.16-10.28.13:400][449]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=496.910 +[2025.06.16-10.28.13:400][449]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=496.910 +[2025.06.16-10.28.13:400][449]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=496.910 +[2025.06.16-10.28.13:409][450]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=498.338 +[2025.06.16-10.28.13:409][450]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=498.338 +[2025.06.16-10.28.13:409][450]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=498.338 +[2025.06.16-10.28.13:416][451]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=228.464 Y=498.338 +[2025.06.16-10.28.13:416][451]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=228.464 Y=498.338 +[2025.06.16-10.28.13:416][451]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=228.464 Y=498.338 +[2025.06.16-10.28.13:425][452]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.892 Y=498.338 +[2025.06.16-10.28.13:425][452]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=229.892 Y=498.338 +[2025.06.16-10.28.13:425][452]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=229.892 Y=498.338 +[2025.06.16-10.28.13:433][453]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.892 Y=499.766 +[2025.06.16-10.28.13:433][453]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=229.892 Y=499.766 +[2025.06.16-10.28.13:434][453]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=229.892 Y=499.766 +[2025.06.16-10.28.13:442][454]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.892 Y=501.194 +[2025.06.16-10.28.13:442][454]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=229.892 Y=501.194 +[2025.06.16-10.28.13:442][454]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=229.892 Y=501.194 +[2025.06.16-10.28.13:450][455]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=231.320 Y=504.050 +[2025.06.16-10.28.13:451][455]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=231.320 Y=504.050 +[2025.06.16-10.28.13:451][455]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=231.320 Y=504.050 +[2025.06.16-10.28.13:459][456]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=504.050 +[2025.06.16-10.28.13:459][456]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=504.050 +[2025.06.16-10.28.13:459][456]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=504.050 +[2025.06.16-10.28.13:467][457]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=505.478 +[2025.06.16-10.28.13:467][457]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=505.478 +[2025.06.16-10.28.13:467][457]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=505.478 +[2025.06.16-10.28.13:475][458]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=232.748 Y=505.478 +[2025.06.16-10.28.13:476][458]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=232.748 Y=505.478 +[2025.06.16-10.28.13:476][458]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=232.748 Y=505.478 +[2025.06.16-10.28.13:484][459]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.176 Y=506.905 +[2025.06.16-10.28.13:484][459]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=234.176 Y=506.905 +[2025.06.16-10.28.13:484][459]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=234.176 Y=506.905 +[2025.06.16-10.28.13:492][460]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=506.905 +[2025.06.16-10.28.13:493][460]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=506.905 +[2025.06.16-10.28.13:493][460]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=506.905 +[2025.06.16-10.28.13:501][461]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:501][461]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:501][461]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:509][462]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:509][462]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:509][462]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:518][463]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:518][463]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:518][463]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:525][464]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:525][464]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:525][464]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:535][465]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:535][465]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:535][465]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:543][466]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:543][466]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:543][466]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:551][467]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:552][467]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:552][467]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:559][468]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:559][468]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:559][468]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:567][469]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:567][469]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:567][469]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:578][470]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:578][470]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:578][470]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:585][471]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:585][471]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:586][471]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:594][472]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:594][472]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:594][472]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:602][473]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:602][473]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:602][473]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:610][474]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:610][474]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:611][474]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:619][475]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:619][475]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:619][475]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:627][476]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:628][476]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:628][476]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:636][477]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:636][477]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:636][477]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:644][478]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=508.333 +[2025.06.16-10.28.13:645][478]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=508.333 +[2025.06.16-10.28.13:645][478]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=508.333 +[2025.06.16-10.28.13:653][479]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=506.905 +[2025.06.16-10.28.13:653][479]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=506.905 +[2025.06.16-10.28.13:653][479]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=506.905 +[2025.06.16-10.28.13:661][480]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=506.905 +[2025.06.16-10.28.13:661][480]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=506.905 +[2025.06.16-10.28.13:661][480]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=506.905 +[2025.06.16-10.28.13:669][481]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=506.905 +[2025.06.16-10.28.13:669][481]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=506.905 +[2025.06.16-10.28.13:669][481]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=506.905 +[2025.06.16-10.28.13:677][482]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=506.905 +[2025.06.16-10.28.13:677][482]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=506.905 +[2025.06.16-10.28.13:677][482]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=506.905 +[2025.06.16-10.28.13:686][483]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=505.478 +[2025.06.16-10.28.13:686][483]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=505.478 +[2025.06.16-10.28.13:686][483]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=505.478 +[2025.06.16-10.28.13:694][484]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=235.604 Y=505.478 +[2025.06.16-10.28.13:694][484]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=235.604 Y=505.478 +[2025.06.16-10.28.13:694][484]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=235.604 Y=505.478 +[2025.06.16-10.28.13:703][485]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=505.478 +[2025.06.16-10.28.13:703][485]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=505.478 +[2025.06.16-10.28.13:703][485]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=505.478 +[2025.06.16-10.28.13:712][486]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:712][486]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:712][486]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:720][487]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:720][487]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:720][487]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:728][488]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:729][488]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:729][488]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:738][489]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:738][489]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:738][489]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:745][490]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:745][490]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:745][490]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:755][491]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:755][491]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:755][491]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:763][492]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:763][492]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:763][492]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:772][493]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:773][493]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:773][493]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:780][494]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:780][494]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:780][494]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:788][495]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:788][495]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:788][495]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:797][496]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:797][496]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:797][496]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:804][497]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=504.050 +[2025.06.16-10.28.13:804][497]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=504.050 +[2025.06.16-10.28.13:805][497]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=504.050 +[2025.06.16-10.28.13:814][498]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=505.478 +[2025.06.16-10.28.13:814][498]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=505.478 +[2025.06.16-10.28.13:814][498]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=505.478 +[2025.06.16-10.28.13:822][499]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=505.478 +[2025.06.16-10.28.13:822][499]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=505.478 +[2025.06.16-10.28.13:822][499]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=505.478 +[2025.06.16-10.28.13:830][500]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=508.333 +[2025.06.16-10.28.13:831][500]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=508.333 +[2025.06.16-10.28.13:831][500]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=508.333 +[2025.06.16-10.28.13:838][501]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=509.761 +[2025.06.16-10.28.13:839][501]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=509.761 +[2025.06.16-10.28.13:839][501]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=509.761 +[2025.06.16-10.28.13:847][502]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=509.761 +[2025.06.16-10.28.13:847][502]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=509.761 +[2025.06.16-10.28.13:847][502]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=509.761 +[2025.06.16-10.28.13:855][503]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=511.189 +[2025.06.16-10.28.13:855][503]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=511.189 +[2025.06.16-10.28.13:855][503]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=511.189 +[2025.06.16-10.28.13:863][504]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=512.617 +[2025.06.16-10.28.13:863][504]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=512.617 +[2025.06.16-10.28.13:863][504]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=512.617 +[2025.06.16-10.28.13:873][505]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=514.045 +[2025.06.16-10.28.13:873][505]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=514.045 +[2025.06.16-10.28.13:873][505]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=514.045 +[2025.06.16-10.28.13:881][506]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=515.473 +[2025.06.16-10.28.13:881][506]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=515.473 +[2025.06.16-10.28.13:881][506]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=515.473 +[2025.06.16-10.28.13:889][507]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=515.473 +[2025.06.16-10.28.13:889][507]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=515.473 +[2025.06.16-10.28.13:889][507]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=515.473 +[2025.06.16-10.28.13:897][508]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=515.473 +[2025.06.16-10.28.13:897][508]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=515.473 +[2025.06.16-10.28.13:897][508]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=515.473 +[2025.06.16-10.28.13:906][509]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=515.473 +[2025.06.16-10.28.13:906][509]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=515.473 +[2025.06.16-10.28.13:906][509]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=515.473 +[2025.06.16-10.28.13:913][510]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:913][510]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:913][510]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:923][511]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:923][511]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:923][511]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:930][512]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:930][512]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:930][512]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:938][513]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:938][513]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:938][513]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:947][514]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:947][514]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:947][514]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:955][515]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:955][515]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:955][515]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:964][516]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:964][516]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:964][516]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:972][517]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:972][517]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:972][517]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:980][518]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:980][518]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:980][518]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:988][519]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:988][519]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:988][519]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.13:997][520]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.13:997][520]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.13:998][520]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:005][521]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:005][521]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:005][521]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:013][522]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:014][522]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:014][522]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:023][523]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:023][523]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:023][523]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:032][524]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:032][524]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:032][524]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:039][525]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:040][525]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:040][525]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:048][526]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=516.901 +[2025.06.16-10.28.14:048][526]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=516.901 +[2025.06.16-10.28.14:048][526]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=516.901 +[2025.06.16-10.28.14:058][527]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=518.329 +[2025.06.16-10.28.14:058][527]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=518.329 +[2025.06.16-10.28.14:058][527]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=518.329 +[2025.06.16-10.28.14:065][528]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=519.757 +[2025.06.16-10.28.14:065][528]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=519.757 +[2025.06.16-10.28.14:065][528]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=519.757 +[2025.06.16-10.28.14:075][529]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=519.757 +[2025.06.16-10.28.14:075][529]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=519.757 +[2025.06.16-10.28.14:075][529]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=519.757 +[2025.06.16-10.28.14:084][530]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=521.185 +[2025.06.16-10.28.14:084][530]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=521.185 +[2025.06.16-10.28.14:084][530]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=521.185 +[2025.06.16-10.28.14:093][531]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=522.612 +[2025.06.16-10.28.14:093][531]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=522.612 +[2025.06.16-10.28.14:093][531]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=522.612 +[2025.06.16-10.28.14:102][532]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=524.040 +[2025.06.16-10.28.14:102][532]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=524.040 +[2025.06.16-10.28.14:102][532]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=524.040 +[2025.06.16-10.28.14:111][533]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=526.896 +[2025.06.16-10.28.14:111][533]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=526.896 +[2025.06.16-10.28.14:111][533]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=526.896 +[2025.06.16-10.28.14:119][534]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=529.752 +[2025.06.16-10.28.14:120][534]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=529.752 +[2025.06.16-10.28.14:120][534]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=529.752 +[2025.06.16-10.28.14:127][535]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=532.608 +[2025.06.16-10.28.14:127][535]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=532.608 +[2025.06.16-10.28.14:127][535]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=532.608 +[2025.06.16-10.28.14:137][536]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=535.464 +[2025.06.16-10.28.14:137][536]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=535.464 +[2025.06.16-10.28.14:137][536]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=535.464 +[2025.06.16-10.28.14:144][537]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=242.743 Y=536.891 +[2025.06.16-10.28.14:145][537]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=242.743 Y=536.891 +[2025.06.16-10.28.14:145][537]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=242.743 Y=536.891 +[2025.06.16-10.28.14:154][538]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=242.743 Y=538.319 +[2025.06.16-10.28.14:154][538]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=242.743 Y=538.319 +[2025.06.16-10.28.14:154][538]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=242.743 Y=538.319 +[2025.06.16-10.28.14:163][539]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=242.743 Y=539.747 +[2025.06.16-10.28.14:163][539]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=242.743 Y=539.747 +[2025.06.16-10.28.14:163][539]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=242.743 Y=539.747 +[2025.06.16-10.28.14:172][540]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:173][540]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:173][540]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:181][541]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:181][541]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:181][541]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:189][542]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:189][542]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:189][542]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:197][543]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:197][543]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:197][543]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:205][544]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:206][544]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:206][544]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:214][545]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:214][545]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:214][545]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:222][546]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=541.175 +[2025.06.16-10.28.14:222][546]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=541.175 +[2025.06.16-10.28.14:222][546]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=541.175 +[2025.06.16-10.28.14:231][547]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:231][547]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:231][547]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:238][548]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:238][548]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:239][548]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:247][549]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:247][549]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:248][549]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:256][550]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:256][550]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:257][550]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:264][551]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:264][551]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:264][551]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:272][552]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:272][552]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:274][552]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:281][553]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:281][553]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:281][553]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:291][554]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:291][554]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:291][554]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:299][555]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=542.603 +[2025.06.16-10.28.14:299][555]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=542.603 +[2025.06.16-10.28.14:300][555]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=542.603 +[2025.06.16-10.28.14:308][556]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=544.031 +[2025.06.16-10.28.14:308][556]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=544.031 +[2025.06.16-10.28.14:308][556]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=544.031 +[2025.06.16-10.28.14:317][557]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=545.459 +[2025.06.16-10.28.14:318][557]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=545.459 +[2025.06.16-10.28.14:318][557]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=545.459 +[2025.06.16-10.28.14:325][558]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=545.459 +[2025.06.16-10.28.14:325][558]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=545.459 +[2025.06.16-10.28.14:325][558]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=545.459 +[2025.06.16-10.28.14:334][559]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=546.887 +[2025.06.16-10.28.14:334][559]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=546.887 +[2025.06.16-10.28.14:334][559]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=546.887 +[2025.06.16-10.28.14:342][560]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=546.887 +[2025.06.16-10.28.14:342][560]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=546.887 +[2025.06.16-10.28.14:342][560]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=546.887 +[2025.06.16-10.28.14:351][561]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=548.315 +[2025.06.16-10.28.14:351][561]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=548.315 +[2025.06.16-10.28.14:351][561]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=548.315 +[2025.06.16-10.28.14:359][562]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=551.170 +[2025.06.16-10.28.14:359][562]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=551.170 +[2025.06.16-10.28.14:359][562]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=551.170 +[2025.06.16-10.28.14:369][563]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=552.598 +[2025.06.16-10.28.14:369][563]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=552.598 +[2025.06.16-10.28.14:369][563]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=552.598 +[2025.06.16-10.28.14:377][564]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=556.882 +[2025.06.16-10.28.14:377][564]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=556.882 +[2025.06.16-10.28.14:377][564]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=556.882 +[2025.06.16-10.28.14:385][565]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=558.310 +[2025.06.16-10.28.14:385][565]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=558.310 +[2025.06.16-10.28.14:385][565]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=558.310 +[2025.06.16-10.28.14:394][566]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=562.594 +[2025.06.16-10.28.14:394][566]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=562.594 +[2025.06.16-10.28.14:394][566]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=562.594 +[2025.06.16-10.28.14:402][567]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=565.449 +[2025.06.16-10.28.14:403][567]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=565.449 +[2025.06.16-10.28.14:403][567]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=565.449 +[2025.06.16-10.28.14:411][568]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=566.877 +[2025.06.16-10.28.14:411][568]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=566.877 +[2025.06.16-10.28.14:411][568]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=566.877 +[2025.06.16-10.28.14:421][569]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=575.445 +[2025.06.16-10.28.14:421][569]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=575.445 +[2025.06.16-10.28.14:421][569]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=575.445 +[2025.06.16-10.28.14:429][570]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=579.729 +[2025.06.16-10.28.14:429][570]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=579.729 +[2025.06.16-10.28.14:430][570]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=579.729 +[2025.06.16-10.28.14:438][571]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=581.156 +[2025.06.16-10.28.14:438][571]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=581.156 +[2025.06.16-10.28.14:438][571]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=581.156 +[2025.06.16-10.28.14:441][572]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=171.000 Y=510.000 +[2025.06.16-10.28.14:447][572]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=584.012 +[2025.06.16-10.28.14:447][572]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=584.012 +[2025.06.16-10.28.14:447][572]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=584.012 +[2025.06.16-10.28.14:455][573]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=585.440 +[2025.06.16-10.28.14:455][573]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=585.440 +[2025.06.16-10.28.14:455][573]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=585.440 +[2025.06.16-10.28.14:464][574]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=586.868 +[2025.06.16-10.28.14:464][574]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=586.868 +[2025.06.16-10.28.14:464][574]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=586.868 +[2025.06.16-10.28.14:471][575]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=586.868 +[2025.06.16-10.28.14:471][575]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=586.868 +[2025.06.16-10.28.14:471][575]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=586.868 +[2025.06.16-10.28.14:480][576]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=586.868 +[2025.06.16-10.28.14:480][576]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=586.868 +[2025.06.16-10.28.14:480][576]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=586.868 +[2025.06.16-10.28.14:490][577]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:490][577]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:491][577]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:498][578]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:498][578]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:498][578]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:507][579]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:507][579]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:507][579]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:517][580]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:517][580]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:517][580]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:525][581]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:525][581]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:525][581]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:534][582]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:534][582]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:534][582]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:543][583]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:544][583]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:544][583]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:551][584]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:551][584]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:551][584]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:560][585]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:560][585]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:560][585]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:568][586]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:569][586]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:569][586]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:577][587]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:577][587]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:577][587]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:586][588]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:586][588]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:586][588]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:594][589]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:595][589]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:595][589]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:603][590]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:603][590]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:603][590]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:611][591]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:612][591]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:612][591]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:621][592]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:621][592]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:621][592]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:629][593]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:629][593]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:630][593]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:638][594]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:638][594]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:638][594]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:647][595]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:647][595]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:647][595]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:655][596]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:655][596]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:655][596]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:663][597]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:663][597]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:663][597]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:672][598]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:672][598]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:672][598]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:681][599]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:681][599]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:681][599]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:690][600]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:690][600]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:690][600]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:698][601]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:698][601]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:698][601]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:707][602]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:707][602]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:707][602]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:715][603]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:715][603]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:716][603]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:724][604]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:724][604]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:724][604]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:732][605]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:732][605]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:732][605]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:741][606]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:741][606]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:741][606]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:750][607]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:750][607]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:750][607]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:758][608]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:758][608]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:758][608]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:765][609]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:767][609]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:767][609]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:774][610]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:775][610]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:775][610]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:782][611]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:783][611]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:783][611]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:791][612]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:791][612]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:791][612]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:800][613]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:800][613]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:800][613]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:810][614]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:810][614]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:810][614]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:817][615]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:817][615]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:818][615]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:825][616]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:825][616]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:825][616]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:833][617]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:833][617]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:833][617]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:843][618]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:843][618]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:843][618]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:851][619]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:851][619]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:851][619]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:859][620]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:859][620]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:860][620]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:868][621]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:868][621]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:868][621]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:875][622]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:875][622]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:875][622]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:884][623]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:884][623]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:884][623]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:895][624]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:895][624]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:895][624]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:904][625]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:905][625]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:905][625]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:912][626]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:913][626]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:913][626]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:922][627]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:922][627]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:922][627]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:931][628]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:931][628]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:931][628]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:939][629]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:939][629]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:939][629]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:950][630]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:950][630]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:950][630]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:958][631]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:958][631]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:958][631]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:963][632]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.28.14:967][632]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:967][632]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:967][632]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:977][633]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:977][633]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:977][633]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:986][634]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:986][634]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:986][634]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.14:995][635]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.14:997][635]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.14:997][635]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:004][636]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:005][636]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:005][636]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:013][637]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:014][637]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:014][637]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:023][638]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:023][638]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:023][638]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:032][639]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:032][639]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:032][639]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:041][640]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:042][640]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:042][640]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:051][641]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:051][641]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:051][641]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:061][642]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:062][642]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:062][642]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:072][643]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:072][643]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:072][643]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:082][644]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:082][644]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:082][644]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:091][645]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:091][645]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:091][645]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:102][646]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:102][646]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:102][646]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:110][647]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:110][647]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:110][647]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:120][648]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:120][648]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:120][648]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:129][649]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:129][649]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:129][649]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:139][650]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:139][650]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:139][650]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:148][651]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:149][651]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:149][651]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:158][652]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:158][652]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:158][652]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:167][653]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:167][653]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:167][653]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:175][654]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:175][654]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:175][654]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:184][655]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:184][655]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:184][655]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:192][656]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:192][656]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:192][656]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:201][657]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:201][657]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:201][657]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:210][658]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:210][658]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:210][658]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:220][659]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:220][659]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:220][659]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:229][660]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:229][660]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:229][660]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:238][661]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:239][661]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:239][661]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:248][662]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:248][662]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:248][662]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:256][663]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:256][663]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:256][663]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:264][664]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=588.296 +[2025.06.16-10.28.15:264][664]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=588.296 +[2025.06.16-10.28.15:264][664]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=588.296 +[2025.06.16-10.28.15:274][665]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=585.440 +[2025.06.16-10.28.15:274][665]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=585.440 +[2025.06.16-10.28.15:274][665]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=585.440 +[2025.06.16-10.28.15:281][666]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=584.012 +[2025.06.16-10.28.15:281][666]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=584.012 +[2025.06.16-10.28.15:281][666]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=584.012 +[2025.06.16-10.28.15:290][667]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=237.032 Y=584.012 +[2025.06.16-10.28.15:290][667]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=237.032 Y=584.012 +[2025.06.16-10.28.15:290][667]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=237.032 Y=584.012 +[2025.06.16-10.28.15:301][668]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=581.156 +[2025.06.16-10.28.15:301][668]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=581.156 +[2025.06.16-10.28.15:301][668]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=581.156 +[2025.06.16-10.28.15:310][669]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=578.301 +[2025.06.16-10.28.15:310][669]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=578.301 +[2025.06.16-10.28.15:310][669]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=578.301 +[2025.06.16-10.28.15:318][670]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=239.888 Y=576.873 +[2025.06.16-10.28.15:318][670]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=239.888 Y=576.873 +[2025.06.16-10.28.15:320][670]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=239.888 Y=576.873 +[2025.06.16-10.28.15:328][671]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=241.316 Y=574.017 +[2025.06.16-10.28.15:328][671]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=241.316 Y=574.017 +[2025.06.16-10.28.15:328][671]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=241.316 Y=574.017 +[2025.06.16-10.28.15:338][672]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=569.733 +[2025.06.16-10.28.15:338][672]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=569.733 +[2025.06.16-10.28.15:338][672]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=569.733 +[2025.06.16-10.28.15:347][673]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=244.171 Y=568.305 +[2025.06.16-10.28.15:347][673]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=244.171 Y=568.305 +[2025.06.16-10.28.15:347][673]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=244.171 Y=568.305 +[2025.06.16-10.28.15:356][674]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=247.027 Y=564.022 +[2025.06.16-10.28.15:356][674]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=247.027 Y=564.022 +[2025.06.16-10.28.15:357][674]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=247.027 Y=564.022 +[2025.06.16-10.28.15:365][675]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=248.455 Y=561.166 +[2025.06.16-10.28.15:365][675]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=248.455 Y=561.166 +[2025.06.16-10.28.15:365][675]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=248.455 Y=561.166 +[2025.06.16-10.28.15:375][676]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=251.311 Y=556.882 +[2025.06.16-10.28.15:375][676]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=251.311 Y=556.882 +[2025.06.16-10.28.15:375][676]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=251.311 Y=556.882 +[2025.06.16-10.28.15:383][677]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=254.167 Y=551.170 +[2025.06.16-10.28.15:383][677]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=254.167 Y=551.170 +[2025.06.16-10.28.15:384][677]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=254.167 Y=551.170 +[2025.06.16-10.28.15:393][678]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=258.450 Y=544.031 +[2025.06.16-10.28.15:393][678]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=258.450 Y=544.031 +[2025.06.16-10.28.15:393][678]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=258.450 Y=544.031 +[2025.06.16-10.28.15:402][679]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=258.450 Y=542.603 +[2025.06.16-10.28.15:402][679]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=258.450 Y=542.603 +[2025.06.16-10.28.15:402][679]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=258.450 Y=542.603 +[2025.06.16-10.28.15:410][680]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=262.734 Y=534.036 +[2025.06.16-10.28.15:412][680]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=262.734 Y=534.036 +[2025.06.16-10.28.15:412][680]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=262.734 Y=534.036 +[2025.06.16-10.28.15:420][681]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=265.590 Y=528.324 +[2025.06.16-10.28.15:420][681]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=265.590 Y=528.324 +[2025.06.16-10.28.15:420][681]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=265.590 Y=528.324 +[2025.06.16-10.28.15:428][682]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=267.018 Y=522.612 +[2025.06.16-10.28.15:428][682]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=267.018 Y=522.612 +[2025.06.16-10.28.15:429][682]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=267.018 Y=522.612 +[2025.06.16-10.28.15:438][683]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=269.874 Y=512.617 +[2025.06.16-10.28.15:438][683]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=269.874 Y=512.617 +[2025.06.16-10.28.15:438][683]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=269.874 Y=512.617 +[2025.06.16-10.28.15:447][684]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=271.302 Y=506.905 +[2025.06.16-10.28.15:447][684]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=271.302 Y=506.905 +[2025.06.16-10.28.15:448][684]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=271.302 Y=506.905 +[2025.06.16-10.28.15:457][685]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=272.729 Y=502.622 +[2025.06.16-10.28.15:457][685]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=272.729 Y=502.622 +[2025.06.16-10.28.15:457][685]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=272.729 Y=502.622 +[2025.06.16-10.28.15:465][686]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=274.157 Y=496.910 +[2025.06.16-10.28.15:465][686]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=274.157 Y=496.910 +[2025.06.16-10.28.15:465][686]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=274.157 Y=496.910 +[2025.06.16-10.28.15:474][687]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=494.054 +[2025.06.16-10.28.15:475][687]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=494.054 +[2025.06.16-10.28.15:475][687]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=494.054 +[2025.06.16-10.28.15:484][688]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:484][688]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:485][688]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:493][689]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:493][689]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:494][689]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:502][690]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:502][690]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:503][690]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:511][691]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:511][691]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:511][691]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:519][692]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:519][692]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:519][692]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:528][693]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:528][693]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:528][693]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:536][694]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=492.626 +[2025.06.16-10.28.15:536][694]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=492.626 +[2025.06.16-10.28.15:536][694]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=492.626 +[2025.06.16-10.28.15:544][695]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=499.766 +[2025.06.16-10.28.15:545][695]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=499.766 +[2025.06.16-10.28.15:545][695]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=499.766 +[2025.06.16-10.28.15:553][696]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=506.905 +[2025.06.16-10.28.15:553][696]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=506.905 +[2025.06.16-10.28.15:553][696]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=506.905 +[2025.06.16-10.28.15:561][697]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=519.757 +[2025.06.16-10.28.15:561][697]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=519.757 +[2025.06.16-10.28.15:561][697]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=519.757 +[2025.06.16-10.28.15:570][698]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=542.603 +[2025.06.16-10.28.15:570][698]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=542.603 +[2025.06.16-10.28.15:570][698]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=542.603 +[2025.06.16-10.28.15:578][699]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=274.157 Y=562.594 +[2025.06.16-10.28.15:578][699]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=274.157 Y=562.594 +[2025.06.16-10.28.15:579][699]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=274.157 Y=562.594 +[2025.06.16-10.28.15:588][700]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=274.157 Y=574.017 +[2025.06.16-10.28.15:588][700]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=274.157 Y=574.017 +[2025.06.16-10.28.15:588][700]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=274.157 Y=574.017 +[2025.06.16-10.28.15:592][701]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=195.000 Y=534.000 +[2025.06.16-10.28.15:598][701]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=271.302 Y=631.133 +[2025.06.16-10.28.15:598][701]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=271.302 Y=631.133 +[2025.06.16-10.28.15:598][701]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=271.302 Y=631.133 +[2025.06.16-10.28.15:608][702]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=271.302 Y=661.119 +[2025.06.16-10.28.15:608][702]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=271.302 Y=661.119 +[2025.06.16-10.28.15:608][702]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=271.302 Y=661.119 +[2025.06.16-10.28.15:617][703]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=272.729 Y=692.533 +[2025.06.16-10.28.15:617][703]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=272.729 Y=692.533 +[2025.06.16-10.28.15:617][703]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=272.729 Y=692.533 +[2025.06.16-10.28.15:625][704]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=278.441 Y=733.942 +[2025.06.16-10.28.15:625][704]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=278.441 Y=733.942 +[2025.06.16-10.28.15:625][704]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=278.441 Y=733.942 +[2025.06.16-10.28.15:633][705]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=281.297 Y=766.784 +[2025.06.16-10.28.15:633][705]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=281.297 Y=766.784 +[2025.06.16-10.28.15:634][705]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=281.297 Y=766.784 +[2025.06.16-10.28.15:642][706]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=281.297 Y=783.919 +[2025.06.16-10.28.15:642][706]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=281.297 Y=783.919 +[2025.06.16-10.28.15:642][706]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=281.297 Y=783.919 +[2025.06.16-10.28.15:651][707]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=278.441 Y=826.756 +[2025.06.16-10.28.15:651][707]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=278.441 Y=826.756 +[2025.06.16-10.28.15:651][707]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=278.441 Y=826.756 +[2025.06.16-10.28.15:660][708]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=272.729 Y=849.602 +[2025.06.16-10.28.15:660][708]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=272.729 Y=849.602 +[2025.06.16-10.28.15:660][708]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=272.729 Y=849.602 +[2025.06.16-10.28.15:669][709]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=265.590 Y=873.876 +[2025.06.16-10.28.15:669][709]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=265.590 Y=873.876 +[2025.06.16-10.28.15:669][709]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=265.590 Y=873.876 +[2025.06.16-10.28.15:678][710]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=248.455 Y=905.290 +[2025.06.16-10.28.15:678][710]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=248.455 Y=905.290 +[2025.06.16-10.28.15:678][710]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=248.455 Y=905.290 +[2025.06.16-10.28.15:687][711]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=238.460 Y=923.853 +[2025.06.16-10.28.15:687][711]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=238.460 Y=923.853 +[2025.06.16-10.28.15:688][711]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=238.460 Y=923.853 +[2025.06.16-10.28.15:696][712]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=229.892 Y=938.132 +[2025.06.16-10.28.15:696][712]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=229.892 Y=938.132 +[2025.06.16-10.28.15:696][712]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=229.892 Y=938.132 +[2025.06.16-10.28.15:703][713]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.325 Y=949.555 +[2025.06.16-10.28.15:705][713]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=221.325 Y=949.555 +[2025.06.16-10.28.15:705][713]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=221.325 Y=949.555 +[2025.06.16-10.28.15:713][714]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:713][714]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:713][714]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:721][715]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:721][715]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:721][715]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:730][716]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:730][716]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:730][716]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:738][717]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:739][717]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:739][717]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:746][718]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:746][718]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:747][718]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:755][719]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:755][719]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:755][719]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:763][720]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:764][720]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:764][720]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:771][721]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:772][721]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:772][721]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:779][722]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:779][722]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:779][722]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:788][723]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:788][723]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:788][723]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:797][724]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:797][724]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:797][724]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:805][725]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:805][725]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:805][725]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:813][726]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:814][726]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:814][726]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:821][727]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:821][727]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:821][727]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:830][728]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:830][728]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:830][728]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:838][729]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:838][729]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:838][729]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:847][730]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:847][730]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:847][730]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:854][731]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:855][731]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:855][731]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:864][732]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:864][732]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:864][732]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:871][733]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:871][733]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:871][733]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:880][734]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:881][734]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:881][734]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:888][735]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:888][735]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:888][735]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:897][736]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:897][736]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:897][736]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:904][737]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:905][737]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:905][737]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:913][738]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:914][738]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:914][738]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:922][739]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=214.185 Y=956.695 +[2025.06.16-10.28.15:922][739]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=214.185 Y=956.695 +[2025.06.16-10.28.15:922][739]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=214.185 Y=956.695 +[2025.06.16-10.28.15:930][740]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=217.041 Y=956.695 +[2025.06.16-10.28.15:930][740]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=217.041 Y=956.695 +[2025.06.16-10.28.15:930][740]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=217.041 Y=956.695 +[2025.06.16-10.28.15:939][741]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=219.897 Y=956.695 +[2025.06.16-10.28.15:939][741]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=219.897 Y=956.695 +[2025.06.16-10.28.15:939][741]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=219.897 Y=956.695 +[2025.06.16-10.28.15:947][742]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=227.037 Y=958.123 +[2025.06.16-10.28.15:947][742]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=227.037 Y=958.123 +[2025.06.16-10.28.15:947][742]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=227.037 Y=958.123 +[2025.06.16-10.28.15:957][743]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=234.176 Y=962.406 +[2025.06.16-10.28.15:957][743]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=234.176 Y=962.406 +[2025.06.16-10.28.15:957][743]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=234.176 Y=962.406 +[2025.06.16-10.28.15:965][744]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=242.743 Y=968.118 +[2025.06.16-10.28.15:966][744]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=242.743 Y=968.118 +[2025.06.16-10.28.15:966][744]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=242.743 Y=968.118 +[2025.06.16-10.28.15:974][745]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=245.599 Y=969.546 +[2025.06.16-10.28.15:974][745]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=245.599 Y=969.546 +[2025.06.16-10.28.15:974][745]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=245.599 Y=969.546 +[2025.06.16-10.28.15:983][746]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=254.167 Y=978.113 +[2025.06.16-10.28.15:983][746]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=254.167 Y=978.113 +[2025.06.16-10.28.15:983][746]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=254.167 Y=978.113 +[2025.06.16-10.28.15:991][747]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=259.878 Y=983.825 +[2025.06.16-10.28.15:991][747]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=259.878 Y=983.825 +[2025.06.16-10.28.15:992][747]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=259.878 Y=983.825 +[2025.06.16-10.28.15:999][748]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=265.590 Y=992.392 +[2025.06.16-10.28.15:999][748]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=265.590 Y=992.392 +[2025.06.16-10.28.15:999][748]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=265.590 Y=992.392 +[2025.06.16-10.28.16:008][749]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=269.874 Y=999.532 +[2025.06.16-10.28.16:008][749]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=269.874 Y=999.532 +[2025.06.16-10.28.16:008][749]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=269.874 Y=999.532 +[2025.06.16-10.28.16:017][750]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=272.729 Y=1006.671 +[2025.06.16-10.28.16:017][750]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=272.729 Y=1006.671 +[2025.06.16-10.28.16:017][750]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=272.729 Y=1006.671 +[2025.06.16-10.28.16:024][751]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=275.585 Y=1015.239 +[2025.06.16-10.28.16:025][751]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=275.585 Y=1015.239 +[2025.06.16-10.28.16:025][751]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=275.585 Y=1015.239 +[2025.06.16-10.28.16:035][752]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=278.441 Y=1029.518 +[2025.06.16-10.28.16:035][752]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=278.441 Y=1029.518 +[2025.06.16-10.28.16:035][752]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=278.441 Y=1029.518 +[2025.06.16-10.28.16:042][753]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=279.869 Y=1033.802 +[2025.06.16-10.28.16:042][753]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=279.869 Y=1033.802 +[2025.06.16-10.28.16:042][753]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=279.869 Y=1033.802 +[2025.06.16-10.28.16:051][754]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=281.297 Y=1039.513 +[2025.06.16-10.28.16:051][754]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=281.297 Y=1039.513 +[2025.06.16-10.28.16:051][754]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=281.297 Y=1039.513 +[2025.06.16-10.28.16:059][755]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=282.725 Y=1043.797 +[2025.06.16-10.28.16:059][755]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=282.725 Y=1043.797 +[2025.06.16-10.28.16:059][755]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=282.725 Y=1043.797 +[2025.06.16-10.28.16:068][756]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=282.725 Y=1049.508 +[2025.06.16-10.28.16:068][756]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=282.725 Y=1049.508 +[2025.06.16-10.28.16:068][756]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=282.725 Y=1049.508 +[2025.06.16-10.28.16:076][757]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=284.153 Y=1052.364 +[2025.06.16-10.28.16:076][757]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=284.153 Y=1052.364 +[2025.06.16-10.28.16:076][757]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=284.153 Y=1052.364 +[2025.06.16-10.28.16:085][758]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=284.153 Y=1055.220 +[2025.06.16-10.28.16:085][758]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=284.153 Y=1055.220 +[2025.06.16-10.28.16:085][758]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=284.153 Y=1055.220 +[2025.06.16-10.28.16:093][759]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1059.504 +[2025.06.16-10.28.16:093][759]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1059.504 +[2025.06.16-10.28.16:093][759]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1059.504 +[2025.06.16-10.28.16:102][760]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1060.932 +[2025.06.16-10.28.16:102][760]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1060.932 +[2025.06.16-10.28.16:102][760]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1060.932 +[2025.06.16-10.28.16:111][761]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1065.215 +[2025.06.16-10.28.16:111][761]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1065.215 +[2025.06.16-10.28.16:111][761]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1065.215 +[2025.06.16-10.28.16:119][762]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1068.071 +[2025.06.16-10.28.16:119][762]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1068.071 +[2025.06.16-10.28.16:119][762]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1068.071 +[2025.06.16-10.28.16:128][763]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=287.008 Y=1072.355 +[2025.06.16-10.28.16:128][763]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=287.008 Y=1072.355 +[2025.06.16-10.28.16:128][763]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=287.008 Y=1072.355 +[2025.06.16-10.28.16:135][764]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1076.639 +[2025.06.16-10.28.16:135][764]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1076.639 +[2025.06.16-10.28.16:135][764]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1076.639 +[2025.06.16-10.28.16:144][765]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1078.067 +[2025.06.16-10.28.16:144][765]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1078.067 +[2025.06.16-10.28.16:144][765]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1078.067 +[2025.06.16-10.28.16:153][766]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:153][766]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:153][766]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:161][767]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:162][767]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:162][767]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:171][768]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:171][768]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:171][768]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:179][769]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:179][769]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:180][769]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:188][770]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:188][770]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:188][770]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:196][771]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:196][771]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:196][771]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:203][772]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:203][772]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:204][772]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:212][773]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:213][773]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:213][773]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:222][774]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:222][774]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:222][774]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:230][775]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:230][775]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:230][775]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:238][776]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:238][776]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:238][776]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:247][777]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:247][777]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:247][777]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:254][778]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:254][778]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:255][778]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:264][779]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:264][779]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:264][779]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:271][780]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:271][780]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:271][780]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:280][781]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:280][781]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:280][781]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:289][782]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:289][782]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:289][782]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:297][783]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:297][783]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:297][783]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:305][784]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:305][784]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:305][784]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:314][785]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:314][785]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:315][785]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:323][786]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:323][786]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:325][786]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:331][787]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:331][787]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:331][787]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:341][788]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:341][788]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:341][788]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:350][789]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:350][789]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:350][789]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:357][790]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:357][790]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:357][790]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:366][791]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:366][791]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:366][791]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:375][792]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:375][792]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:375][792]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:382][793]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:382][793]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:382][793]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:391][794]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:391][794]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:392][794]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:400][795]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:400][795]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:400][795]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=288.436 Y=1079.494 +[2025.06.16-10.28.16:409][796]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1078.067 +[2025.06.16-10.28.16:409][796]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1078.067 +[2025.06.16-10.28.16:409][796]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1078.067 +[2025.06.16-10.28.16:417][797]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1066.643 +[2025.06.16-10.28.16:417][797]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1066.643 +[2025.06.16-10.28.16:417][797]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1066.643 +[2025.06.16-10.28.16:425][798]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=285.581 Y=1055.220 +[2025.06.16-10.28.16:425][798]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=285.581 Y=1055.220 +[2025.06.16-10.28.16:425][798]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=285.581 Y=1055.220 +[2025.06.16-10.28.16:434][799]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=287.008 Y=1049.508 +[2025.06.16-10.28.16:434][799]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=287.008 Y=1049.508 +[2025.06.16-10.28.16:434][799]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=287.008 Y=1049.508 +[2025.06.16-10.28.16:443][800]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=292.720 Y=1019.523 +[2025.06.16-10.28.16:443][800]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=292.720 Y=1019.523 +[2025.06.16-10.28.16:443][800]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=292.720 Y=1019.523 +[2025.06.16-10.28.16:452][801]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=297.004 Y=998.104 +[2025.06.16-10.28.16:452][801]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=297.004 Y=998.104 +[2025.06.16-10.28.16:452][801]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=297.004 Y=998.104 +[2025.06.16-10.28.16:460][802]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=299.860 Y=970.974 +[2025.06.16-10.28.16:460][802]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=299.860 Y=970.974 +[2025.06.16-10.28.16:460][802]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=299.860 Y=970.974 +[2025.06.16-10.28.16:468][803]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=304.143 Y=940.988 +[2025.06.16-10.28.16:468][803]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=304.143 Y=940.988 +[2025.06.16-10.28.16:468][803]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=304.143 Y=940.988 +[2025.06.16-10.28.16:478][804]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=893.867 +[2025.06.16-10.28.16:478][804]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=893.867 +[2025.06.16-10.28.16:478][804]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=893.867 +[2025.06.16-10.28.16:481][805]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=717.000 +[2025.06.16-10.28.16:487][805]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=878.160 +[2025.06.16-10.28.16:487][805]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=878.160 +[2025.06.16-10.28.16:487][805]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=878.160 +[2025.06.16-10.28.16:495][806]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=312.711 Y=826.756 +[2025.06.16-10.28.16:497][806]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=312.711 Y=826.756 +[2025.06.16-10.28.16:497][806]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=312.711 Y=826.756 +[2025.06.16-10.28.16:504][807]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=314.139 Y=792.486 +[2025.06.16-10.28.16:504][807]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=314.139 Y=792.486 +[2025.06.16-10.28.16:504][807]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=314.139 Y=792.486 +[2025.06.16-10.28.16:514][808]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=314.139 Y=758.216 +[2025.06.16-10.28.16:514][808]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=314.139 Y=758.216 +[2025.06.16-10.28.16:514][808]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=314.139 Y=758.216 +[2025.06.16-10.28.16:522][809]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=315.566 Y=711.096 +[2025.06.16-10.28.16:522][809]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=315.566 Y=711.096 +[2025.06.16-10.28.16:522][809]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=315.566 Y=711.096 +[2025.06.16-10.28.16:532][810]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=315.566 Y=682.537 +[2025.06.16-10.28.16:532][810]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=315.566 Y=682.537 +[2025.06.16-10.28.16:532][810]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=315.566 Y=682.537 +[2025.06.16-10.28.16:540][811]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=315.566 Y=655.407 +[2025.06.16-10.28.16:540][811]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=315.566 Y=655.407 +[2025.06.16-10.28.16:541][811]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=315.566 Y=655.407 +[2025.06.16-10.28.16:550][812]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=312.711 Y=622.566 +[2025.06.16-10.28.16:550][812]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=312.711 Y=622.566 +[2025.06.16-10.28.16:550][812]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=312.711 Y=622.566 +[2025.06.16-10.28.16:557][813]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=311.283 Y=605.431 +[2025.06.16-10.28.16:557][813]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=311.283 Y=605.431 +[2025.06.16-10.28.16:557][813]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=311.283 Y=605.431 +[2025.06.16-10.28.16:567][814]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=311.283 Y=599.719 +[2025.06.16-10.28.16:567][814]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=311.283 Y=599.719 +[2025.06.16-10.28.16:567][814]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=311.283 Y=599.719 +[2025.06.16-10.28.16:576][815]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=584.012 +[2025.06.16-10.28.16:576][815]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=584.012 +[2025.06.16-10.28.16:576][815]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=584.012 +[2025.06.16-10.28.16:583][816]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=579.729 +[2025.06.16-10.28.16:584][816]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=579.729 +[2025.06.16-10.28.16:584][816]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=579.729 +[2025.06.16-10.28.16:592][817]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=576.873 +[2025.06.16-10.28.16:592][817]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=576.873 +[2025.06.16-10.28.16:593][817]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=576.873 +[2025.06.16-10.28.16:602][818]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:602][818]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:602][818]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:610][819]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:610][819]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:610][819]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:618][820]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:618][820]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:618][820]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:628][821]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:628][821]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:628][821]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:635][822]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:635][822]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:636][822]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:644][823]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:644][823]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:644][823]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:652][824]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:653][824]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:653][824]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:661][825]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:661][825]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:661][825]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:670][826]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:670][826]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:671][826]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:679][827]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:679][827]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:679][827]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:687][828]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:687][828]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:687][828]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:696][829]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:696][829]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:697][829]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:704][830]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:704][830]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:705][830]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:712][831]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:712][831]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:712][831]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:720][832]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=575.445 +[2025.06.16-10.28.16:720][832]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=575.445 +[2025.06.16-10.28.16:721][832]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=575.445 +[2025.06.16-10.28.16:730][833]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=576.873 +[2025.06.16-10.28.16:730][833]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=576.873 +[2025.06.16-10.28.16:730][833]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=576.873 +[2025.06.16-10.28.16:737][834]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=578.301 +[2025.06.16-10.28.16:737][834]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=578.301 +[2025.06.16-10.28.16:737][834]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=578.301 +[2025.06.16-10.28.16:745][835]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=578.301 +[2025.06.16-10.28.16:745][835]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=578.301 +[2025.06.16-10.28.16:745][835]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=578.301 +[2025.06.16-10.28.16:749][836]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=221.000 Y=510.000 +[2025.06.16-10.28.16:755][836]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=584.012 +[2025.06.16-10.28.16:755][836]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=584.012 +[2025.06.16-10.28.16:755][836]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=584.012 +[2025.06.16-10.28.16:764][837]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=589.724 +[2025.06.16-10.28.16:764][837]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=589.724 +[2025.06.16-10.28.16:764][837]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=589.724 +[2025.06.16-10.28.16:774][838]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=596.863 +[2025.06.16-10.28.16:774][838]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=596.863 +[2025.06.16-10.28.16:774][838]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=596.863 +[2025.06.16-10.28.16:782][839]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=604.003 +[2025.06.16-10.28.16:782][839]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=604.003 +[2025.06.16-10.28.16:782][839]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=604.003 +[2025.06.16-10.28.16:790][840]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=608.287 +[2025.06.16-10.28.16:790][840]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=608.287 +[2025.06.16-10.28.16:790][840]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=608.287 +[2025.06.16-10.28.16:798][841]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=609.714 +[2025.06.16-10.28.16:799][841]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=609.714 +[2025.06.16-10.28.16:799][841]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=609.714 +[2025.06.16-10.28.16:807][842]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=613.998 +[2025.06.16-10.28.16:808][842]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=613.998 +[2025.06.16-10.28.16:808][842]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=613.998 +[2025.06.16-10.28.16:816][843]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=615.426 +[2025.06.16-10.28.16:816][843]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=615.426 +[2025.06.16-10.28.16:816][843]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=615.426 +[2025.06.16-10.28.16:825][844]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=618.282 +[2025.06.16-10.28.16:825][844]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=618.282 +[2025.06.16-10.28.16:825][844]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=618.282 +[2025.06.16-10.28.16:833][845]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=621.138 +[2025.06.16-10.28.16:833][845]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=621.138 +[2025.06.16-10.28.16:834][845]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=621.138 +[2025.06.16-10.28.16:842][846]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=622.566 +[2025.06.16-10.28.16:842][846]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=622.566 +[2025.06.16-10.28.16:842][846]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=622.566 +[2025.06.16-10.28.16:850][847]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=622.566 +[2025.06.16-10.28.16:850][847]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=622.566 +[2025.06.16-10.28.16:850][847]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=622.566 +[2025.06.16-10.28.16:860][848]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=623.993 +[2025.06.16-10.28.16:860][848]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=623.993 +[2025.06.16-10.28.16:860][848]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=623.993 +[2025.06.16-10.28.16:868][849]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=623.993 +[2025.06.16-10.28.16:868][849]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=623.993 +[2025.06.16-10.28.16:868][849]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=623.993 +[2025.06.16-10.28.16:877][850]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:877][850]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:877][850]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:886][851]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:887][851]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:887][851]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:896][852]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:896][852]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:897][852]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:905][853]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:905][853]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:907][853]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:914][854]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:915][854]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:915][854]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:924][855]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:924][855]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:924][855]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:932][856]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:932][856]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:932][856]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:941][857]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:941][857]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:941][857]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:950][858]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:951][858]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:951][858]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:959][859]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:960][859]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:960][859]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:969][860]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:969][860]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:969][860]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:977][861]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:977][861]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:977][861]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:985][862]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:985][862]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:985][862]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.16:994][863]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.16:994][863]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.16:994][863]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:001][864]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:002][864]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:002][864]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:010][865]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:010][865]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:011][865]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:019][866]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:019][866]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:019][866]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:027][867]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:027][867]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:027][867]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:036][868]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:036][868]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:036][868]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:043][869]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:043][869]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:043][869]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:052][870]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:052][870]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:052][870]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:061][871]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:061][871]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:061][871]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:068][872]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:068][872]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:068][872]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:077][873]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:078][873]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:078][873]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:085][874]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:085][874]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:086][874]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:093][875]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:094][875]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:094][875]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:102][876]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:102][876]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:103][876]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:111][877]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:111][877]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:111][877]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:119][878]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:120][878]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:120][878]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:128][879]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:128][879]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:128][879]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:136][880]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:136][880]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:136][880]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:144][881]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:144][881]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:144][881]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:153][882]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:153][882]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:153][882]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:160][883]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:160][883]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:161][883]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:169][884]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:170][884]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:170][884]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:178][885]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:178][885]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:178][885]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:187][886]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:187][886]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:188][886]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:195][887]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:195][887]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:195][887]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:204][888]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:204][888]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:204][888]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:212][889]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:212][889]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:212][889]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:220][890]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:221][890]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:221][890]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:230][891]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:230][891]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:230][891]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:237][892]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:237][892]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:237][892]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:246][893]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:247][893]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:247][893]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:255][894]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:255][894]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:255][894]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:264][895]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=305.571 Y=625.421 +[2025.06.16-10.28.17:264][895]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=305.571 Y=625.421 +[2025.06.16-10.28.17:264][895]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=305.571 Y=625.421 +[2025.06.16-10.28.17:272][896]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=625.421 +[2025.06.16-10.28.17:272][896]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=625.421 +[2025.06.16-10.28.17:272][896]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=625.421 +[2025.06.16-10.28.17:281][897]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=625.421 +[2025.06.16-10.28.17:281][897]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=625.421 +[2025.06.16-10.28.17:281][897]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=625.421 +[2025.06.16-10.28.17:290][898]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=306.999 Y=625.421 +[2025.06.16-10.28.17:290][898]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=306.999 Y=625.421 +[2025.06.16-10.28.17:290][898]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=306.999 Y=625.421 +[2025.06.16-10.28.17:298][899]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=625.421 +[2025.06.16-10.28.17:298][899]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=625.421 +[2025.06.16-10.28.17:298][899]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=625.421 +[2025.06.16-10.28.17:307][900]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=308.427 Y=625.421 +[2025.06.16-10.28.17:307][900]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=308.427 Y=625.421 +[2025.06.16-10.28.17:307][900]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=308.427 Y=625.421 +[2025.06.16-10.28.17:315][901]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=309.855 Y=625.421 +[2025.06.16-10.28.17:315][901]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=309.855 Y=625.421 +[2025.06.16-10.28.17:315][901]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=309.855 Y=625.421 +[2025.06.16-10.28.17:323][902]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=311.283 Y=625.421 +[2025.06.16-10.28.17:323][902]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=311.283 Y=625.421 +[2025.06.16-10.28.17:324][902]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=311.283 Y=625.421 +[2025.06.16-10.28.17:332][903]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=312.711 Y=625.421 +[2025.06.16-10.28.17:332][903]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=312.711 Y=625.421 +[2025.06.16-10.28.17:332][903]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=312.711 Y=625.421 +[2025.06.16-10.28.17:341][904]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=314.139 Y=625.421 +[2025.06.16-10.28.17:341][904]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=314.139 Y=625.421 +[2025.06.16-10.28.17:341][904]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=314.139 Y=625.421 +[2025.06.16-10.28.17:348][905]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=314.139 Y=625.421 +[2025.06.16-10.28.17:349][905]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=314.139 Y=625.421 +[2025.06.16-10.28.17:349][905]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=314.139 Y=625.421 +[2025.06.16-10.28.17:358][906]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=315.566 Y=625.421 +[2025.06.16-10.28.17:359][906]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=315.566 Y=625.421 +[2025.06.16-10.28.17:359][906]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=315.566 Y=625.421 +[2025.06.16-10.28.17:367][907]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=316.994 Y=625.421 +[2025.06.16-10.28.17:367][907]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=316.994 Y=625.421 +[2025.06.16-10.28.17:367][907]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=316.994 Y=625.421 +[2025.06.16-10.28.17:375][908]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=318.422 Y=625.421 +[2025.06.16-10.28.17:375][908]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=318.422 Y=625.421 +[2025.06.16-10.28.17:375][908]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=318.422 Y=625.421 +[2025.06.16-10.28.17:383][909]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=319.850 Y=625.421 +[2025.06.16-10.28.17:383][909]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=319.850 Y=625.421 +[2025.06.16-10.28.17:383][909]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=319.850 Y=625.421 +[2025.06.16-10.28.17:391][910]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=321.278 Y=625.421 +[2025.06.16-10.28.17:391][910]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=321.278 Y=625.421 +[2025.06.16-10.28.17:391][910]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=321.278 Y=625.421 +[2025.06.16-10.28.17:400][911]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=322.706 Y=625.421 +[2025.06.16-10.28.17:401][911]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=322.706 Y=625.421 +[2025.06.16-10.28.17:401][911]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=322.706 Y=625.421 +[2025.06.16-10.28.17:411][912]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=326.990 Y=625.421 +[2025.06.16-10.28.17:412][912]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=326.990 Y=625.421 +[2025.06.16-10.28.17:412][912]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=326.990 Y=625.421 +[2025.06.16-10.28.17:420][913]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=328.418 Y=625.421 +[2025.06.16-10.28.17:420][913]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=328.418 Y=625.421 +[2025.06.16-10.28.17:420][913]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=328.418 Y=625.421 +[2025.06.16-10.28.17:428][914]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=331.273 Y=625.421 +[2025.06.16-10.28.17:428][914]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=331.273 Y=625.421 +[2025.06.16-10.28.17:428][914]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=331.273 Y=625.421 +[2025.06.16-10.28.17:437][915]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=334.129 Y=625.421 +[2025.06.16-10.28.17:437][915]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=334.129 Y=625.421 +[2025.06.16-10.28.17:437][915]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=334.129 Y=625.421 +[2025.06.16-10.28.17:445][916]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=336.985 Y=625.421 +[2025.06.16-10.28.17:445][916]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=336.985 Y=625.421 +[2025.06.16-10.28.17:445][916]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=336.985 Y=625.421 +[2025.06.16-10.28.17:454][917]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=342.697 Y=625.421 +[2025.06.16-10.28.17:454][917]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=342.697 Y=625.421 +[2025.06.16-10.28.17:454][917]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=342.697 Y=625.421 +[2025.06.16-10.28.17:462][918]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=346.980 Y=625.421 +[2025.06.16-10.28.17:463][918]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=346.980 Y=625.421 +[2025.06.16-10.28.17:463][918]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=346.980 Y=625.421 +[2025.06.16-10.28.17:471][919]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=349.836 Y=625.421 +[2025.06.16-10.28.17:471][919]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=349.836 Y=625.421 +[2025.06.16-10.28.17:471][919]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=349.836 Y=625.421 +[2025.06.16-10.28.17:479][920]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=354.120 Y=625.421 +[2025.06.16-10.28.17:479][920]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=354.120 Y=625.421 +[2025.06.16-10.28.17:479][920]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=354.120 Y=625.421 +[2025.06.16-10.28.17:488][921]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=358.404 Y=625.421 +[2025.06.16-10.28.17:488][921]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=358.404 Y=625.421 +[2025.06.16-10.28.17:488][921]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=358.404 Y=625.421 +[2025.06.16-10.28.17:496][922]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=362.687 Y=625.421 +[2025.06.16-10.28.17:496][922]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=362.687 Y=625.421 +[2025.06.16-10.28.17:496][922]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=362.687 Y=625.421 +[2025.06.16-10.28.17:506][923]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=365.543 Y=625.421 +[2025.06.16-10.28.17:506][923]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=365.543 Y=625.421 +[2025.06.16-10.28.17:506][923]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=365.543 Y=625.421 +[2025.06.16-10.28.17:513][924]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=369.827 Y=625.421 +[2025.06.16-10.28.17:513][924]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=369.827 Y=625.421 +[2025.06.16-10.28.17:514][924]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=369.827 Y=625.421 +[2025.06.16-10.28.17:522][925]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=371.255 Y=625.421 +[2025.06.16-10.28.17:522][925]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=371.255 Y=625.421 +[2025.06.16-10.28.17:522][925]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=371.255 Y=625.421 +[2025.06.16-10.28.17:531][926]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=374.111 Y=625.421 +[2025.06.16-10.28.17:531][926]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=374.111 Y=625.421 +[2025.06.16-10.28.17:531][926]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=374.111 Y=625.421 +[2025.06.16-10.28.17:539][927]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=375.538 Y=625.421 +[2025.06.16-10.28.17:539][927]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=375.538 Y=625.421 +[2025.06.16-10.28.17:539][927]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=375.538 Y=625.421 +[2025.06.16-10.28.17:547][928]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=376.966 Y=625.421 +[2025.06.16-10.28.17:548][928]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=376.966 Y=625.421 +[2025.06.16-10.28.17:548][928]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=376.966 Y=625.421 +[2025.06.16-10.28.17:555][929]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=376.966 Y=625.421 +[2025.06.16-10.28.17:555][929]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=376.966 Y=625.421 +[2025.06.16-10.28.17:555][929]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=376.966 Y=625.421 +[2025.06.16-10.28.17:564][930]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=376.966 Y=625.421 +[2025.06.16-10.28.17:564][930]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=376.966 Y=625.421 +[2025.06.16-10.28.17:564][930]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=376.966 Y=625.421 +[2025.06.16-10.28.17:573][931]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=378.394 Y=625.421 +[2025.06.16-10.28.17:573][931]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=378.394 Y=625.421 +[2025.06.16-10.28.17:573][931]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=378.394 Y=625.421 +[2025.06.16-10.28.17:581][932]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=379.822 Y=625.421 +[2025.06.16-10.28.17:581][932]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=379.822 Y=625.421 +[2025.06.16-10.28.17:581][932]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=379.822 Y=625.421 +[2025.06.16-10.28.17:589][933]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=379.822 Y=625.421 +[2025.06.16-10.28.17:589][933]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=379.822 Y=625.421 +[2025.06.16-10.28.17:590][933]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=379.822 Y=625.421 +[2025.06.16-10.28.17:599][934]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=379.822 Y=625.421 +[2025.06.16-10.28.17:599][934]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=379.822 Y=625.421 +[2025.06.16-10.28.17:599][934]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=379.822 Y=625.421 +[2025.06.16-10.28.17:607][935]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=381.250 Y=625.421 +[2025.06.16-10.28.17:607][935]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=381.250 Y=625.421 +[2025.06.16-10.28.17:607][935]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=381.250 Y=625.421 +[2025.06.16-10.28.17:615][936]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=382.678 Y=625.421 +[2025.06.16-10.28.17:615][936]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=382.678 Y=625.421 +[2025.06.16-10.28.17:615][936]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=382.678 Y=625.421 +[2025.06.16-10.28.17:624][937]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=384.106 Y=625.421 +[2025.06.16-10.28.17:624][937]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=384.106 Y=625.421 +[2025.06.16-10.28.17:624][937]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=384.106 Y=625.421 +[2025.06.16-10.28.17:633][938]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=386.962 Y=625.421 +[2025.06.16-10.28.17:633][938]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=386.962 Y=625.421 +[2025.06.16-10.28.17:633][938]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=386.962 Y=625.421 +[2025.06.16-10.28.17:642][939]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=389.817 Y=625.421 +[2025.06.16-10.28.17:642][939]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=389.817 Y=625.421 +[2025.06.16-10.28.17:642][939]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=389.817 Y=625.421 +[2025.06.16-10.28.17:650][940]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=391.245 Y=625.421 +[2025.06.16-10.28.17:650][940]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=391.245 Y=625.421 +[2025.06.16-10.28.17:650][940]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=391.245 Y=625.421 +[2025.06.16-10.28.17:658][941]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=395.529 Y=625.421 +[2025.06.16-10.28.17:658][941]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=395.529 Y=625.421 +[2025.06.16-10.28.17:658][941]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=395.529 Y=625.421 +[2025.06.16-10.28.17:667][942]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=398.385 Y=625.421 +[2025.06.16-10.28.17:667][942]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=398.385 Y=625.421 +[2025.06.16-10.28.17:667][942]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=398.385 Y=625.421 +[2025.06.16-10.28.17:676][943]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=402.669 Y=625.421 +[2025.06.16-10.28.17:676][943]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=402.669 Y=625.421 +[2025.06.16-10.28.17:676][943]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=402.669 Y=625.421 +[2025.06.16-10.28.17:684][944]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=405.524 Y=625.421 +[2025.06.16-10.28.17:684][944]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=405.524 Y=625.421 +[2025.06.16-10.28.17:684][944]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=405.524 Y=625.421 +[2025.06.16-10.28.17:693][945]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=409.808 Y=625.421 +[2025.06.16-10.28.17:693][945]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=409.808 Y=625.421 +[2025.06.16-10.28.17:693][945]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=409.808 Y=625.421 +[2025.06.16-10.28.17:702][946]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=412.664 Y=625.421 +[2025.06.16-10.28.17:702][946]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=412.664 Y=625.421 +[2025.06.16-10.28.17:702][946]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=412.664 Y=625.421 +[2025.06.16-10.28.17:711][947]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=414.092 Y=625.421 +[2025.06.16-10.28.17:711][947]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=414.092 Y=625.421 +[2025.06.16-10.28.17:711][947]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=414.092 Y=625.421 +[2025.06.16-10.28.17:719][948]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=416.948 Y=625.421 +[2025.06.16-10.28.17:719][948]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=416.948 Y=625.421 +[2025.06.16-10.28.17:720][948]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=416.948 Y=625.421 +[2025.06.16-10.28.17:727][949]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=416.948 Y=625.421 +[2025.06.16-10.28.17:727][949]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=416.948 Y=625.421 +[2025.06.16-10.28.17:727][949]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=416.948 Y=625.421 +[2025.06.16-10.28.17:736][950]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=418.375 Y=625.421 +[2025.06.16-10.28.17:736][950]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=418.375 Y=625.421 +[2025.06.16-10.28.17:736][950]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=418.375 Y=625.421 +[2025.06.16-10.28.17:744][951]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=419.803 Y=625.421 +[2025.06.16-10.28.17:744][951]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=419.803 Y=625.421 +[2025.06.16-10.28.17:744][951]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=419.803 Y=625.421 +[2025.06.16-10.28.17:753][952]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=421.231 Y=625.421 +[2025.06.16-10.28.17:753][952]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=421.231 Y=625.421 +[2025.06.16-10.28.17:753][952]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=421.231 Y=625.421 +[2025.06.16-10.28.17:762][953]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=422.659 Y=625.421 +[2025.06.16-10.28.17:762][953]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=422.659 Y=625.421 +[2025.06.16-10.28.17:762][953]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=422.659 Y=625.421 +[2025.06.16-10.28.17:770][954]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=424.087 Y=625.421 +[2025.06.16-10.28.17:770][954]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=424.087 Y=625.421 +[2025.06.16-10.28.17:771][954]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=424.087 Y=625.421 +[2025.06.16-10.28.17:779][955]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=425.515 Y=625.421 +[2025.06.16-10.28.17:779][955]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=425.515 Y=625.421 +[2025.06.16-10.28.17:779][955]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=425.515 Y=625.421 +[2025.06.16-10.28.17:788][956]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=428.371 Y=625.421 +[2025.06.16-10.28.17:788][956]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=428.371 Y=625.421 +[2025.06.16-10.28.17:788][956]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=428.371 Y=625.421 +[2025.06.16-10.28.17:795][957]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=429.799 Y=625.421 +[2025.06.16-10.28.17:797][957]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=429.799 Y=625.421 +[2025.06.16-10.28.17:797][957]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=429.799 Y=625.421 +[2025.06.16-10.28.17:805][958]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=431.227 Y=625.421 +[2025.06.16-10.28.17:805][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=431.227 Y=625.421 +[2025.06.16-10.28.17:805][958]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=431.227 Y=625.421 +[2025.06.16-10.28.17:813][959]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=434.082 Y=625.421 +[2025.06.16-10.28.17:813][959]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=434.082 Y=625.421 +[2025.06.16-10.28.17:813][959]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=434.082 Y=625.421 +[2025.06.16-10.28.17:821][960]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=435.510 Y=625.421 +[2025.06.16-10.28.17:821][960]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=435.510 Y=625.421 +[2025.06.16-10.28.17:822][960]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=435.510 Y=625.421 +[2025.06.16-10.28.17:830][961]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=435.510 Y=625.421 +[2025.06.16-10.28.17:830][961]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=435.510 Y=625.421 +[2025.06.16-10.28.17:830][961]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=435.510 Y=625.421 +[2025.06.16-10.28.17:838][962]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=435.510 Y=625.421 +[2025.06.16-10.28.17:838][962]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=435.510 Y=625.421 +[2025.06.16-10.28.17:838][962]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=435.510 Y=625.421 +[2025.06.16-10.28.17:848][963]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=436.938 Y=625.421 +[2025.06.16-10.28.17:848][963]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=436.938 Y=625.421 +[2025.06.16-10.28.17:848][963]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=436.938 Y=625.421 +[2025.06.16-10.28.17:855][964]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=436.938 Y=625.421 +[2025.06.16-10.28.17:856][964]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=436.938 Y=625.421 +[2025.06.16-10.28.17:856][964]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=436.938 Y=625.421 +[2025.06.16-10.28.17:864][965]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=436.938 Y=625.421 +[2025.06.16-10.28.17:864][965]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=436.938 Y=625.421 +[2025.06.16-10.28.17:864][965]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=436.938 Y=625.421 +[2025.06.16-10.28.17:872][966]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=436.938 Y=625.421 +[2025.06.16-10.28.17:872][966]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=436.938 Y=625.421 +[2025.06.16-10.28.17:872][966]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=436.938 Y=625.421 +[2025.06.16-10.28.17:881][967]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=438.366 Y=625.421 +[2025.06.16-10.28.17:882][967]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=438.366 Y=625.421 +[2025.06.16-10.28.17:882][967]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=438.366 Y=625.421 +[2025.06.16-10.28.17:890][968]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=439.794 Y=625.421 +[2025.06.16-10.28.17:890][968]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=439.794 Y=625.421 +[2025.06.16-10.28.17:890][968]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=439.794 Y=625.421 +[2025.06.16-10.28.17:898][969]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=439.794 Y=625.421 +[2025.06.16-10.28.17:898][969]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=439.794 Y=625.421 +[2025.06.16-10.28.17:898][969]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=439.794 Y=625.421 +[2025.06.16-10.28.17:907][970]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=439.794 Y=625.421 +[2025.06.16-10.28.17:908][970]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=439.794 Y=625.421 +[2025.06.16-10.28.17:908][970]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=439.794 Y=625.421 +[2025.06.16-10.28.17:915][971]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=441.222 Y=625.421 +[2025.06.16-10.28.17:915][971]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=441.222 Y=625.421 +[2025.06.16-10.28.17:917][971]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=441.222 Y=625.421 +[2025.06.16-10.28.17:925][972]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=442.650 Y=625.421 +[2025.06.16-10.28.17:925][972]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=442.650 Y=625.421 +[2025.06.16-10.28.17:925][972]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=442.650 Y=625.421 +[2025.06.16-10.28.17:934][973]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=444.078 Y=625.421 +[2025.06.16-10.28.17:934][973]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=444.078 Y=625.421 +[2025.06.16-10.28.17:934][973]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=444.078 Y=625.421 +[2025.06.16-10.28.17:943][974]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=446.934 Y=625.421 +[2025.06.16-10.28.17:943][974]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=446.934 Y=625.421 +[2025.06.16-10.28.17:943][974]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=446.934 Y=625.421 +[2025.06.16-10.28.17:950][975]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=446.934 Y=625.421 +[2025.06.16-10.28.17:950][975]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=446.934 Y=625.421 +[2025.06.16-10.28.17:950][975]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=446.934 Y=625.421 +[2025.06.16-10.28.17:959][976]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=448.361 Y=625.421 +[2025.06.16-10.28.17:959][976]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=448.361 Y=625.421 +[2025.06.16-10.28.17:959][976]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=448.361 Y=625.421 +[2025.06.16-10.28.17:963][977]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=319.000 Y=540.000 +[2025.06.16-10.28.17:969][977]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=449.789 Y=625.421 +[2025.06.16-10.28.17:969][977]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=449.789 Y=625.421 +[2025.06.16-10.28.17:969][977]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=449.789 Y=625.421 +[2025.06.16-10.28.17:978][978]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=452.645 Y=625.421 +[2025.06.16-10.28.17:978][978]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=452.645 Y=625.421 +[2025.06.16-10.28.17:978][978]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=452.645 Y=625.421 +[2025.06.16-10.28.17:986][979]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=454.073 Y=625.421 +[2025.06.16-10.28.17:986][979]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=454.073 Y=625.421 +[2025.06.16-10.28.17:986][979]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=454.073 Y=625.421 +[2025.06.16-10.28.17:994][980]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=454.073 Y=625.421 +[2025.06.16-10.28.17:994][980]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=454.073 Y=625.421 +[2025.06.16-10.28.17:994][980]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=454.073 Y=625.421 +[2025.06.16-10.28.18:003][981]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=455.501 Y=625.421 +[2025.06.16-10.28.18:003][981]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=455.501 Y=625.421 +[2025.06.16-10.28.18:003][981]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=455.501 Y=625.421 +[2025.06.16-10.28.18:011][982]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=455.501 Y=625.421 +[2025.06.16-10.28.18:011][982]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=455.501 Y=625.421 +[2025.06.16-10.28.18:011][982]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=455.501 Y=625.421 +[2025.06.16-10.28.18:019][983]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=455.501 Y=625.421 +[2025.06.16-10.28.18:019][983]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=455.501 Y=625.421 +[2025.06.16-10.28.18:020][983]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=455.501 Y=625.421 +[2025.06.16-10.28.18:028][984]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=456.929 Y=625.421 +[2025.06.16-10.28.18:028][984]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=456.929 Y=625.421 +[2025.06.16-10.28.18:030][984]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=456.929 Y=625.421 +[2025.06.16-10.28.18:037][985]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=456.929 Y=625.421 +[2025.06.16-10.28.18:037][985]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=456.929 Y=625.421 +[2025.06.16-10.28.18:037][985]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=456.929 Y=625.421 +[2025.06.16-10.28.18:046][986]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=458.357 Y=625.421 +[2025.06.16-10.28.18:046][986]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=458.357 Y=625.421 +[2025.06.16-10.28.18:046][986]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=458.357 Y=625.421 +[2025.06.16-10.28.18:054][987]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=458.357 Y=625.421 +[2025.06.16-10.28.18:054][987]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=458.357 Y=625.421 +[2025.06.16-10.28.18:054][987]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=458.357 Y=625.421 +[2025.06.16-10.28.18:063][988]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=458.357 Y=625.421 +[2025.06.16-10.28.18:063][988]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=458.357 Y=625.421 +[2025.06.16-10.28.18:063][988]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=458.357 Y=625.421 +[2025.06.16-10.28.18:071][989]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=458.357 Y=625.421 +[2025.06.16-10.28.18:071][989]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=458.357 Y=625.421 +[2025.06.16-10.28.18:071][989]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=458.357 Y=625.421 +[2025.06.16-10.28.18:080][990]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=459.785 Y=625.421 +[2025.06.16-10.28.18:080][990]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=459.785 Y=625.421 +[2025.06.16-10.28.18:080][990]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=459.785 Y=625.421 +[2025.06.16-10.28.18:088][991]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=459.785 Y=625.421 +[2025.06.16-10.28.18:088][991]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=459.785 Y=625.421 +[2025.06.16-10.28.18:088][991]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=459.785 Y=625.421 +[2025.06.16-10.28.18:097][992]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=459.785 Y=625.421 +[2025.06.16-10.28.18:097][992]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=459.785 Y=625.421 +[2025.06.16-10.28.18:097][992]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=459.785 Y=625.421 +[2025.06.16-10.28.18:105][993]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=461.213 Y=625.421 +[2025.06.16-10.28.18:105][993]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=461.213 Y=625.421 +[2025.06.16-10.28.18:105][993]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=461.213 Y=625.421 +[2025.06.16-10.28.18:113][994]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=461.213 Y=625.421 +[2025.06.16-10.28.18:113][994]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=461.213 Y=625.421 +[2025.06.16-10.28.18:114][994]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=461.213 Y=625.421 +[2025.06.16-10.28.18:121][995]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=461.213 Y=625.421 +[2025.06.16-10.28.18:123][995]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=461.213 Y=625.421 +[2025.06.16-10.28.18:123][995]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=461.213 Y=625.421 +[2025.06.16-10.28.18:130][996]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=462.640 Y=625.421 +[2025.06.16-10.28.18:130][996]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=462.640 Y=625.421 +[2025.06.16-10.28.18:130][996]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=462.640 Y=625.421 +[2025.06.16-10.28.18:139][997]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=462.640 Y=625.421 +[2025.06.16-10.28.18:139][997]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=462.640 Y=625.421 +[2025.06.16-10.28.18:139][997]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=462.640 Y=625.421 +[2025.06.16-10.28.18:147][998]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=464.068 Y=625.421 +[2025.06.16-10.28.18:147][998]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=464.068 Y=625.421 +[2025.06.16-10.28.18:148][998]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=464.068 Y=625.421 +[2025.06.16-10.28.18:155][999]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=464.068 Y=625.421 +[2025.06.16-10.28.18:155][999]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=464.068 Y=625.421 +[2025.06.16-10.28.18:155][999]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=464.068 Y=625.421 +[2025.06.16-10.28.18:164][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=465.496 Y=625.421 +[2025.06.16-10.28.18:164][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=465.496 Y=625.421 +[2025.06.16-10.28.18:164][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=465.496 Y=625.421 +[2025.06.16-10.28.18:171][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=465.496 Y=625.421 +[2025.06.16-10.28.18:172][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=465.496 Y=625.421 +[2025.06.16-10.28.18:172][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=465.496 Y=625.421 +[2025.06.16-10.28.18:181][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=465.496 Y=625.421 +[2025.06.16-10.28.18:181][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=465.496 Y=625.421 +[2025.06.16-10.28.18:181][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=465.496 Y=625.421 +[2025.06.16-10.28.18:190][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=466.924 Y=625.421 +[2025.06.16-10.28.18:190][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=466.924 Y=625.421 +[2025.06.16-10.28.18:190][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=466.924 Y=625.421 +[2025.06.16-10.28.18:198][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=466.924 Y=625.421 +[2025.06.16-10.28.18:198][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=466.924 Y=625.421 +[2025.06.16-10.28.18:198][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=466.924 Y=625.421 +[2025.06.16-10.28.18:207][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=466.924 Y=625.421 +[2025.06.16-10.28.18:207][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=466.924 Y=625.421 +[2025.06.16-10.28.18:207][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=466.924 Y=625.421 +[2025.06.16-10.28.18:215][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=466.924 Y=625.421 +[2025.06.16-10.28.18:215][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=466.924 Y=625.421 +[2025.06.16-10.28.18:215][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=466.924 Y=625.421 +[2025.06.16-10.28.18:223][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=468.352 Y=625.421 +[2025.06.16-10.28.18:223][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=468.352 Y=625.421 +[2025.06.16-10.28.18:224][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=468.352 Y=625.421 +[2025.06.16-10.28.18:231][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=469.780 Y=625.421 +[2025.06.16-10.28.18:232][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=469.780 Y=625.421 +[2025.06.16-10.28.18:232][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=469.780 Y=625.421 +[2025.06.16-10.28.18:241][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=469.780 Y=625.421 +[2025.06.16-10.28.18:241][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=469.780 Y=625.421 +[2025.06.16-10.28.18:241][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=469.780 Y=625.421 +[2025.06.16-10.28.18:249][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=471.208 Y=625.421 +[2025.06.16-10.28.18:249][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=471.208 Y=625.421 +[2025.06.16-10.28.18:249][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=471.208 Y=625.421 +[2025.06.16-10.28.18:257][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=471.208 Y=625.421 +[2025.06.16-10.28.18:258][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=471.208 Y=625.421 +[2025.06.16-10.28.18:258][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=471.208 Y=625.421 +[2025.06.16-10.28.18:265][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=471.208 Y=625.421 +[2025.06.16-10.28.18:265][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=471.208 Y=625.421 +[2025.06.16-10.28.18:265][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=471.208 Y=625.421 +[2025.06.16-10.28.18:274][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=471.208 Y=625.421 +[2025.06.16-10.28.18:274][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=471.208 Y=625.421 +[2025.06.16-10.28.18:274][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=471.208 Y=625.421 +[2025.06.16-10.28.18:283][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=472.636 Y=625.421 +[2025.06.16-10.28.18:283][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=472.636 Y=625.421 +[2025.06.16-10.28.18:283][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=472.636 Y=625.421 +[2025.06.16-10.28.18:291][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=472.636 Y=625.421 +[2025.06.16-10.28.18:291][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=472.636 Y=625.421 +[2025.06.16-10.28.18:291][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=472.636 Y=625.421 +[2025.06.16-10.28.18:299][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=472.636 Y=625.421 +[2025.06.16-10.28.18:300][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=472.636 Y=625.421 +[2025.06.16-10.28.18:300][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=472.636 Y=625.421 +[2025.06.16-10.28.18:309][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=474.064 Y=625.421 +[2025.06.16-10.28.18:309][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=474.064 Y=625.421 +[2025.06.16-10.28.18:309][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=474.064 Y=625.421 +[2025.06.16-10.28.18:317][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=475.492 Y=625.421 +[2025.06.16-10.28.18:317][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=475.492 Y=625.421 +[2025.06.16-10.28.18:317][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=475.492 Y=625.421 +[2025.06.16-10.28.18:325][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=476.919 Y=625.421 +[2025.06.16-10.28.18:326][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=476.919 Y=625.421 +[2025.06.16-10.28.18:326][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=476.919 Y=625.421 +[2025.06.16-10.28.18:334][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=478.347 Y=625.421 +[2025.06.16-10.28.18:334][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=478.347 Y=625.421 +[2025.06.16-10.28.18:334][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=478.347 Y=625.421 +[2025.06.16-10.28.18:343][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=479.775 Y=625.421 +[2025.06.16-10.28.18:343][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=479.775 Y=625.421 +[2025.06.16-10.28.18:343][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=479.775 Y=625.421 +[2025.06.16-10.28.18:351][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=482.631 Y=625.421 +[2025.06.16-10.28.18:351][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=482.631 Y=625.421 +[2025.06.16-10.28.18:351][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=482.631 Y=625.421 +[2025.06.16-10.28.18:360][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=484.059 Y=625.421 +[2025.06.16-10.28.18:360][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=484.059 Y=625.421 +[2025.06.16-10.28.18:360][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=484.059 Y=625.421 +[2025.06.16-10.28.18:368][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=486.915 Y=625.421 +[2025.06.16-10.28.18:368][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=486.915 Y=625.421 +[2025.06.16-10.28.18:368][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=486.915 Y=625.421 +[2025.06.16-10.28.18:376][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=488.343 Y=625.421 +[2025.06.16-10.28.18:377][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=488.343 Y=625.421 +[2025.06.16-10.28.18:377][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=488.343 Y=625.421 +[2025.06.16-10.28.18:386][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=489.771 Y=625.421 +[2025.06.16-10.28.18:386][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=489.771 Y=625.421 +[2025.06.16-10.28.18:386][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=489.771 Y=625.421 +[2025.06.16-10.28.18:394][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=491.199 Y=625.421 +[2025.06.16-10.28.18:395][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=491.199 Y=625.421 +[2025.06.16-10.28.18:395][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=491.199 Y=625.421 +[2025.06.16-10.28.18:404][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=492.626 Y=625.421 +[2025.06.16-10.28.18:404][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=492.626 Y=625.421 +[2025.06.16-10.28.18:404][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=492.626 Y=625.421 +[2025.06.16-10.28.18:411][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=492.626 Y=625.421 +[2025.06.16-10.28.18:411][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=492.626 Y=625.421 +[2025.06.16-10.28.18:411][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=492.626 Y=625.421 +[2025.06.16-10.28.18:420][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=492.626 Y=625.421 +[2025.06.16-10.28.18:420][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=492.626 Y=625.421 +[2025.06.16-10.28.18:420][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=492.626 Y=625.421 +[2025.06.16-10.28.18:428][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=492.626 Y=625.421 +[2025.06.16-10.28.18:428][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=492.626 Y=625.421 +[2025.06.16-10.28.18:428][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=492.626 Y=625.421 +[2025.06.16-10.28.18:437][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=492.626 Y=625.421 +[2025.06.16-10.28.18:437][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=492.626 Y=625.421 +[2025.06.16-10.28.18:437][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=492.626 Y=625.421 +[2025.06.16-10.28.18:444][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=494.054 Y=625.421 +[2025.06.16-10.28.18:445][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=494.054 Y=625.421 +[2025.06.16-10.28.18:445][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=494.054 Y=625.421 +[2025.06.16-10.28.18:454][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=494.054 Y=625.421 +[2025.06.16-10.28.18:454][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=494.054 Y=625.421 +[2025.06.16-10.28.18:454][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=494.054 Y=625.421 +[2025.06.16-10.28.18:462][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=494.054 Y=625.421 +[2025.06.16-10.28.18:462][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=494.054 Y=625.421 +[2025.06.16-10.28.18:462][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=494.054 Y=625.421 +[2025.06.16-10.28.18:470][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=494.054 Y=625.421 +[2025.06.16-10.28.18:470][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=494.054 Y=625.421 +[2025.06.16-10.28.18:470][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=494.054 Y=625.421 +[2025.06.16-10.28.18:479][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=495.482 Y=625.421 +[2025.06.16-10.28.18:479][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=495.482 Y=625.421 +[2025.06.16-10.28.18:479][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=495.482 Y=625.421 +[2025.06.16-10.28.18:488][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=495.482 Y=625.421 +[2025.06.16-10.28.18:488][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=495.482 Y=625.421 +[2025.06.16-10.28.18:488][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=495.482 Y=625.421 +[2025.06.16-10.28.18:497][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=495.482 Y=625.421 +[2025.06.16-10.28.18:497][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=495.482 Y=625.421 +[2025.06.16-10.28.18:497][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=495.482 Y=625.421 +[2025.06.16-10.28.18:505][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=498.338 Y=625.421 +[2025.06.16-10.28.18:505][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=498.338 Y=625.421 +[2025.06.16-10.28.18:505][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=498.338 Y=625.421 +[2025.06.16-10.28.18:514][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=498.338 Y=625.421 +[2025.06.16-10.28.18:514][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=498.338 Y=625.421 +[2025.06.16-10.28.18:514][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=498.338 Y=625.421 +[2025.06.16-10.28.18:522][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=498.338 Y=625.421 +[2025.06.16-10.28.18:522][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=498.338 Y=625.421 +[2025.06.16-10.28.18:522][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=498.338 Y=625.421 +[2025.06.16-10.28.18:531][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=499.766 Y=625.421 +[2025.06.16-10.28.18:531][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=499.766 Y=625.421 +[2025.06.16-10.28.18:531][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=499.766 Y=625.421 +[2025.06.16-10.28.18:538][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=499.766 Y=625.421 +[2025.06.16-10.28.18:538][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=499.766 Y=625.421 +[2025.06.16-10.28.18:538][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=499.766 Y=625.421 +[2025.06.16-10.28.18:547][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=499.766 Y=625.421 +[2025.06.16-10.28.18:547][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=499.766 Y=625.421 +[2025.06.16-10.28.18:547][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=499.766 Y=625.421 +[2025.06.16-10.28.18:555][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=501.194 Y=625.421 +[2025.06.16-10.28.18:555][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=501.194 Y=625.421 +[2025.06.16-10.28.18:555][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=501.194 Y=625.421 +[2025.06.16-10.28.18:564][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=501.194 Y=625.421 +[2025.06.16-10.28.18:564][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=501.194 Y=625.421 +[2025.06.16-10.28.18:564][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=501.194 Y=625.421 +[2025.06.16-10.28.18:572][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=502.622 Y=625.421 +[2025.06.16-10.28.18:572][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=502.622 Y=625.421 +[2025.06.16-10.28.18:572][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=502.622 Y=625.421 +[2025.06.16-10.28.18:582][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=505.478 Y=625.421 +[2025.06.16-10.28.18:582][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=505.478 Y=625.421 +[2025.06.16-10.28.18:582][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=505.478 Y=625.421 +[2025.06.16-10.28.18:590][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=506.905 Y=625.421 +[2025.06.16-10.28.18:590][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=506.905 Y=625.421 +[2025.06.16-10.28.18:590][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=506.905 Y=625.421 +[2025.06.16-10.28.18:598][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=512.617 Y=625.421 +[2025.06.16-10.28.18:600][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=512.617 Y=625.421 +[2025.06.16-10.28.18:600][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=512.617 Y=625.421 +[2025.06.16-10.28.18:609][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=516.901 Y=625.421 +[2025.06.16-10.28.18:609][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=516.901 Y=625.421 +[2025.06.16-10.28.18:609][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=516.901 Y=625.421 +[2025.06.16-10.28.18:620][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=519.757 Y=625.421 +[2025.06.16-10.28.18:620][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=519.757 Y=625.421 +[2025.06.16-10.28.18:620][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=519.757 Y=625.421 +[2025.06.16-10.28.18:628][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=525.468 Y=626.849 +[2025.06.16-10.28.18:628][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=525.468 Y=626.849 +[2025.06.16-10.28.18:628][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=525.468 Y=626.849 +[2025.06.16-10.28.18:637][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=531.180 Y=626.849 +[2025.06.16-10.28.18:637][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=531.180 Y=626.849 +[2025.06.16-10.28.18:637][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=531.180 Y=626.849 +[2025.06.16-10.28.18:647][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=538.319 Y=626.849 +[2025.06.16-10.28.18:647][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=538.319 Y=626.849 +[2025.06.16-10.28.18:647][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=538.319 Y=626.849 +[2025.06.16-10.28.18:655][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=539.747 Y=626.849 +[2025.06.16-10.28.18:655][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=539.747 Y=626.849 +[2025.06.16-10.28.18:655][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=539.747 Y=626.849 +[2025.06.16-10.28.18:663][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=546.887 Y=626.849 +[2025.06.16-10.28.18:663][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=546.887 Y=626.849 +[2025.06.16-10.28.18:664][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=546.887 Y=626.849 +[2025.06.16-10.28.18:672][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=551.170 Y=626.849 +[2025.06.16-10.28.18:672][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=551.170 Y=626.849 +[2025.06.16-10.28.18:672][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=551.170 Y=626.849 +[2025.06.16-10.28.18:681][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=558.310 Y=626.849 +[2025.06.16-10.28.18:681][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=558.310 Y=626.849 +[2025.06.16-10.28.18:681][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=558.310 Y=626.849 +[2025.06.16-10.28.18:690][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=564.022 Y=628.277 +[2025.06.16-10.28.18:690][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=564.022 Y=628.277 +[2025.06.16-10.28.18:690][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=564.022 Y=628.277 +[2025.06.16-10.28.18:698][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=568.305 Y=628.277 +[2025.06.16-10.28.18:698][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=568.305 Y=628.277 +[2025.06.16-10.28.18:698][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=568.305 Y=628.277 +[2025.06.16-10.28.18:707][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=572.589 Y=628.277 +[2025.06.16-10.28.18:707][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=572.589 Y=628.277 +[2025.06.16-10.28.18:707][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=572.589 Y=628.277 +[2025.06.16-10.28.18:717][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=578.301 Y=628.277 +[2025.06.16-10.28.18:717][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=578.301 Y=628.277 +[2025.06.16-10.28.18:717][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=578.301 Y=628.277 +[2025.06.16-10.28.18:725][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=582.584 Y=628.277 +[2025.06.16-10.28.18:725][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=582.584 Y=628.277 +[2025.06.16-10.28.18:725][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=582.584 Y=628.277 +[2025.06.16-10.28.18:732][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=588.296 Y=628.277 +[2025.06.16-10.28.18:733][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=588.296 Y=628.277 +[2025.06.16-10.28.18:733][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=588.296 Y=628.277 +[2025.06.16-10.28.18:741][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=598.291 Y=628.277 +[2025.06.16-10.28.18:741][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=598.291 Y=628.277 +[2025.06.16-10.28.18:741][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=598.291 Y=628.277 +[2025.06.16-10.28.18:750][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=604.003 Y=628.277 +[2025.06.16-10.28.18:750][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=604.003 Y=628.277 +[2025.06.16-10.28.18:750][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=604.003 Y=628.277 +[2025.06.16-10.28.18:759][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=606.859 Y=628.277 +[2025.06.16-10.28.18:759][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=606.859 Y=628.277 +[2025.06.16-10.28.18:759][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=606.859 Y=628.277 +[2025.06.16-10.28.18:767][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=618.282 Y=628.277 +[2025.06.16-10.28.18:767][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=618.282 Y=628.277 +[2025.06.16-10.28.18:767][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=618.282 Y=628.277 +[2025.06.16-10.28.18:775][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=623.993 Y=628.277 +[2025.06.16-10.28.18:775][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=623.993 Y=628.277 +[2025.06.16-10.28.18:775][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=623.993 Y=628.277 +[2025.06.16-10.28.18:784][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=631.133 Y=628.277 +[2025.06.16-10.28.18:784][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=631.133 Y=628.277 +[2025.06.16-10.28.18:784][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=631.133 Y=628.277 +[2025.06.16-10.28.18:792][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=638.273 Y=628.277 +[2025.06.16-10.28.18:793][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=638.273 Y=628.277 +[2025.06.16-10.28.18:793][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=638.273 Y=628.277 +[2025.06.16-10.28.18:801][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=646.840 Y=628.277 +[2025.06.16-10.28.18:801][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=646.840 Y=628.277 +[2025.06.16-10.28.18:801][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=646.840 Y=628.277 +[2025.06.16-10.28.18:811][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=651.124 Y=628.277 +[2025.06.16-10.28.18:811][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=651.124 Y=628.277 +[2025.06.16-10.28.18:811][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=651.124 Y=628.277 +[2025.06.16-10.28.18:819][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=662.547 Y=629.705 +[2025.06.16-10.28.18:819][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=662.547 Y=629.705 +[2025.06.16-10.28.18:819][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=662.547 Y=629.705 +[2025.06.16-10.28.18:827][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=669.686 Y=629.705 +[2025.06.16-10.28.18:827][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=669.686 Y=629.705 +[2025.06.16-10.28.18:828][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=669.686 Y=629.705 +[2025.06.16-10.28.18:837][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=675.398 Y=629.705 +[2025.06.16-10.28.18:837][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=675.398 Y=629.705 +[2025.06.16-10.28.18:837][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=675.398 Y=629.705 +[2025.06.16-10.28.18:844][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=685.393 Y=629.705 +[2025.06.16-10.28.18:845][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=685.393 Y=629.705 +[2025.06.16-10.28.18:845][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=685.393 Y=629.705 +[2025.06.16-10.28.18:853][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=692.533 Y=629.705 +[2025.06.16-10.28.18:854][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=692.533 Y=629.705 +[2025.06.16-10.28.18:854][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=692.533 Y=629.705 +[2025.06.16-10.28.18:863][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=695.389 Y=629.705 +[2025.06.16-10.28.18:863][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=695.389 Y=629.705 +[2025.06.16-10.28.18:864][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=695.389 Y=629.705 +[2025.06.16-10.28.18:872][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=702.528 Y=629.705 +[2025.06.16-10.28.18:872][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=702.528 Y=629.705 +[2025.06.16-10.28.18:872][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=702.528 Y=629.705 +[2025.06.16-10.28.18:880][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=708.240 Y=629.705 +[2025.06.16-10.28.18:880][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=708.240 Y=629.705 +[2025.06.16-10.28.18:881][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=708.240 Y=629.705 +[2025.06.16-10.28.18:889][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=712.523 Y=629.705 +[2025.06.16-10.28.18:889][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=712.523 Y=629.705 +[2025.06.16-10.28.18:889][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=712.523 Y=629.705 +[2025.06.16-10.28.18:897][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=716.807 Y=629.705 +[2025.06.16-10.28.18:897][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=716.807 Y=629.705 +[2025.06.16-10.28.18:897][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=716.807 Y=629.705 +[2025.06.16-10.28.18:905][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=721.091 Y=629.705 +[2025.06.16-10.28.18:905][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=721.091 Y=629.705 +[2025.06.16-10.28.18:905][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=721.091 Y=629.705 +[2025.06.16-10.28.18:914][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=722.519 Y=629.705 +[2025.06.16-10.28.18:914][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=722.519 Y=629.705 +[2025.06.16-10.28.18:914][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=722.519 Y=629.705 +[2025.06.16-10.28.18:922][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=726.802 Y=629.705 +[2025.06.16-10.28.18:923][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=726.802 Y=629.705 +[2025.06.16-10.28.18:923][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=726.802 Y=629.705 +[2025.06.16-10.28.18:931][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=728.230 Y=629.705 +[2025.06.16-10.28.18:931][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=728.230 Y=629.705 +[2025.06.16-10.28.18:931][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=728.230 Y=629.705 +[2025.06.16-10.28.18:940][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=731.086 Y=629.705 +[2025.06.16-10.28.18:940][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=731.086 Y=629.705 +[2025.06.16-10.28.18:940][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=731.086 Y=629.705 +[2025.06.16-10.28.18:948][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=733.942 Y=629.705 +[2025.06.16-10.28.18:949][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=733.942 Y=629.705 +[2025.06.16-10.28.18:949][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=733.942 Y=629.705 +[2025.06.16-10.28.18:957][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=738.226 Y=629.705 +[2025.06.16-10.28.18:957][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=738.226 Y=629.705 +[2025.06.16-10.28.18:957][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=738.226 Y=629.705 +[2025.06.16-10.28.18:965][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=739.654 Y=629.705 +[2025.06.16-10.28.18:965][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=739.654 Y=629.705 +[2025.06.16-10.28.18:967][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=739.654 Y=629.705 +[2025.06.16-10.28.18:974][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=743.937 Y=629.705 +[2025.06.16-10.28.18:975][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=743.937 Y=629.705 +[2025.06.16-10.28.18:975][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=743.937 Y=629.705 +[2025.06.16-10.28.18:984][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=746.793 Y=629.705 +[2025.06.16-10.28.18:984][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=746.793 Y=629.705 +[2025.06.16-10.28.18:984][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=746.793 Y=629.705 +[2025.06.16-10.28.18:992][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=751.077 Y=631.133 +[2025.06.16-10.28.18:992][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=751.077 Y=631.133 +[2025.06.16-10.28.18:992][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=751.077 Y=631.133 +[2025.06.16-10.28.19:000][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=756.788 Y=631.133 +[2025.06.16-10.28.19:001][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=756.788 Y=631.133 +[2025.06.16-10.28.19:001][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=756.788 Y=631.133 +[2025.06.16-10.28.19:009][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=761.072 Y=631.133 +[2025.06.16-10.28.19:010][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=761.072 Y=631.133 +[2025.06.16-10.28.19:010][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=761.072 Y=631.133 +[2025.06.16-10.28.19:018][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=763.928 Y=631.133 +[2025.06.16-10.28.19:018][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=763.928 Y=631.133 +[2025.06.16-10.28.19:018][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=763.928 Y=631.133 +[2025.06.16-10.28.19:026][100]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=771.067 Y=631.133 +[2025.06.16-10.28.19:027][100]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=771.067 Y=631.133 +[2025.06.16-10.28.19:027][100]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=771.067 Y=631.133 +[2025.06.16-10.28.19:034][101]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=775.351 Y=631.133 +[2025.06.16-10.28.19:034][101]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=775.351 Y=631.133 +[2025.06.16-10.28.19:034][101]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=775.351 Y=631.133 +[2025.06.16-10.28.19:043][102]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=778.207 Y=631.133 +[2025.06.16-10.28.19:043][102]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=778.207 Y=631.133 +[2025.06.16-10.28.19:043][102]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=778.207 Y=631.133 +[2025.06.16-10.28.19:052][103]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=788.202 Y=631.133 +[2025.06.16-10.28.19:052][103]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=788.202 Y=631.133 +[2025.06.16-10.28.19:052][103]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=788.202 Y=631.133 +[2025.06.16-10.28.19:060][104]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=796.770 Y=632.561 +[2025.06.16-10.28.19:061][104]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=796.770 Y=632.561 +[2025.06.16-10.28.19:061][104]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=796.770 Y=632.561 +[2025.06.16-10.28.19:069][105]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=799.625 Y=632.561 +[2025.06.16-10.28.19:069][105]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=799.625 Y=632.561 +[2025.06.16-10.28.19:069][105]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=799.625 Y=632.561 +[2025.06.16-10.28.19:077][106]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=811.049 Y=632.561 +[2025.06.16-10.28.19:077][106]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=811.049 Y=632.561 +[2025.06.16-10.28.19:078][106]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=811.049 Y=632.561 +[2025.06.16-10.28.19:086][107]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=818.188 Y=632.561 +[2025.06.16-10.28.19:086][107]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=818.188 Y=632.561 +[2025.06.16-10.28.19:086][107]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=818.188 Y=632.561 +[2025.06.16-10.28.19:094][108]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=822.472 Y=632.561 +[2025.06.16-10.28.19:094][108]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=822.472 Y=632.561 +[2025.06.16-10.28.19:094][108]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=822.472 Y=632.561 +[2025.06.16-10.28.19:103][109]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=832.467 Y=632.561 +[2025.06.16-10.28.19:103][109]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=832.467 Y=632.561 +[2025.06.16-10.28.19:103][109]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=832.467 Y=632.561 +[2025.06.16-10.28.19:112][110]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=839.607 Y=633.989 +[2025.06.16-10.28.19:112][110]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=839.607 Y=633.989 +[2025.06.16-10.28.19:112][110]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=839.607 Y=633.989 +[2025.06.16-10.28.19:120][111]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=848.174 Y=633.989 +[2025.06.16-10.28.19:120][111]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=848.174 Y=633.989 +[2025.06.16-10.28.19:120][111]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=848.174 Y=633.989 +[2025.06.16-10.28.19:129][112]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=859.597 Y=635.417 +[2025.06.16-10.28.19:129][112]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=859.597 Y=635.417 +[2025.06.16-10.28.19:129][112]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=859.597 Y=635.417 +[2025.06.16-10.28.19:137][113]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=868.165 Y=635.417 +[2025.06.16-10.28.19:138][113]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=868.165 Y=635.417 +[2025.06.16-10.28.19:138][113]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=868.165 Y=635.417 +[2025.06.16-10.28.19:147][114]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=872.449 Y=635.417 +[2025.06.16-10.28.19:147][114]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=872.449 Y=635.417 +[2025.06.16-10.28.19:147][114]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=872.449 Y=635.417 +[2025.06.16-10.28.19:155][115]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=883.872 Y=636.845 +[2025.06.16-10.28.19:155][115]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=883.872 Y=636.845 +[2025.06.16-10.28.19:155][115]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=883.872 Y=636.845 +[2025.06.16-10.28.19:163][116]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=891.011 Y=636.845 +[2025.06.16-10.28.19:164][116]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=891.011 Y=636.845 +[2025.06.16-10.28.19:164][116]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=891.011 Y=636.845 +[2025.06.16-10.28.19:172][117]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=896.723 Y=636.845 +[2025.06.16-10.28.19:172][117]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=896.723 Y=636.845 +[2025.06.16-10.28.19:172][117]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=896.723 Y=636.845 +[2025.06.16-10.28.19:180][118]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=902.435 Y=636.845 +[2025.06.16-10.28.19:180][118]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=902.435 Y=636.845 +[2025.06.16-10.28.19:180][118]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=902.435 Y=636.845 +[2025.06.16-10.28.19:188][119]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=909.574 Y=636.845 +[2025.06.16-10.28.19:188][119]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=909.574 Y=636.845 +[2025.06.16-10.28.19:188][119]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=909.574 Y=636.845 +[2025.06.16-10.28.19:197][120]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=913.858 Y=636.845 +[2025.06.16-10.28.19:197][120]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=913.858 Y=636.845 +[2025.06.16-10.28.19:197][120]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=913.858 Y=636.845 +[2025.06.16-10.28.19:205][121]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=920.997 Y=636.845 +[2025.06.16-10.28.19:205][121]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=920.997 Y=636.845 +[2025.06.16-10.28.19:205][121]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=920.997 Y=636.845 +[2025.06.16-10.28.19:214][122]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=922.425 Y=636.845 +[2025.06.16-10.28.19:214][122]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=922.425 Y=636.845 +[2025.06.16-10.28.19:214][122]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=922.425 Y=636.845 +[2025.06.16-10.28.19:222][123]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=926.709 Y=636.845 +[2025.06.16-10.28.19:222][123]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=926.709 Y=636.845 +[2025.06.16-10.28.19:222][123]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=926.709 Y=636.845 +[2025.06.16-10.28.19:232][124]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=932.420 Y=636.845 +[2025.06.16-10.28.19:232][124]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=932.420 Y=636.845 +[2025.06.16-10.28.19:232][124]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=932.420 Y=636.845 +[2025.06.16-10.28.19:241][125]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=935.276 Y=636.845 +[2025.06.16-10.28.19:241][125]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=935.276 Y=636.845 +[2025.06.16-10.28.19:241][125]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=935.276 Y=636.845 +[2025.06.16-10.28.19:249][126]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=938.132 Y=638.273 +[2025.06.16-10.28.19:249][126]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=938.132 Y=638.273 +[2025.06.16-10.28.19:249][126]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=938.132 Y=638.273 +[2025.06.16-10.28.19:257][127]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=942.416 Y=638.273 +[2025.06.16-10.28.19:257][127]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=942.416 Y=638.273 +[2025.06.16-10.28.19:258][127]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=942.416 Y=638.273 +[2025.06.16-10.28.19:266][128]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=946.699 Y=638.273 +[2025.06.16-10.28.19:266][128]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=946.699 Y=638.273 +[2025.06.16-10.28.19:266][128]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=946.699 Y=638.273 +[2025.06.16-10.28.19:275][129]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=946.699 Y=638.273 +[2025.06.16-10.28.19:275][129]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=946.699 Y=638.273 +[2025.06.16-10.28.19:275][129]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=946.699 Y=638.273 +[2025.06.16-10.28.19:284][130]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=950.983 Y=639.700 +[2025.06.16-10.28.19:284][130]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=950.983 Y=639.700 +[2025.06.16-10.28.19:284][130]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=950.983 Y=639.700 +[2025.06.16-10.28.19:292][131]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=952.411 Y=639.700 +[2025.06.16-10.28.19:293][131]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=952.411 Y=639.700 +[2025.06.16-10.28.19:293][131]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=952.411 Y=639.700 +[2025.06.16-10.28.19:301][132]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=955.267 Y=639.700 +[2025.06.16-10.28.19:302][132]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=955.267 Y=639.700 +[2025.06.16-10.28.19:302][132]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=955.267 Y=639.700 +[2025.06.16-10.28.19:310][133]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=958.123 Y=639.700 +[2025.06.16-10.28.19:310][133]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=958.123 Y=639.700 +[2025.06.16-10.28.19:310][133]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=958.123 Y=639.700 +[2025.06.16-10.28.19:318][134]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=959.551 Y=639.700 +[2025.06.16-10.28.19:318][134]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=959.551 Y=639.700 +[2025.06.16-10.28.19:318][134]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=959.551 Y=639.700 +[2025.06.16-10.28.19:327][135]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=960.979 Y=639.700 +[2025.06.16-10.28.19:327][135]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=960.979 Y=639.700 +[2025.06.16-10.28.19:327][135]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=960.979 Y=639.700 +[2025.06.16-10.28.19:336][136]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=962.406 Y=639.700 +[2025.06.16-10.28.19:336][136]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=962.406 Y=639.700 +[2025.06.16-10.28.19:336][136]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=962.406 Y=639.700 +[2025.06.16-10.28.19:346][137]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=963.834 Y=639.700 +[2025.06.16-10.28.19:346][137]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=963.834 Y=639.700 +[2025.06.16-10.28.19:346][137]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=963.834 Y=639.700 +[2025.06.16-10.28.19:354][138]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=963.834 Y=639.700 +[2025.06.16-10.28.19:354][138]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=963.834 Y=639.700 +[2025.06.16-10.28.19:354][138]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=963.834 Y=639.700 +[2025.06.16-10.28.19:362][139]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=965.262 Y=639.700 +[2025.06.16-10.28.19:362][139]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=965.262 Y=639.700 +[2025.06.16-10.28.19:362][139]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=965.262 Y=639.700 +[2025.06.16-10.28.19:371][140]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=965.262 Y=639.700 +[2025.06.16-10.28.19:371][140]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=965.262 Y=639.700 +[2025.06.16-10.28.19:371][140]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=965.262 Y=639.700 +[2025.06.16-10.28.19:379][141]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=966.690 Y=639.700 +[2025.06.16-10.28.19:379][141]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=966.690 Y=639.700 +[2025.06.16-10.28.19:380][141]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=966.690 Y=639.700 +[2025.06.16-10.28.19:388][142]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=968.118 Y=639.700 +[2025.06.16-10.28.19:388][142]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=968.118 Y=639.700 +[2025.06.16-10.28.19:388][142]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=968.118 Y=639.700 +[2025.06.16-10.28.19:396][143]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=968.118 Y=639.700 +[2025.06.16-10.28.19:396][143]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=968.118 Y=639.700 +[2025.06.16-10.28.19:396][143]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=968.118 Y=639.700 +[2025.06.16-10.28.19:404][144]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=969.546 Y=639.700 +[2025.06.16-10.28.19:404][144]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=969.546 Y=639.700 +[2025.06.16-10.28.19:404][144]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=969.546 Y=639.700 +[2025.06.16-10.28.19:412][145]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=969.546 Y=639.700 +[2025.06.16-10.28.19:412][145]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=969.546 Y=639.700 +[2025.06.16-10.28.19:412][145]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=969.546 Y=639.700 +[2025.06.16-10.28.19:420][146]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=970.974 Y=639.700 +[2025.06.16-10.28.19:421][146]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=970.974 Y=639.700 +[2025.06.16-10.28.19:421][146]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=970.974 Y=639.700 +[2025.06.16-10.28.19:429][147]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=970.974 Y=639.700 +[2025.06.16-10.28.19:429][147]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=970.974 Y=639.700 +[2025.06.16-10.28.19:429][147]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=970.974 Y=639.700 +[2025.06.16-10.28.19:437][148]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=973.830 Y=639.700 +[2025.06.16-10.28.19:437][148]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=973.830 Y=639.700 +[2025.06.16-10.28.19:437][148]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=973.830 Y=639.700 +[2025.06.16-10.28.19:448][149]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=975.258 Y=639.700 +[2025.06.16-10.28.19:448][149]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=975.258 Y=639.700 +[2025.06.16-10.28.19:448][149]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=975.258 Y=639.700 +[2025.06.16-10.28.19:455][150]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=976.685 Y=639.700 +[2025.06.16-10.28.19:456][150]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=976.685 Y=639.700 +[2025.06.16-10.28.19:456][150]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=976.685 Y=639.700 +[2025.06.16-10.28.19:465][151]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=979.541 Y=639.700 +[2025.06.16-10.28.19:465][151]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=979.541 Y=639.700 +[2025.06.16-10.28.19:465][151]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=979.541 Y=639.700 +[2025.06.16-10.28.19:473][152]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=983.825 Y=639.700 +[2025.06.16-10.28.19:473][152]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=983.825 Y=639.700 +[2025.06.16-10.28.19:473][152]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=983.825 Y=639.700 +[2025.06.16-10.28.19:482][153]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=986.681 Y=639.700 +[2025.06.16-10.28.19:482][153]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=986.681 Y=639.700 +[2025.06.16-10.28.19:482][153]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=986.681 Y=639.700 +[2025.06.16-10.28.19:490][154]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=993.820 Y=639.700 +[2025.06.16-10.28.19:490][154]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=993.820 Y=639.700 +[2025.06.16-10.28.19:490][154]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=993.820 Y=639.700 +[2025.06.16-10.28.19:500][155]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=995.248 Y=639.700 +[2025.06.16-10.28.19:500][155]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=995.248 Y=639.700 +[2025.06.16-10.28.19:500][155]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=995.248 Y=639.700 +[2025.06.16-10.28.19:508][156]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=999.532 Y=639.700 +[2025.06.16-10.28.19:508][156]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=999.532 Y=639.700 +[2025.06.16-10.28.19:508][156]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=999.532 Y=639.700 +[2025.06.16-10.28.19:517][157]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1005.244 Y=641.128 +[2025.06.16-10.28.19:517][157]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1005.244 Y=641.128 +[2025.06.16-10.28.19:517][157]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1005.244 Y=641.128 +[2025.06.16-10.28.19:525][158]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1008.099 Y=641.128 +[2025.06.16-10.28.19:525][158]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1008.099 Y=641.128 +[2025.06.16-10.28.19:525][158]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1008.099 Y=641.128 +[2025.06.16-10.28.19:533][159]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1009.527 Y=641.128 +[2025.06.16-10.28.19:534][159]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1009.527 Y=641.128 +[2025.06.16-10.28.19:534][159]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1009.527 Y=641.128 +[2025.06.16-10.28.19:542][160]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1012.383 Y=641.128 +[2025.06.16-10.28.19:542][160]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1012.383 Y=641.128 +[2025.06.16-10.28.19:542][160]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1012.383 Y=641.128 +[2025.06.16-10.28.19:550][161]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1013.811 Y=641.128 +[2025.06.16-10.28.19:551][161]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1013.811 Y=641.128 +[2025.06.16-10.28.19:551][161]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1013.811 Y=641.128 +[2025.06.16-10.28.19:559][162]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1015.239 Y=641.128 +[2025.06.16-10.28.19:559][162]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1015.239 Y=641.128 +[2025.06.16-10.28.19:559][162]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1015.239 Y=641.128 +[2025.06.16-10.28.19:567][163]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1016.667 Y=641.128 +[2025.06.16-10.28.19:567][163]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1016.667 Y=641.128 +[2025.06.16-10.28.19:567][163]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1016.667 Y=641.128 +[2025.06.16-10.28.19:575][164]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1018.095 Y=641.128 +[2025.06.16-10.28.19:575][164]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1018.095 Y=641.128 +[2025.06.16-10.28.19:575][164]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1018.095 Y=641.128 +[2025.06.16-10.28.19:584][165]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1019.523 Y=641.128 +[2025.06.16-10.28.19:584][165]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1019.523 Y=641.128 +[2025.06.16-10.28.19:584][165]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1019.523 Y=641.128 +[2025.06.16-10.28.19:592][166]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:593][166]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:593][166]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:601][167]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:601][167]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:601][167]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1020.950 Y=641.128 +[2025.06.16-10.28.19:610][168]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1022.378 Y=641.128 +[2025.06.16-10.28.19:610][168]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1022.378 Y=641.128 +[2025.06.16-10.28.19:610][168]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1022.378 Y=641.128 +[2025.06.16-10.28.19:619][169]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1023.806 Y=641.128 +[2025.06.16-10.28.19:619][169]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1023.806 Y=641.128 +[2025.06.16-10.28.19:619][169]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1023.806 Y=641.128 +[2025.06.16-10.28.19:627][170]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:627][170]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:627][170]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:635][171]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:635][171]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:635][171]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1025.234 Y=641.128 +[2025.06.16-10.28.19:643][172]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:643][172]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:644][172]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:652][173]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:652][173]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:652][173]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1026.662 Y=641.128 +[2025.06.16-10.28.19:660][174]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:660][174]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:660][174]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:669][175]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:669][175]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:669][175]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1028.090 Y=641.128 +[2025.06.16-10.28.19:677][176]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:677][176]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:677][176]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:685][177]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:685][177]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:685][177]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1029.518 Y=641.128 +[2025.06.16-10.28.19:694][178]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:694][178]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:694][178]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:703][179]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:703][179]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:703][179]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:711][180]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:711][180]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:711][180]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1030.946 Y=641.128 +[2025.06.16-10.28.19:719][181]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:719][181]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:719][181]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:728][182]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:728][182]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:728][182]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1032.374 Y=641.128 +[2025.06.16-10.28.19:735][183]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1033.802 Y=641.128 +[2025.06.16-10.28.19:735][183]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1033.802 Y=641.128 +[2025.06.16-10.28.19:737][183]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1033.802 Y=641.128 +[2025.06.16-10.28.19:746][184]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:746][184]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:746][184]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:754][185]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:754][185]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:754][185]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:764][186]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:764][186]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:764][186]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1035.229 Y=641.128 +[2025.06.16-10.28.19:772][187]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:772][187]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:772][187]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:780][188]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:780][188]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:781][188]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1036.657 Y=641.128 +[2025.06.16-10.28.19:789][189]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1038.085 Y=641.128 +[2025.06.16-10.28.19:790][189]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1038.085 Y=641.128 +[2025.06.16-10.28.19:790][189]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1038.085 Y=641.128 +[2025.06.16-10.28.19:797][190]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1039.513 Y=641.128 +[2025.06.16-10.28.19:797][190]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1039.513 Y=641.128 +[2025.06.16-10.28.19:798][190]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1039.513 Y=641.128 +[2025.06.16-10.28.19:806][191]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1040.941 Y=641.128 +[2025.06.16-10.28.19:806][191]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1040.941 Y=641.128 +[2025.06.16-10.28.19:807][191]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1040.941 Y=641.128 +[2025.06.16-10.28.19:814][192]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1042.369 Y=641.128 +[2025.06.16-10.28.19:814][192]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1042.369 Y=641.128 +[2025.06.16-10.28.19:814][192]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1042.369 Y=641.128 +[2025.06.16-10.28.19:822][193]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:822][193]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:822][193]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:831][194]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:831][194]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:831][194]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1043.797 Y=641.128 +[2025.06.16-10.28.19:839][195]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1046.653 Y=641.128 +[2025.06.16-10.28.19:839][195]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1046.653 Y=641.128 +[2025.06.16-10.28.19:839][195]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1046.653 Y=641.128 +[2025.06.16-10.28.19:848][196]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1048.081 Y=641.128 +[2025.06.16-10.28.19:848][196]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1048.081 Y=641.128 +[2025.06.16-10.28.19:848][196]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1048.081 Y=641.128 +[2025.06.16-10.28.19:857][197]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1049.508 Y=641.128 +[2025.06.16-10.28.19:857][197]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1049.508 Y=641.128 +[2025.06.16-10.28.19:857][197]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1049.508 Y=641.128 +[2025.06.16-10.28.19:866][198]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1053.792 Y=641.128 +[2025.06.16-10.28.19:866][198]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1053.792 Y=641.128 +[2025.06.16-10.28.19:866][198]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1053.792 Y=641.128 +[2025.06.16-10.28.19:874][199]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1062.360 Y=642.556 +[2025.06.16-10.28.19:874][199]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1062.360 Y=642.556 +[2025.06.16-10.28.19:874][199]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1062.360 Y=642.556 +[2025.06.16-10.28.19:883][200]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1066.643 Y=642.556 +[2025.06.16-10.28.19:883][200]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1066.643 Y=642.556 +[2025.06.16-10.28.19:883][200]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1066.643 Y=642.556 +[2025.06.16-10.28.19:891][201]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1073.783 Y=642.556 +[2025.06.16-10.28.19:891][201]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1073.783 Y=642.556 +[2025.06.16-10.28.19:891][201]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1073.783 Y=642.556 +[2025.06.16-10.28.19:900][202]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1078.067 Y=643.984 +[2025.06.16-10.28.19:900][202]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1078.067 Y=643.984 +[2025.06.16-10.28.19:900][202]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1078.067 Y=643.984 +[2025.06.16-10.28.19:908][203]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1083.778 Y=643.984 +[2025.06.16-10.28.19:909][203]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1083.778 Y=643.984 +[2025.06.16-10.28.19:909][203]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1083.778 Y=643.984 +[2025.06.16-10.28.19:912][204]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=768.000 Y=554.000 +[2025.06.16-10.28.19:917][204]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1090.918 Y=645.412 +[2025.06.16-10.28.19:917][204]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1090.918 Y=645.412 +[2025.06.16-10.28.19:917][204]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1090.918 Y=645.412 +[2025.06.16-10.28.19:925][205]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1096.629 Y=645.412 +[2025.06.16-10.28.19:925][205]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1096.629 Y=645.412 +[2025.06.16-10.28.19:925][205]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1096.629 Y=645.412 +[2025.06.16-10.28.19:934][206]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1099.485 Y=646.840 +[2025.06.16-10.28.19:934][206]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1099.485 Y=646.840 +[2025.06.16-10.28.19:934][206]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1099.485 Y=646.840 +[2025.06.16-10.28.19:942][207]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=646.840 +[2025.06.16-10.28.19:943][207]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=646.840 +[2025.06.16-10.28.19:943][207]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=646.840 +[2025.06.16-10.28.19:951][208]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:951][208]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:951][208]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:960][209]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:960][209]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:960][209]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:964][210]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.28.19:968][210]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:968][210]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:968][210]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:975][211]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:975][211]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:975][211]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:984][212]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:984][212]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:984][212]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:992][213]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:992][213]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.19:992][213]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:001][214]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:001][214]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:001][214]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:009][215]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:009][215]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:009][215]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:018][216]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:018][216]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:018][216]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1103.769 Y=646.840 +[2025.06.16-10.28.20:026][217]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:026][217]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:026][217]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:034][218]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:035][218]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:035][218]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:042][219]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:042][219]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:042][219]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1105.197 Y=646.840 +[2025.06.16-10.28.20:051][220]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:051][220]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:051][220]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:060][221]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:060][221]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:060][221]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:069][222]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:069][222]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:069][222]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:076][223]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:077][223]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:077][223]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:085][224]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:085][224]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:085][224]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:093][225]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:093][225]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:093][225]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:102][226]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:102][226]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:102][226]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:110][227]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:110][227]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:110][227]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:118][228]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:118][228]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:118][228]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=646.840 +[2025.06.16-10.28.20:127][229]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:127][229]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:127][229]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:135][230]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:135][230]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:135][230]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=648.268 +[2025.06.16-10.28.20:144][231]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:144][231]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:144][231]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:152][232]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:152][232]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:152][232]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=649.696 +[2025.06.16-10.28.20:160][233]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=651.124 +[2025.06.16-10.28.20:160][233]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=651.124 +[2025.06.16-10.28.20:161][233]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=651.124 +[2025.06.16-10.28.20:169][234]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=652.552 +[2025.06.16-10.28.20:170][234]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=652.552 +[2025.06.16-10.28.20:170][234]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=652.552 +[2025.06.16-10.28.20:179][235]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1105.197 Y=653.979 +[2025.06.16-10.28.20:179][235]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1105.197 Y=653.979 +[2025.06.16-10.28.20:179][235]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1105.197 Y=653.979 +[2025.06.16-10.28.20:188][236]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:188][236]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:189][236]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:197][237]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:197][237]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:197][237]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:206][238]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:206][238]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:206][238]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:214][239]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:214][239]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:214][239]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:222][240]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:222][240]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:222][240]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:231][241]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:231][241]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:231][241]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:240][242]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:240][242]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:240][242]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:249][243]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:249][243]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:249][243]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:258][244]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:259][244]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:259][244]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:267][245]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:267][245]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:267][245]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:275][246]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:275][246]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:275][246]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:284][247]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:284][247]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:285][247]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:292][248]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:292][248]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:292][248]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:301][249]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:301][249]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:301][249]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:309][250]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:309][250]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:309][250]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:317][251]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:317][251]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:317][251]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:326][252]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:326][252]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:326][252]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:335][253]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:335][253]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:335][253]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:344][254]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:344][254]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:344][254]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:352][255]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:352][255]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:353][255]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:361][256]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:361][256]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:361][256]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:369][257]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:369][257]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:369][257]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:379][258]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:379][258]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:379][258]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:387][259]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:387][259]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:387][259]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:395][260]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:395][260]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:395][260]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:403][261]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:404][261]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:404][261]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:413][262]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:414][262]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:414][262]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:421][263]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:422][263]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:422][263]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:430][264]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:430][264]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:430][264]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:439][265]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:439][265]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:439][265]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:447][266]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:447][266]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:447][266]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:456][267]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:456][267]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:456][267]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:463][268]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:463][268]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:463][268]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:472][269]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:472][269]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:472][269]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:480][270]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:480][270]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:480][270]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:489][271]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:489][271]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:489][271]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:497][272]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:497][272]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:498][272]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:506][273]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:506][273]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:506][273]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:514][274]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:514][274]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:514][274]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:523][275]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:523][275]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:523][275]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:531][276]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:531][276]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:531][276]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:539][277]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:539][277]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:539][277]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:548][278]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:548][278]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:548][278]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:555][279]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:555][279]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:555][279]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:564][280]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:564][280]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:564][280]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:572][281]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:572][281]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:573][281]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:580][282]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:580][282]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:580][282]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:589][283]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:589][283]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:589][283]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=655.407 +[2025.06.16-10.28.20:597][284]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:597][284]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:597][284]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:607][285]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:607][285]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:607][285]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=656.835 +[2025.06.16-10.28.20:614][286]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1106.625 Y=656.835 +[2025.06.16-10.28.20:615][286]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1106.625 Y=656.835 +[2025.06.16-10.28.20:615][286]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1106.625 Y=656.835 +[2025.06.16-10.28.20:624][287]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1108.052 Y=656.835 +[2025.06.16-10.28.20:624][287]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1108.052 Y=656.835 +[2025.06.16-10.28.20:624][287]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1108.052 Y=656.835 +[2025.06.16-10.28.20:632][288]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:632][288]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:632][288]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:640][289]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:640][289]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:640][289]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1109.480 Y=656.835 +[2025.06.16-10.28.20:649][290]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:649][290]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:649][290]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:657][291]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:657][291]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:657][291]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:665][292]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:665][292]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:665][292]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:674][293]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:674][293]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:674][293]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:682][294]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:682][294]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:682][294]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:690][295]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:690][295]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:691][295]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:698][296]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:699][296]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:699][296]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:707][297]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:707][297]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:707][297]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:716][298]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:716][298]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:716][298]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:724][299]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:724][299]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:724][299]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:733][300]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:733][300]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:733][300]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1110.908 Y=656.835 +[2025.06.16-10.28.20:742][301]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:742][301]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:742][301]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:750][302]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:750][302]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:750][302]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:758][303]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:758][303]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:759][303]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:767][304]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:767][304]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:767][304]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:774][305]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:774][305]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:776][305]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1112.336 Y=656.835 +[2025.06.16-10.28.20:784][306]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:784][306]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:785][306]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:791][307]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:793][307]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:793][307]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:800][308]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:800][308]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:800][308]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:809][309]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:809][309]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:809][309]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:817][310]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:817][310]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:817][310]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1113.764 Y=656.835 +[2025.06.16-10.28.20:825][311]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:825][311]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:825][311]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:834][312]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:834][312]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:834][312]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1115.192 Y=656.835 +[2025.06.16-10.28.20:843][313]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:843][313]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:843][313]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:850][314]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:850][314]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:850][314]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1116.620 Y=656.835 +[2025.06.16-10.28.20:860][315]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:860][315]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:860][315]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:868][316]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:868][316]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:868][316]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1118.048 Y=656.835 +[2025.06.16-10.28.20:876][317]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:877][317]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:877][317]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:885][318]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:885][318]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:885][318]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1119.476 Y=656.835 +[2025.06.16-10.28.20:893][319]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1120.904 Y=656.835 +[2025.06.16-10.28.20:893][319]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1120.904 Y=656.835 +[2025.06.16-10.28.20:893][319]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1120.904 Y=656.835 +[2025.06.16-10.28.20:902][320]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:902][320]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:902][320]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:910][321]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:910][321]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:910][321]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1122.332 Y=656.835 +[2025.06.16-10.28.20:919][322]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:919][322]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:920][322]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:928][323]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:928][323]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:928][323]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1125.187 Y=656.835 +[2025.06.16-10.28.20:937][324]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1128.043 Y=656.835 +[2025.06.16-10.28.20:937][324]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1128.043 Y=656.835 +[2025.06.16-10.28.20:937][324]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1128.043 Y=656.835 +[2025.06.16-10.28.20:945][325]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1132.327 Y=658.263 +[2025.06.16-10.28.20:945][325]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1132.327 Y=658.263 +[2025.06.16-10.28.20:945][325]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1132.327 Y=658.263 +[2025.06.16-10.28.20:953][326]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1133.755 Y=658.263 +[2025.06.16-10.28.20:953][326]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1133.755 Y=658.263 +[2025.06.16-10.28.20:954][326]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1133.755 Y=658.263 +[2025.06.16-10.28.20:963][327]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1136.611 Y=658.263 +[2025.06.16-10.28.20:963][327]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1136.611 Y=658.263 +[2025.06.16-10.28.20:963][327]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1136.611 Y=658.263 +[2025.06.16-10.28.20:972][328]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1140.894 Y=658.263 +[2025.06.16-10.28.20:972][328]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1140.894 Y=658.263 +[2025.06.16-10.28.20:972][328]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1140.894 Y=658.263 +[2025.06.16-10.28.20:981][329]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1143.750 Y=658.263 +[2025.06.16-10.28.20:982][329]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1143.750 Y=658.263 +[2025.06.16-10.28.20:982][329]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1143.750 Y=658.263 +[2025.06.16-10.28.20:990][330]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1145.178 Y=658.263 +[2025.06.16-10.28.20:990][330]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1145.178 Y=658.263 +[2025.06.16-10.28.20:990][330]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1145.178 Y=658.263 +[2025.06.16-10.28.21:000][331]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1148.034 Y=658.263 +[2025.06.16-10.28.21:000][331]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1148.034 Y=658.263 +[2025.06.16-10.28.21:000][331]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1148.034 Y=658.263 +[2025.06.16-10.28.21:008][332]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:008][332]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:008][332]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:016][333]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:017][333]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:017][333]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1149.462 Y=658.263 +[2025.06.16-10.28.21:025][334]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1150.890 Y=659.691 +[2025.06.16-10.28.21:025][334]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1150.890 Y=659.691 +[2025.06.16-10.28.21:025][334]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1150.890 Y=659.691 +[2025.06.16-10.28.21:034][335]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:034][335]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:034][335]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:041][336]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:041][336]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:041][336]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1152.318 Y=659.691 +[2025.06.16-10.28.21:049][337]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1153.745 Y=659.691 +[2025.06.16-10.28.21:049][337]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1153.745 Y=659.691 +[2025.06.16-10.28.21:049][337]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1153.745 Y=659.691 +[2025.06.16-10.28.21:058][338]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:058][338]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:058][338]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:067][339]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:067][339]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:067][339]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1155.173 Y=659.691 +[2025.06.16-10.28.21:076][340]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1156.601 Y=659.691 +[2025.06.16-10.28.21:076][340]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1156.601 Y=659.691 +[2025.06.16-10.28.21:076][340]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1156.601 Y=659.691 +[2025.06.16-10.28.21:084][341]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1158.029 Y=659.691 +[2025.06.16-10.28.21:084][341]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1158.029 Y=659.691 +[2025.06.16-10.28.21:084][341]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1158.029 Y=659.691 +[2025.06.16-10.28.21:093][342]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1159.457 Y=659.691 +[2025.06.16-10.28.21:093][342]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1159.457 Y=659.691 +[2025.06.16-10.28.21:093][342]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1159.457 Y=659.691 +[2025.06.16-10.28.21:101][343]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:101][343]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:101][343]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:109][344]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:109][344]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:110][344]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1162.313 Y=659.691 +[2025.06.16-10.28.21:117][345]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1163.741 Y=659.691 +[2025.06.16-10.28.21:117][345]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1163.741 Y=659.691 +[2025.06.16-10.28.21:118][345]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1163.741 Y=659.691 +[2025.06.16-10.28.21:126][346]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1165.169 Y=659.691 +[2025.06.16-10.28.21:126][346]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1165.169 Y=659.691 +[2025.06.16-10.28.21:126][346]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1165.169 Y=659.691 +[2025.06.16-10.28.21:135][347]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:135][347]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:135][347]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:142][348]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:143][348]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:143][348]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1166.597 Y=659.691 +[2025.06.16-10.28.21:151][349]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1168.024 Y=659.691 +[2025.06.16-10.28.21:151][349]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1168.024 Y=659.691 +[2025.06.16-10.28.21:151][349]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1168.024 Y=659.691 +[2025.06.16-10.28.21:160][350]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:160][350]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:160][350]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:168][351]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:168][351]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:168][351]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:175][352]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:175][352]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:175][352]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1169.452 Y=659.691 +[2025.06.16-10.28.21:185][353]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:185][353]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:185][353]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:192][354]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:193][354]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:193][354]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1172.308 Y=659.691 +[2025.06.16-10.28.21:201][355]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:201][355]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:201][355]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:210][356]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:210][356]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:210][356]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:218][357]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:218][357]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:218][357]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1173.736 Y=659.691 +[2025.06.16-10.28.21:228][358]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1175.164 Y=659.691 +[2025.06.16-10.28.21:228][358]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1175.164 Y=659.691 +[2025.06.16-10.28.21:228][358]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1175.164 Y=659.691 +[2025.06.16-10.28.21:237][359]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:237][359]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:237][359]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:246][360]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:246][360]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:246][360]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1176.592 Y=659.691 +[2025.06.16-10.28.21:254][361]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1178.020 Y=659.691 +[2025.06.16-10.28.21:254][361]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1178.020 Y=659.691 +[2025.06.16-10.28.21:255][361]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1178.020 Y=659.691 +[2025.06.16-10.28.21:264][362]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:264][362]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:264][362]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:271][363]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:273][363]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:273][363]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:281][364]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:281][364]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:281][364]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1179.448 Y=659.691 +[2025.06.16-10.28.21:291][365]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:291][365]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:291][365]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:300][366]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:300][366]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:300][366]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:308][367]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:309][367]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:309][367]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:317][368]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:318][368]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:318][368]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1180.875 Y=659.691 +[2025.06.16-10.28.21:327][369]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:327][369]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:327][369]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:335][370]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:335][370]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:335][370]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1182.303 Y=659.691 +[2025.06.16-10.28.21:343][371]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1183.731 Y=659.691 +[2025.06.16-10.28.21:343][371]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1183.731 Y=659.691 +[2025.06.16-10.28.21:343][371]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1183.731 Y=659.691 +[2025.06.16-10.28.21:352][372]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:352][372]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:352][372]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:361][373]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:361][373]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:361][373]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:370][374]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:370][374]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:370][374]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:378][375]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:378][375]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:378][375]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1185.159 Y=659.691 +[2025.06.16-10.28.21:386][376]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:386][376]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:386][376]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:394][377]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:394][377]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:395][377]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:403][378]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:403][378]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:403][378]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:410][379]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:412][379]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:412][379]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:420][380]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:420][380]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:420][380]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1186.587 Y=659.691 +[2025.06.16-10.28.21:428][381]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:428][381]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:428][381]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:435][382]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:435][382]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:435][382]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1188.015 Y=659.691 +[2025.06.16-10.28.21:446][383]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:446][383]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:446][383]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:454][384]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:454][384]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:454][384]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:464][385]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:464][385]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:464][385]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1189.443 Y=659.691 +[2025.06.16-10.28.21:473][386]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:473][386]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:473][386]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:480][387]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:480][387]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:480][387]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:488][388]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:488][388]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:488][388]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:497][389]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:497][389]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:497][389]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:507][390]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:507][390]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:507][390]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1190.871 Y=659.691 +[2025.06.16-10.28.21:514][391]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:514][391]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:514][391]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:523][392]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:523][392]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:523][392]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:532][393]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:532][393]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:532][393]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:540][394]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:540][394]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:541][394]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1192.299 Y=659.691 +[2025.06.16-10.28.21:548][395]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:548][395]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:548][395]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:558][396]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:558][396]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:558][396]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:564][397]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:566][397]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:566][397]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1193.727 Y=659.691 +[2025.06.16-10.28.21:574][398]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1195.155 Y=659.691 +[2025.06.16-10.28.21:574][398]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1195.155 Y=659.691 +[2025.06.16-10.28.21:574][398]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1195.155 Y=659.691 +[2025.06.16-10.28.21:583][399]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:583][399]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:583][399]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:592][400]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:592][400]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:592][400]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1196.583 Y=659.691 +[2025.06.16-10.28.21:601][401]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:601][401]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:601][401]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:609][402]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:609][402]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:609][402]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1198.010 Y=659.691 +[2025.06.16-10.28.21:618][403]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:618][403]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:618][403]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:625][404]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:625][404]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:627][404]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1199.438 Y=659.691 +[2025.06.16-10.28.21:635][405]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1200.866 Y=659.691 +[2025.06.16-10.28.21:635][405]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1200.866 Y=659.691 +[2025.06.16-10.28.21:635][405]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1200.866 Y=659.691 +[2025.06.16-10.28.21:643][406]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:644][406]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:644][406]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:652][407]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:652][407]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:652][407]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:659][408]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:659][408]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:659][408]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:668][409]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:668][409]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:668][409]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1202.294 Y=659.691 +[2025.06.16-10.28.21:677][410]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:677][410]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:677][410]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:686][411]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:686][411]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:686][411]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1203.722 Y=659.691 +[2025.06.16-10.28.21:694][412]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:694][412]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:694][412]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:701][413]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:701][413]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:701][413]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:711][414]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:712][414]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:712][414]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1205.150 Y=659.691 +[2025.06.16-10.28.21:719][415]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1208.006 Y=659.691 +[2025.06.16-10.28.21:719][415]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1208.006 Y=659.691 +[2025.06.16-10.28.21:719][415]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1208.006 Y=659.691 +[2025.06.16-10.28.21:728][416]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1209.434 Y=659.691 +[2025.06.16-10.28.21:728][416]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1209.434 Y=659.691 +[2025.06.16-10.28.21:728][416]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1209.434 Y=659.691 +[2025.06.16-10.28.21:737][417]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1210.861 Y=659.691 +[2025.06.16-10.28.21:737][417]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1210.861 Y=659.691 +[2025.06.16-10.28.21:737][417]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1210.861 Y=659.691 +[2025.06.16-10.28.21:745][418]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1215.145 Y=659.691 +[2025.06.16-10.28.21:745][418]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1215.145 Y=659.691 +[2025.06.16-10.28.21:745][418]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1215.145 Y=659.691 +[2025.06.16-10.28.21:754][419]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:754][419]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:754][419]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:761][420]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:762][420]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:762][420]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1218.001 Y=659.691 +[2025.06.16-10.28.21:770][421]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1220.857 Y=659.691 +[2025.06.16-10.28.21:771][421]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1220.857 Y=659.691 +[2025.06.16-10.28.21:771][421]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1220.857 Y=659.691 +[2025.06.16-10.28.21:779][422]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1222.285 Y=659.691 +[2025.06.16-10.28.21:779][422]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1222.285 Y=659.691 +[2025.06.16-10.28.21:779][422]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1222.285 Y=659.691 +[2025.06.16-10.28.21:787][423]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1223.713 Y=659.691 +[2025.06.16-10.28.21:787][423]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1223.713 Y=659.691 +[2025.06.16-10.28.21:789][423]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1223.713 Y=659.691 +[2025.06.16-10.28.21:796][424]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:796][424]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:796][424]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:804][425]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:804][425]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:804][425]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:812][426]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:812][426]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:812][426]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:821][427]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:821][427]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:821][427]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:829][428]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:829][428]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:829][428]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:837][429]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:837][429]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:837][429]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1225.141 Y=659.691 +[2025.06.16-10.28.21:846][430]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:847][430]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:847][430]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:854][431]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:854][431]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:855][431]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:862][432]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:862][432]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:862][432]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:871][433]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:871][433]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:871][433]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1226.568 Y=659.691 +[2025.06.16-10.28.21:879][434]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1227.996 Y=659.691 +[2025.06.16-10.28.21:879][434]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1227.996 Y=659.691 +[2025.06.16-10.28.21:879][434]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1227.996 Y=659.691 +[2025.06.16-10.28.21:887][435]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:887][435]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:887][435]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:897][436]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:897][436]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:897][436]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:904][437]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:904][437]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:904][437]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:913][438]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:913][438]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:913][438]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1229.424 Y=659.691 +[2025.06.16-10.28.21:921][439]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:921][439]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:921][439]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:931][440]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:931][440]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:931][440]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:939][441]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:939][441]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:939][441]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:947][442]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:947][442]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:948][442]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1230.852 Y=659.691 +[2025.06.16-10.28.21:956][443]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:956][443]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:956][443]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:964][444]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:964][444]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:964][444]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:973][445]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:973][445]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:973][445]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1232.280 Y=659.691 +[2025.06.16-10.28.21:981][446]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:982][446]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:982][446]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:990][447]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:990][447]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:990][447]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1233.708 Y=659.691 +[2025.06.16-10.28.21:998][448]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1235.136 Y=659.691 +[2025.06.16-10.28.21:998][448]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1235.136 Y=659.691 +[2025.06.16-10.28.21:998][448]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:005][449]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:005][449]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:007][449]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:014][450]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:014][450]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:014][450]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:023][451]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:023][451]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:023][451]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1235.136 Y=659.691 +[2025.06.16-10.28.22:031][452]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:031][452]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:031][452]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:041][453]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:041][453]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:041][453]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1236.564 Y=659.691 +[2025.06.16-10.28.22:048][454]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:048][454]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:048][454]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:057][455]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:057][455]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:058][455]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:064][456]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:065][456]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:065][456]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1237.992 Y=659.691 +[2025.06.16-10.28.22:074][457]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:074][457]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:074][457]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:082][458]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:083][458]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:083][458]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1240.847 Y=659.691 +[2025.06.16-10.28.22:091][459]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:092][459]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:092][459]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:099][460]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:099][460]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:099][460]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1242.275 Y=659.691 +[2025.06.16-10.28.22:108][461]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1243.703 Y=659.691 +[2025.06.16-10.28.22:108][461]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1243.703 Y=659.691 +[2025.06.16-10.28.22:108][461]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1243.703 Y=659.691 +[2025.06.16-10.28.22:117][462]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1245.131 Y=659.691 +[2025.06.16-10.28.22:117][462]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1245.131 Y=659.691 +[2025.06.16-10.28.22:117][462]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1245.131 Y=659.691 +[2025.06.16-10.28.22:125][463]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1247.987 Y=659.691 +[2025.06.16-10.28.22:125][463]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1247.987 Y=659.691 +[2025.06.16-10.28.22:125][463]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1247.987 Y=659.691 +[2025.06.16-10.28.22:133][464]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1249.415 Y=659.691 +[2025.06.16-10.28.22:133][464]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1249.415 Y=659.691 +[2025.06.16-10.28.22:133][464]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1249.415 Y=659.691 +[2025.06.16-10.28.22:141][465]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1250.843 Y=659.691 +[2025.06.16-10.28.22:142][465]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1250.843 Y=659.691 +[2025.06.16-10.28.22:142][465]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1250.843 Y=659.691 +[2025.06.16-10.28.22:150][466]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1253.699 Y=659.691 +[2025.06.16-10.28.22:150][466]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1253.699 Y=659.691 +[2025.06.16-10.28.22:151][466]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1253.699 Y=659.691 +[2025.06.16-10.28.22:158][467]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1256.554 Y=659.691 +[2025.06.16-10.28.22:158][467]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1256.554 Y=659.691 +[2025.06.16-10.28.22:158][467]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1256.554 Y=659.691 +[2025.06.16-10.28.22:167][468]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1257.982 Y=659.691 +[2025.06.16-10.28.22:167][468]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1257.982 Y=659.691 +[2025.06.16-10.28.22:167][468]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1257.982 Y=659.691 +[2025.06.16-10.28.22:175][469]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1260.838 Y=659.691 +[2025.06.16-10.28.22:175][469]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1260.838 Y=659.691 +[2025.06.16-10.28.22:175][469]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1260.838 Y=659.691 +[2025.06.16-10.28.22:183][470]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1262.266 Y=659.691 +[2025.06.16-10.28.22:183][470]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1262.266 Y=659.691 +[2025.06.16-10.28.22:183][470]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1262.266 Y=659.691 +[2025.06.16-10.28.22:192][471]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1263.694 Y=659.691 +[2025.06.16-10.28.22:192][471]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1263.694 Y=659.691 +[2025.06.16-10.28.22:192][471]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1263.694 Y=659.691 +[2025.06.16-10.28.22:200][472]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:200][472]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:200][472]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:209][473]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:209][473]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:209][473]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:217][474]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:217][474]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:217][474]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1265.122 Y=659.691 +[2025.06.16-10.28.22:226][475]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1266.550 Y=659.691 +[2025.06.16-10.28.22:226][475]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1266.550 Y=659.691 +[2025.06.16-10.28.22:226][475]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1266.550 Y=659.691 +[2025.06.16-10.28.22:235][476]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:235][476]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:235][476]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:243][477]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:243][477]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:244][477]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:250][478]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:250][478]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:252][478]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1267.978 Y=659.691 +[2025.06.16-10.28.22:261][479]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:261][479]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:261][479]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:268][480]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:268][480]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:268][480]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1269.406 Y=659.691 +[2025.06.16-10.28.22:277][481]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1270.833 Y=659.691 +[2025.06.16-10.28.22:277][481]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1270.833 Y=659.691 +[2025.06.16-10.28.22:277][481]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1270.833 Y=659.691 +[2025.06.16-10.28.22:287][482]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1272.261 Y=659.691 +[2025.06.16-10.28.22:287][482]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1272.261 Y=659.691 +[2025.06.16-10.28.22:288][482]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1272.261 Y=659.691 +[2025.06.16-10.28.22:295][483]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1273.689 Y=659.691 +[2025.06.16-10.28.22:295][483]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1273.689 Y=659.691 +[2025.06.16-10.28.22:295][483]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1273.689 Y=659.691 +[2025.06.16-10.28.22:304][484]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1275.117 Y=659.691 +[2025.06.16-10.28.22:304][484]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1275.117 Y=659.691 +[2025.06.16-10.28.22:304][484]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1275.117 Y=659.691 +[2025.06.16-10.28.22:312][485]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1276.545 Y=659.691 +[2025.06.16-10.28.22:312][485]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1276.545 Y=659.691 +[2025.06.16-10.28.22:312][485]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1276.545 Y=659.691 +[2025.06.16-10.28.22:320][486]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1279.401 Y=659.691 +[2025.06.16-10.28.22:320][486]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1279.401 Y=659.691 +[2025.06.16-10.28.22:320][486]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1279.401 Y=659.691 +[2025.06.16-10.28.22:329][487]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1283.685 Y=661.119 +[2025.06.16-10.28.22:329][487]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1283.685 Y=661.119 +[2025.06.16-10.28.22:329][487]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1283.685 Y=661.119 +[2025.06.16-10.28.22:338][488]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1286.540 Y=661.119 +[2025.06.16-10.28.22:338][488]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1286.540 Y=661.119 +[2025.06.16-10.28.22:338][488]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1286.540 Y=661.119 +[2025.06.16-10.28.22:345][489]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1289.396 Y=661.119 +[2025.06.16-10.28.22:346][489]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1289.396 Y=661.119 +[2025.06.16-10.28.22:346][489]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1289.396 Y=661.119 +[2025.06.16-10.28.22:354][490]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1293.680 Y=661.119 +[2025.06.16-10.28.22:355][490]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1293.680 Y=661.119 +[2025.06.16-10.28.22:355][490]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1293.680 Y=661.119 +[2025.06.16-10.28.22:363][491]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1297.964 Y=661.119 +[2025.06.16-10.28.22:363][491]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1297.964 Y=661.119 +[2025.06.16-10.28.22:363][491]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1297.964 Y=661.119 +[2025.06.16-10.28.22:372][492]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1302.247 Y=661.119 +[2025.06.16-10.28.22:372][492]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1302.247 Y=661.119 +[2025.06.16-10.28.22:372][492]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1302.247 Y=661.119 +[2025.06.16-10.28.22:380][493]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1305.103 Y=662.547 +[2025.06.16-10.28.22:380][493]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1305.103 Y=662.547 +[2025.06.16-10.28.22:380][493]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1305.103 Y=662.547 +[2025.06.16-10.28.22:388][494]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1309.387 Y=662.547 +[2025.06.16-10.28.22:388][494]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1309.387 Y=662.547 +[2025.06.16-10.28.22:388][494]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1309.387 Y=662.547 +[2025.06.16-10.28.22:397][495]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1312.243 Y=662.547 +[2025.06.16-10.28.22:397][495]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1312.243 Y=662.547 +[2025.06.16-10.28.22:397][495]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1312.243 Y=662.547 +[2025.06.16-10.28.22:406][496]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1313.671 Y=662.547 +[2025.06.16-10.28.22:406][496]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1313.671 Y=662.547 +[2025.06.16-10.28.22:406][496]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1313.671 Y=662.547 +[2025.06.16-10.28.22:414][497]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1315.098 Y=662.547 +[2025.06.16-10.28.22:414][497]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1315.098 Y=662.547 +[2025.06.16-10.28.22:414][497]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1315.098 Y=662.547 +[2025.06.16-10.28.22:423][498]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1316.526 Y=662.547 +[2025.06.16-10.28.22:423][498]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1316.526 Y=662.547 +[2025.06.16-10.28.22:423][498]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1316.526 Y=662.547 +[2025.06.16-10.28.22:431][499]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1319.382 Y=662.547 +[2025.06.16-10.28.22:431][499]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1319.382 Y=662.547 +[2025.06.16-10.28.22:431][499]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1319.382 Y=662.547 +[2025.06.16-10.28.22:441][500]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1320.810 Y=663.975 +[2025.06.16-10.28.22:441][500]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1320.810 Y=663.975 +[2025.06.16-10.28.22:441][500]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1320.810 Y=663.975 +[2025.06.16-10.28.22:448][501]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1323.666 Y=663.975 +[2025.06.16-10.28.22:448][501]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1323.666 Y=663.975 +[2025.06.16-10.28.22:448][501]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1323.666 Y=663.975 +[2025.06.16-10.28.22:458][502]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1325.094 Y=663.975 +[2025.06.16-10.28.22:458][502]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1325.094 Y=663.975 +[2025.06.16-10.28.22:458][502]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1325.094 Y=663.975 +[2025.06.16-10.28.22:466][503]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1326.522 Y=665.403 +[2025.06.16-10.28.22:466][503]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1326.522 Y=665.403 +[2025.06.16-10.28.22:466][503]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1326.522 Y=665.403 +[2025.06.16-10.28.22:476][504]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1327.949 Y=665.403 +[2025.06.16-10.28.22:476][504]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1327.949 Y=665.403 +[2025.06.16-10.28.22:476][504]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1327.949 Y=665.403 +[2025.06.16-10.28.22:483][505]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1329.377 Y=665.403 +[2025.06.16-10.28.22:484][505]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1329.377 Y=665.403 +[2025.06.16-10.28.22:484][505]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1329.377 Y=665.403 +[2025.06.16-10.28.22:492][506]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:492][506]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:492][506]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:500][507]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:500][507]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:500][507]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1330.805 Y=665.403 +[2025.06.16-10.28.22:508][508]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:508][508]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:509][508]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:518][509]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:518][509]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:518][509]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:527][510]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:527][510]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:527][510]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1332.233 Y=665.403 +[2025.06.16-10.28.22:536][511]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1333.661 Y=665.403 +[2025.06.16-10.28.22:536][511]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1333.661 Y=665.403 +[2025.06.16-10.28.22:536][511]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1333.661 Y=665.403 +[2025.06.16-10.28.22:544][512]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:544][512]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:544][512]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:551][513]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:551][513]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:551][513]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:560][514]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:560][514]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:560][514]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:568][515]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:568][515]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:568][515]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1335.089 Y=665.403 +[2025.06.16-10.28.22:577][516]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:577][516]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:577][516]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:585][517]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:585][517]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:585][517]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:593][518]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:593][518]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:593][518]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:601][519]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:602][519]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:602][519]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1336.517 Y=665.403 +[2025.06.16-10.28.22:610][520]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:610][520]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:610][520]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:618][521]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:618][521]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:618][521]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:628][522]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:628][522]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:629][522]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:636][523]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:636][523]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:637][523]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:644][524]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:644][524]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:644][524]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:652][525]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:652][525]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:652][525]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1337.945 Y=665.403 +[2025.06.16-10.28.22:661][526]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:661][526]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:662][526]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:670][527]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:670][527]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:670][527]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1339.373 Y=665.403 +[2025.06.16-10.28.22:678][528]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:678][528]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:678][528]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:687][529]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:687][529]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:687][529]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:695][530]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:695][530]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:695][530]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1340.801 Y=665.403 +[2025.06.16-10.28.22:704][531]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:704][531]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:704][531]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:713][532]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:713][532]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:713][532]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1342.229 Y=665.403 +[2025.06.16-10.28.22:722][533]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:722][533]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:722][533]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:731][534]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:731][534]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:731][534]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1343.656 Y=665.403 +[2025.06.16-10.28.22:740][535]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:740][535]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:740][535]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:748][536]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:748][536]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:748][536]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1345.084 Y=665.403 +[2025.06.16-10.28.22:756][537]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1346.512 Y=665.403 +[2025.06.16-10.28.22:756][537]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1346.512 Y=665.403 +[2025.06.16-10.28.22:757][537]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1346.512 Y=665.403 +[2025.06.16-10.28.22:764][538]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:764][538]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:764][538]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:773][539]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:773][539]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:773][539]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1347.940 Y=665.403 +[2025.06.16-10.28.22:782][540]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1349.368 Y=665.403 +[2025.06.16-10.28.22:782][540]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1349.368 Y=665.403 +[2025.06.16-10.28.22:782][540]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1349.368 Y=665.403 +[2025.06.16-10.28.22:790][541]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1352.224 Y=665.403 +[2025.06.16-10.28.22:790][541]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1352.224 Y=665.403 +[2025.06.16-10.28.22:790][541]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1352.224 Y=665.403 +[2025.06.16-10.28.22:798][542]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1355.080 Y=665.403 +[2025.06.16-10.28.22:798][542]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1355.080 Y=665.403 +[2025.06.16-10.28.22:798][542]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1355.080 Y=665.403 +[2025.06.16-10.28.22:807][543]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1356.508 Y=665.403 +[2025.06.16-10.28.22:807][543]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1356.508 Y=665.403 +[2025.06.16-10.28.22:807][543]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1356.508 Y=665.403 +[2025.06.16-10.28.22:816][544]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1360.791 Y=665.403 +[2025.06.16-10.28.22:816][544]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1360.791 Y=665.403 +[2025.06.16-10.28.22:816][544]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1360.791 Y=665.403 +[2025.06.16-10.28.22:823][545]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1362.219 Y=665.403 +[2025.06.16-10.28.22:823][545]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1362.219 Y=665.403 +[2025.06.16-10.28.22:823][545]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1362.219 Y=665.403 +[2025.06.16-10.28.22:831][546]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1365.075 Y=665.403 +[2025.06.16-10.28.22:833][546]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1365.075 Y=665.403 +[2025.06.16-10.28.22:833][546]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1365.075 Y=665.403 +[2025.06.16-10.28.22:840][547]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1367.931 Y=665.403 +[2025.06.16-10.28.22:840][547]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1367.931 Y=665.403 +[2025.06.16-10.28.22:841][547]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1367.931 Y=665.403 +[2025.06.16-10.28.22:849][548]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:849][548]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:849][548]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:857][549]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:858][549]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:858][549]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:865][550]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:865][550]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:865][550]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1370.787 Y=665.403 +[2025.06.16-10.28.22:874][551]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:874][551]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:874][551]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:883][552]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:883][552]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:883][552]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:891][553]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:891][553]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:891][553]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:899][554]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:899][554]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:899][554]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:908][555]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:908][555]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:908][555]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:916][556]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:916][556]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:916][556]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:924][557]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:924][557]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:924][557]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1372.214 Y=665.403 +[2025.06.16-10.28.22:933][558]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:933][558]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:933][558]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:941][559]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:941][559]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:941][559]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:950][560]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:950][560]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:950][560]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1373.642 Y=665.403 +[2025.06.16-10.28.22:957][561]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1375.070 Y=665.403 +[2025.06.16-10.28.22:957][561]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1375.070 Y=665.403 +[2025.06.16-10.28.22:957][561]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1375.070 Y=665.403 +[2025.06.16-10.28.22:966][562]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:966][562]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:966][562]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:976][563]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:976][563]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:976][563]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:983][564]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:983][564]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:984][564]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:993][565]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:993][565]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1376.498 Y=665.403 +[2025.06.16-10.28.22:993][565]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1376.498 Y=665.403 +[2025.06.16-10.28.23:002][566]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1376.498 Y=665.403 +[2025.06.16-10.28.23:002][566]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1376.498 Y=665.403 +[2025.06.16-10.28.23:002][566]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1376.498 Y=665.403 +[2025.06.16-10.28.23:010][567]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:010][567]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:010][567]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:017][568]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:017][568]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:017][568]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:026][569]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:027][569]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:027][569]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1377.926 Y=665.403 +[2025.06.16-10.28.23:035][570]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:035][570]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:035][570]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:043][571]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:043][571]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:043][571]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1379.354 Y=665.403 +[2025.06.16-10.28.23:052][572]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:052][572]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:052][572]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:060][573]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:061][573]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:061][573]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1382.210 Y=665.403 +[2025.06.16-10.28.23:069][574]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:069][574]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:069][574]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:077][575]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:077][575]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:077][575]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:085][576]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:085][576]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:085][576]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1383.638 Y=665.403 +[2025.06.16-10.28.23:094][577]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1385.066 Y=665.403 +[2025.06.16-10.28.23:094][577]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1385.066 Y=665.403 +[2025.06.16-10.28.23:095][577]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1385.066 Y=665.403 +[2025.06.16-10.28.23:101][578]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1386.494 Y=665.403 +[2025.06.16-10.28.23:103][578]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1386.494 Y=665.403 +[2025.06.16-10.28.23:103][578]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1386.494 Y=665.403 +[2025.06.16-10.28.23:111][579]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1387.921 Y=665.403 +[2025.06.16-10.28.23:111][579]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1387.921 Y=665.403 +[2025.06.16-10.28.23:111][579]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1387.921 Y=665.403 +[2025.06.16-10.28.23:119][580]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1392.205 Y=665.403 +[2025.06.16-10.28.23:120][580]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1392.205 Y=665.403 +[2025.06.16-10.28.23:120][580]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1392.205 Y=665.403 +[2025.06.16-10.28.23:128][581]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1396.489 Y=665.403 +[2025.06.16-10.28.23:128][581]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1396.489 Y=665.403 +[2025.06.16-10.28.23:128][581]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1396.489 Y=665.403 +[2025.06.16-10.28.23:135][582]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1400.773 Y=665.403 +[2025.06.16-10.28.23:135][582]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1400.773 Y=665.403 +[2025.06.16-10.28.23:137][582]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1400.773 Y=665.403 +[2025.06.16-10.28.23:144][583]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1403.628 Y=665.403 +[2025.06.16-10.28.23:144][583]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1403.628 Y=665.403 +[2025.06.16-10.28.23:144][583]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1403.628 Y=665.403 +[2025.06.16-10.28.23:153][584]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1410.768 Y=665.403 +[2025.06.16-10.28.23:154][584]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1410.768 Y=665.403 +[2025.06.16-10.28.23:154][584]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1410.768 Y=665.403 +[2025.06.16-10.28.23:162][585]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1412.196 Y=665.403 +[2025.06.16-10.28.23:162][585]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1412.196 Y=665.403 +[2025.06.16-10.28.23:162][585]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1412.196 Y=665.403 +[2025.06.16-10.28.23:170][586]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1416.479 Y=666.831 +[2025.06.16-10.28.23:171][586]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1416.479 Y=666.831 +[2025.06.16-10.28.23:171][586]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1416.479 Y=666.831 +[2025.06.16-10.28.23:179][587]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1419.335 Y=666.831 +[2025.06.16-10.28.23:179][587]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1419.335 Y=666.831 +[2025.06.16-10.28.23:179][587]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1419.335 Y=666.831 +[2025.06.16-10.28.23:187][588]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1420.763 Y=666.831 +[2025.06.16-10.28.23:187][588]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1420.763 Y=666.831 +[2025.06.16-10.28.23:187][588]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1420.763 Y=666.831 +[2025.06.16-10.28.23:195][589]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1422.191 Y=666.831 +[2025.06.16-10.28.23:195][589]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1422.191 Y=666.831 +[2025.06.16-10.28.23:195][589]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1422.191 Y=666.831 +[2025.06.16-10.28.23:205][590]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1423.619 Y=666.831 +[2025.06.16-10.28.23:205][590]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1423.619 Y=666.831 +[2025.06.16-10.28.23:205][590]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1423.619 Y=666.831 +[2025.06.16-10.28.23:213][591]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:213][591]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:213][591]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:221][592]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:221][592]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:221][592]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1425.047 Y=666.831 +[2025.06.16-10.28.23:230][593]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1426.475 Y=666.831 +[2025.06.16-10.28.23:230][593]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1426.475 Y=666.831 +[2025.06.16-10.28.23:230][593]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1426.475 Y=666.831 +[2025.06.16-10.28.23:240][594]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1427.903 Y=666.831 +[2025.06.16-10.28.23:240][594]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1427.903 Y=666.831 +[2025.06.16-10.28.23:240][594]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1427.903 Y=666.831 +[2025.06.16-10.28.23:249][595]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1429.331 Y=666.831 +[2025.06.16-10.28.23:249][595]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1429.331 Y=666.831 +[2025.06.16-10.28.23:249][595]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1429.331 Y=666.831 +[2025.06.16-10.28.23:257][596]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:257][596]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:258][596]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:265][597]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:265][597]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:265][597]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1430.759 Y=666.831 +[2025.06.16-10.28.23:274][598]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:275][598]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:275][598]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:283][599]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:283][599]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:283][599]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:290][600]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:291][600]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:291][600]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1432.186 Y=666.831 +[2025.06.16-10.28.23:300][601]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:300][601]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:300][601]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:308][602]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:308][602]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:309][602]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:316][603]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:316][603]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:316][603]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1433.614 Y=666.831 +[2025.06.16-10.28.23:326][604]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1436.470 Y=666.831 +[2025.06.16-10.28.23:326][604]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1436.470 Y=666.831 +[2025.06.16-10.28.23:326][604]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1436.470 Y=666.831 +[2025.06.16-10.28.23:333][605]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:333][605]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:333][605]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:342][606]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:342][606]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:342][606]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1437.898 Y=666.831 +[2025.06.16-10.28.23:351][607]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1442.182 Y=666.831 +[2025.06.16-10.28.23:351][607]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1442.182 Y=666.831 +[2025.06.16-10.28.23:351][607]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1442.182 Y=666.831 +[2025.06.16-10.28.23:359][608]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1446.465 Y=666.831 +[2025.06.16-10.28.23:359][608]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1446.465 Y=666.831 +[2025.06.16-10.28.23:359][608]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1446.465 Y=666.831 +[2025.06.16-10.28.23:367][609]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1449.321 Y=666.831 +[2025.06.16-10.28.23:367][609]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1449.321 Y=666.831 +[2025.06.16-10.28.23:367][609]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1449.321 Y=666.831 +[2025.06.16-10.28.23:375][610]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1453.605 Y=666.831 +[2025.06.16-10.28.23:375][610]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1453.605 Y=666.831 +[2025.06.16-10.28.23:375][610]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1453.605 Y=666.831 +[2025.06.16-10.28.23:385][611]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1456.461 Y=666.831 +[2025.06.16-10.28.23:385][611]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1456.461 Y=666.831 +[2025.06.16-10.28.23:385][611]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1456.461 Y=666.831 +[2025.06.16-10.28.23:392][612]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1459.317 Y=666.831 +[2025.06.16-10.28.23:392][612]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1459.317 Y=666.831 +[2025.06.16-10.28.23:392][612]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1459.317 Y=666.831 +[2025.06.16-10.28.23:402][613]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1463.600 Y=666.831 +[2025.06.16-10.28.23:402][613]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1463.600 Y=666.831 +[2025.06.16-10.28.23:402][613]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1463.600 Y=666.831 +[2025.06.16-10.28.23:410][614]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1466.456 Y=666.831 +[2025.06.16-10.28.23:411][614]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1466.456 Y=666.831 +[2025.06.16-10.28.23:411][614]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1466.456 Y=666.831 +[2025.06.16-10.28.23:418][615]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1467.884 Y=666.831 +[2025.06.16-10.28.23:418][615]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1467.884 Y=666.831 +[2025.06.16-10.28.23:419][615]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1467.884 Y=666.831 +[2025.06.16-10.28.23:428][616]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1470.740 Y=666.831 +[2025.06.16-10.28.23:428][616]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1470.740 Y=666.831 +[2025.06.16-10.28.23:428][616]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1470.740 Y=666.831 +[2025.06.16-10.28.23:437][617]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1472.168 Y=666.831 +[2025.06.16-10.28.23:437][617]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1472.168 Y=666.831 +[2025.06.16-10.28.23:437][617]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1472.168 Y=666.831 +[2025.06.16-10.28.23:444][618]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1473.596 Y=666.831 +[2025.06.16-10.28.23:445][618]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1473.596 Y=666.831 +[2025.06.16-10.28.23:445][618]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1473.596 Y=666.831 +[2025.06.16-10.28.23:453][619]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1476.451 Y=666.831 +[2025.06.16-10.28.23:453][619]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1476.451 Y=666.831 +[2025.06.16-10.28.23:453][619]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1476.451 Y=666.831 +[2025.06.16-10.28.23:461][620]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1477.879 Y=666.831 +[2025.06.16-10.28.23:462][620]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1477.879 Y=666.831 +[2025.06.16-10.28.23:462][620]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1477.879 Y=666.831 +[2025.06.16-10.28.23:470][621]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1479.307 Y=666.831 +[2025.06.16-10.28.23:470][621]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1479.307 Y=666.831 +[2025.06.16-10.28.23:470][621]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1479.307 Y=666.831 +[2025.06.16-10.28.23:479][622]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1482.163 Y=666.831 +[2025.06.16-10.28.23:479][622]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1482.163 Y=666.831 +[2025.06.16-10.28.23:480][622]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1482.163 Y=666.831 +[2025.06.16-10.28.23:487][623]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1483.591 Y=666.831 +[2025.06.16-10.28.23:487][623]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1483.591 Y=666.831 +[2025.06.16-10.28.23:487][623]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1483.591 Y=666.831 +[2025.06.16-10.28.23:496][624]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1486.447 Y=666.831 +[2025.06.16-10.28.23:496][624]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1486.447 Y=666.831 +[2025.06.16-10.28.23:496][624]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1486.447 Y=666.831 +[2025.06.16-10.28.23:504][625]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1489.302 Y=666.831 +[2025.06.16-10.28.23:504][625]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1489.302 Y=666.831 +[2025.06.16-10.28.23:504][625]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1489.302 Y=666.831 +[2025.06.16-10.28.23:513][626]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1492.158 Y=666.831 +[2025.06.16-10.28.23:513][626]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1492.158 Y=666.831 +[2025.06.16-10.28.23:513][626]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1492.158 Y=666.831 +[2025.06.16-10.28.23:521][627]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1493.586 Y=666.831 +[2025.06.16-10.28.23:521][627]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1493.586 Y=666.831 +[2025.06.16-10.28.23:521][627]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1493.586 Y=666.831 +[2025.06.16-10.28.23:529][628]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1496.442 Y=666.831 +[2025.06.16-10.28.23:529][628]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1496.442 Y=666.831 +[2025.06.16-10.28.23:530][628]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1496.442 Y=666.831 +[2025.06.16-10.28.23:538][629]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1499.298 Y=666.831 +[2025.06.16-10.28.23:538][629]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1499.298 Y=666.831 +[2025.06.16-10.28.23:538][629]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1499.298 Y=666.831 +[2025.06.16-10.28.23:545][630]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1500.726 Y=666.831 +[2025.06.16-10.28.23:547][630]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1500.726 Y=666.831 +[2025.06.16-10.28.23:547][630]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1500.726 Y=666.831 +[2025.06.16-10.28.23:555][631]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1505.009 Y=666.831 +[2025.06.16-10.28.23:555][631]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1505.009 Y=666.831 +[2025.06.16-10.28.23:555][631]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1505.009 Y=666.831 +[2025.06.16-10.28.23:563][632]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1507.865 Y=666.831 +[2025.06.16-10.28.23:564][632]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1507.865 Y=666.831 +[2025.06.16-10.28.23:564][632]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1507.865 Y=666.831 +[2025.06.16-10.28.23:572][633]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1510.721 Y=666.831 +[2025.06.16-10.28.23:572][633]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1510.721 Y=666.831 +[2025.06.16-10.28.23:572][633]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1510.721 Y=666.831 +[2025.06.16-10.28.23:580][634]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1513.577 Y=666.831 +[2025.06.16-10.28.23:580][634]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1513.577 Y=666.831 +[2025.06.16-10.28.23:580][634]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1513.577 Y=666.831 +[2025.06.16-10.28.23:590][635]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1517.861 Y=666.831 +[2025.06.16-10.28.23:591][635]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1517.861 Y=666.831 +[2025.06.16-10.28.23:591][635]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1517.861 Y=666.831 +[2025.06.16-10.28.23:599][636]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1519.288 Y=666.831 +[2025.06.16-10.28.23:599][636]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1519.288 Y=666.831 +[2025.06.16-10.28.23:599][636]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1519.288 Y=666.831 +[2025.06.16-10.28.23:609][637]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1522.144 Y=666.831 +[2025.06.16-10.28.23:609][637]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1522.144 Y=666.831 +[2025.06.16-10.28.23:609][637]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1522.144 Y=666.831 +[2025.06.16-10.28.23:617][638]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1525.000 Y=666.831 +[2025.06.16-10.28.23:618][638]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1525.000 Y=666.831 +[2025.06.16-10.28.23:618][638]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1525.000 Y=666.831 +[2025.06.16-10.28.23:626][639]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1526.428 Y=666.831 +[2025.06.16-10.28.23:626][639]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1526.428 Y=666.831 +[2025.06.16-10.28.23:626][639]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1526.428 Y=666.831 +[2025.06.16-10.28.23:634][640]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:634][640]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:634][640]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:642][641]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:642][641]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:642][641]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1527.856 Y=666.831 +[2025.06.16-10.28.23:651][642]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1529.284 Y=666.831 +[2025.06.16-10.28.23:651][642]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1529.284 Y=666.831 +[2025.06.16-10.28.23:651][642]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1529.284 Y=666.831 +[2025.06.16-10.28.23:660][643]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1530.712 Y=666.831 +[2025.06.16-10.28.23:660][643]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1530.712 Y=666.831 +[2025.06.16-10.28.23:660][643]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1530.712 Y=666.831 +[2025.06.16-10.28.23:668][644]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1532.140 Y=666.831 +[2025.06.16-10.28.23:668][644]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1532.140 Y=666.831 +[2025.06.16-10.28.23:668][644]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1532.140 Y=666.831 +[2025.06.16-10.28.23:675][645]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1533.568 Y=666.831 +[2025.06.16-10.28.23:677][645]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1533.568 Y=666.831 +[2025.06.16-10.28.23:677][645]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1533.568 Y=666.831 +[2025.06.16-10.28.23:685][646]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1540.707 Y=666.831 +[2025.06.16-10.28.23:685][646]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1540.707 Y=666.831 +[2025.06.16-10.28.23:685][646]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1540.707 Y=666.831 +[2025.06.16-10.28.23:693][647]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1546.419 Y=666.831 +[2025.06.16-10.28.23:693][647]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1546.419 Y=666.831 +[2025.06.16-10.28.23:693][647]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1546.419 Y=666.831 +[2025.06.16-10.28.23:703][648]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1547.847 Y=666.831 +[2025.06.16-10.28.23:703][648]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1547.847 Y=666.831 +[2025.06.16-10.28.23:703][648]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1547.847 Y=666.831 +[2025.06.16-10.28.23:711][649]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1556.414 Y=666.831 +[2025.06.16-10.28.23:711][649]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1556.414 Y=666.831 +[2025.06.16-10.28.23:711][649]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1556.414 Y=666.831 +[2025.06.16-10.28.23:719][650]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1562.126 Y=666.831 +[2025.06.16-10.28.23:719][650]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1562.126 Y=666.831 +[2025.06.16-10.28.23:719][650]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1562.126 Y=666.831 +[2025.06.16-10.28.23:728][651]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1567.837 Y=666.831 +[2025.06.16-10.28.23:728][651]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1567.837 Y=666.831 +[2025.06.16-10.28.23:728][651]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1567.837 Y=666.831 +[2025.06.16-10.28.23:736][652]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1572.121 Y=666.831 +[2025.06.16-10.28.23:736][652]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1572.121 Y=666.831 +[2025.06.16-10.28.23:736][652]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1572.121 Y=666.831 +[2025.06.16-10.28.23:746][653]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1576.405 Y=666.831 +[2025.06.16-10.28.23:746][653]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1576.405 Y=666.831 +[2025.06.16-10.28.23:746][653]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1576.405 Y=666.831 +[2025.06.16-10.28.23:753][654]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1579.260 Y=666.831 +[2025.06.16-10.28.23:753][654]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1579.260 Y=666.831 +[2025.06.16-10.28.23:753][654]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1579.260 Y=666.831 +[2025.06.16-10.28.23:762][655]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1580.688 Y=666.831 +[2025.06.16-10.28.23:762][655]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1580.688 Y=666.831 +[2025.06.16-10.28.23:762][655]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1580.688 Y=666.831 +[2025.06.16-10.28.23:771][656]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1582.116 Y=666.831 +[2025.06.16-10.28.23:771][656]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1582.116 Y=666.831 +[2025.06.16-10.28.23:771][656]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1582.116 Y=666.831 +[2025.06.16-10.28.23:780][657]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:780][657]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:780][657]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:788][658]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:788][658]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:788][658]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1583.544 Y=666.831 +[2025.06.16-10.28.23:795][659]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1586.400 Y=666.831 +[2025.06.16-10.28.23:795][659]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1586.400 Y=666.831 +[2025.06.16-10.28.23:795][659]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1586.400 Y=666.831 +[2025.06.16-10.28.23:805][660]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1587.828 Y=666.831 +[2025.06.16-10.28.23:805][660]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1587.828 Y=666.831 +[2025.06.16-10.28.23:805][660]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1587.828 Y=666.831 +[2025.06.16-10.28.23:813][661]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1589.256 Y=666.831 +[2025.06.16-10.28.23:813][661]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1589.256 Y=666.831 +[2025.06.16-10.28.23:813][661]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1589.256 Y=666.831 +[2025.06.16-10.28.23:821][662]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:822][662]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:822][662]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:830][663]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:830][663]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:830][663]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1592.111 Y=666.831 +[2025.06.16-10.28.23:839][664]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1593.539 Y=666.831 +[2025.06.16-10.28.23:840][664]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1593.539 Y=666.831 +[2025.06.16-10.28.23:840][664]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1593.539 Y=666.831 +[2025.06.16-10.28.23:848][665]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:848][665]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:848][665]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:855][666]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:855][666]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:855][666]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1594.967 Y=666.831 +[2025.06.16-10.28.23:864][667]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:864][667]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:864][667]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:873][668]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:873][668]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:873][668]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1597.823 Y=666.831 +[2025.06.16-10.28.23:881][669]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:881][669]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:881][669]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:889][670]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:889][670]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:890][670]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1599.251 Y=666.831 +[2025.06.16-10.28.23:898][671]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1600.679 Y=666.831 +[2025.06.16-10.28.23:898][671]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1600.679 Y=666.831 +[2025.06.16-10.28.23:898][671]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1600.679 Y=666.831 +[2025.06.16-10.28.23:907][672]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1602.107 Y=666.831 +[2025.06.16-10.28.23:907][672]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1602.107 Y=666.831 +[2025.06.16-10.28.23:907][672]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1602.107 Y=666.831 +[2025.06.16-10.28.23:916][673]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1603.535 Y=666.831 +[2025.06.16-10.28.23:916][673]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1603.535 Y=666.831 +[2025.06.16-10.28.23:916][673]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1603.535 Y=666.831 +[2025.06.16-10.28.23:923][674]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1604.963 Y=666.831 +[2025.06.16-10.28.23:923][674]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1604.963 Y=666.831 +[2025.06.16-10.28.23:923][674]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1604.963 Y=666.831 +[2025.06.16-10.28.23:933][675]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1609.246 Y=668.258 +[2025.06.16-10.28.23:933][675]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1609.246 Y=668.258 +[2025.06.16-10.28.23:933][675]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1609.246 Y=668.258 +[2025.06.16-10.28.23:941][676]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1613.530 Y=668.258 +[2025.06.16-10.28.23:941][676]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1613.530 Y=668.258 +[2025.06.16-10.28.23:941][676]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1613.530 Y=668.258 +[2025.06.16-10.28.23:949][677]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1616.386 Y=668.258 +[2025.06.16-10.28.23:949][677]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1616.386 Y=668.258 +[2025.06.16-10.28.23:949][677]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1616.386 Y=668.258 +[2025.06.16-10.28.23:957][678]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1617.814 Y=668.258 +[2025.06.16-10.28.23:957][678]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1617.814 Y=668.258 +[2025.06.16-10.28.23:957][678]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1617.814 Y=668.258 +[2025.06.16-10.28.23:967][679]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1622.097 Y=668.258 +[2025.06.16-10.28.23:967][679]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1622.097 Y=668.258 +[2025.06.16-10.28.23:967][679]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1622.097 Y=668.258 +[2025.06.16-10.28.23:974][680]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1624.953 Y=668.258 +[2025.06.16-10.28.23:975][680]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1624.953 Y=668.258 +[2025.06.16-10.28.23:975][680]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1624.953 Y=668.258 +[2025.06.16-10.28.23:983][681]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1626.381 Y=668.258 +[2025.06.16-10.28.23:983][681]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1626.381 Y=668.258 +[2025.06.16-10.28.23:983][681]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1626.381 Y=668.258 +[2025.06.16-10.28.23:992][682]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1627.809 Y=668.258 +[2025.06.16-10.28.23:992][682]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1627.809 Y=668.258 +[2025.06.16-10.28.23:992][682]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1627.809 Y=668.258 +[2025.06.16-10.28.24:000][683]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:000][683]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:001][683]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:011][684]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:011][684]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:011][684]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1630.665 Y=668.258 +[2025.06.16-10.28.24:019][685]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:019][685]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:019][685]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:027][686]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:027][686]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:027][686]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1633.521 Y=668.258 +[2025.06.16-10.28.24:035][687]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:035][687]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:035][687]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:043][688]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:044][688]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:044][688]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1634.949 Y=668.258 +[2025.06.16-10.28.24:052][689]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1636.376 Y=668.258 +[2025.06.16-10.28.24:052][689]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1636.376 Y=668.258 +[2025.06.16-10.28.24:052][689]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1636.376 Y=668.258 +[2025.06.16-10.28.24:060][690]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1637.804 Y=668.258 +[2025.06.16-10.28.24:061][690]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1637.804 Y=668.258 +[2025.06.16-10.28.24:061][690]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1637.804 Y=668.258 +[2025.06.16-10.28.24:070][691]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:070][691]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:070][691]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:077][692]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:077][692]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:077][692]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1639.232 Y=668.258 +[2025.06.16-10.28.24:087][693]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1640.660 Y=668.258 +[2025.06.16-10.28.24:087][693]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1640.660 Y=668.258 +[2025.06.16-10.28.24:087][693]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1640.660 Y=668.258 +[2025.06.16-10.28.24:094][694]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:094][694]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:094][694]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:103][695]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:105][695]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:105][695]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1642.088 Y=668.258 +[2025.06.16-10.28.24:112][696]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1643.516 Y=668.258 +[2025.06.16-10.28.24:112][696]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1643.516 Y=668.258 +[2025.06.16-10.28.24:112][696]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1643.516 Y=668.258 +[2025.06.16-10.28.24:121][697]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1644.944 Y=668.258 +[2025.06.16-10.28.24:121][697]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1644.944 Y=668.258 +[2025.06.16-10.28.24:121][697]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1644.944 Y=668.258 +[2025.06.16-10.28.24:129][698]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:129][698]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:129][698]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:137][699]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:137][699]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:137][699]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1647.800 Y=668.258 +[2025.06.16-10.28.24:145][700]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1652.083 Y=668.258 +[2025.06.16-10.28.24:145][700]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1652.083 Y=668.258 +[2025.06.16-10.28.24:145][700]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1652.083 Y=668.258 +[2025.06.16-10.28.24:154][701]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1654.939 Y=668.258 +[2025.06.16-10.28.24:154][701]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1654.939 Y=668.258 +[2025.06.16-10.28.24:154][701]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1654.939 Y=668.258 +[2025.06.16-10.28.24:163][702]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1657.795 Y=666.831 +[2025.06.16-10.28.24:163][702]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1657.795 Y=666.831 +[2025.06.16-10.28.24:163][702]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1657.795 Y=666.831 +[2025.06.16-10.28.24:171][703]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1669.218 Y=665.403 +[2025.06.16-10.28.24:171][703]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1669.218 Y=665.403 +[2025.06.16-10.28.24:171][703]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1669.218 Y=665.403 +[2025.06.16-10.28.24:180][704]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1674.930 Y=665.403 +[2025.06.16-10.28.24:180][704]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1674.930 Y=665.403 +[2025.06.16-10.28.24:180][704]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1674.930 Y=665.403 +[2025.06.16-10.28.24:189][705]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1682.069 Y=665.403 +[2025.06.16-10.28.24:189][705]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1682.069 Y=665.403 +[2025.06.16-10.28.24:189][705]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1682.069 Y=665.403 +[2025.06.16-10.28.24:198][706]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1692.065 Y=665.403 +[2025.06.16-10.28.24:198][706]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1692.065 Y=665.403 +[2025.06.16-10.28.24:198][706]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1692.065 Y=665.403 +[2025.06.16-10.28.24:206][707]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1700.632 Y=665.403 +[2025.06.16-10.28.24:206][707]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1700.632 Y=665.403 +[2025.06.16-10.28.24:206][707]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1700.632 Y=665.403 +[2025.06.16-10.28.24:214][708]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1703.488 Y=665.403 +[2025.06.16-10.28.24:214][708]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1703.488 Y=665.403 +[2025.06.16-10.28.24:214][708]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1703.488 Y=665.403 +[2025.06.16-10.28.24:223][709]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1714.911 Y=666.831 +[2025.06.16-10.28.24:223][709]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1714.911 Y=666.831 +[2025.06.16-10.28.24:223][709]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1714.911 Y=666.831 +[2025.06.16-10.28.24:231][710]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1722.051 Y=668.258 +[2025.06.16-10.28.24:231][710]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1722.051 Y=668.258 +[2025.06.16-10.28.24:231][710]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1722.051 Y=668.258 +[2025.06.16-10.28.24:239][711]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1727.762 Y=669.686 +[2025.06.16-10.28.24:240][711]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1727.762 Y=669.686 +[2025.06.16-10.28.24:240][711]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1727.762 Y=669.686 +[2025.06.16-10.28.24:249][712]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1734.902 Y=669.686 +[2025.06.16-10.28.24:249][712]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1734.902 Y=669.686 +[2025.06.16-10.28.24:250][712]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1734.902 Y=669.686 +[2025.06.16-10.28.24:258][713]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1740.613 Y=669.686 +[2025.06.16-10.28.24:258][713]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1740.613 Y=669.686 +[2025.06.16-10.28.24:258][713]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1740.613 Y=669.686 +[2025.06.16-10.28.24:265][714]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1742.041 Y=669.686 +[2025.06.16-10.28.24:267][714]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1742.041 Y=669.686 +[2025.06.16-10.28.24:267][714]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1742.041 Y=669.686 +[2025.06.16-10.28.24:275][715]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:275][715]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:275][715]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:282][716]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:283][716]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:283][716]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1746.325 Y=671.114 +[2025.06.16-10.28.24:291][717]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:291][717]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:291][717]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:299][718]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:299][718]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:299][718]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:308][719]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:308][719]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:308][719]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1747.753 Y=671.114 +[2025.06.16-10.28.24:315][720]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1749.181 Y=671.114 +[2025.06.16-10.28.24:317][720]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1749.181 Y=671.114 +[2025.06.16-10.28.24:317][720]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1749.181 Y=671.114 +[2025.06.16-10.28.24:325][721]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1752.037 Y=671.114 +[2025.06.16-10.28.24:325][721]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1752.037 Y=671.114 +[2025.06.16-10.28.24:325][721]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1752.037 Y=671.114 +[2025.06.16-10.28.24:332][722]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:332][722]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:332][722]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:340][723]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:342][723]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:342][723]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:350][724]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:350][724]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:350][724]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1753.464 Y=671.114 +[2025.06.16-10.28.24:358][725]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:358][725]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:358][725]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:367][726]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:368][726]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:368][726]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1754.892 Y=671.114 +[2025.06.16-10.28.24:375][727]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1756.320 Y=671.114 +[2025.06.16-10.28.24:375][727]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1756.320 Y=671.114 +[2025.06.16-10.28.24:375][727]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1756.320 Y=671.114 +[2025.06.16-10.28.24:384][728]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1757.748 Y=671.114 +[2025.06.16-10.28.24:384][728]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1757.748 Y=671.114 +[2025.06.16-10.28.24:384][728]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1757.748 Y=671.114 +[2025.06.16-10.28.24:392][729]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1759.176 Y=671.114 +[2025.06.16-10.28.24:393][729]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1759.176 Y=671.114 +[2025.06.16-10.28.24:393][729]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1759.176 Y=671.114 +[2025.06.16-10.28.24:401][730]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1762.032 Y=671.114 +[2025.06.16-10.28.24:401][730]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1762.032 Y=671.114 +[2025.06.16-10.28.24:401][730]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1762.032 Y=671.114 +[2025.06.16-10.28.24:409][731]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:410][731]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:410][731]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:418][732]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:418][732]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:418][732]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1763.460 Y=672.542 +[2025.06.16-10.28.24:427][733]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:427][733]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:427][733]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:434][734]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:434][734]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:435][734]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1764.888 Y=672.542 +[2025.06.16-10.28.24:443][735]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:443][735]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:443][735]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:451][736]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:451][736]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:451][736]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1766.316 Y=672.542 +[2025.06.16-10.28.24:461][737]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1767.744 Y=672.542 +[2025.06.16-10.28.24:461][737]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1767.744 Y=672.542 +[2025.06.16-10.28.24:461][737]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1767.744 Y=672.542 +[2025.06.16-10.28.24:469][738]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1769.171 Y=673.970 +[2025.06.16-10.28.24:469][738]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1769.171 Y=673.970 +[2025.06.16-10.28.24:469][738]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1769.171 Y=673.970 +[2025.06.16-10.28.24:477][739]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1772.027 Y=673.970 +[2025.06.16-10.28.24:477][739]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1772.027 Y=673.970 +[2025.06.16-10.28.24:478][739]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1772.027 Y=673.970 +[2025.06.16-10.28.24:485][740]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1776.311 Y=675.398 +[2025.06.16-10.28.24:485][740]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1776.311 Y=675.398 +[2025.06.16-10.28.24:485][740]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1776.311 Y=675.398 +[2025.06.16-10.28.24:494][741]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1779.167 Y=676.826 +[2025.06.16-10.28.24:494][741]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1779.167 Y=676.826 +[2025.06.16-10.28.24:495][741]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1779.167 Y=676.826 +[2025.06.16-10.28.24:502][742]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1784.878 Y=678.254 +[2025.06.16-10.28.24:503][742]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1784.878 Y=678.254 +[2025.06.16-10.28.24:503][742]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1784.878 Y=678.254 +[2025.06.16-10.28.24:513][743]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1789.162 Y=678.254 +[2025.06.16-10.28.24:513][743]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1789.162 Y=678.254 +[2025.06.16-10.28.24:513][743]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1789.162 Y=678.254 +[2025.06.16-10.28.24:521][744]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1793.446 Y=678.254 +[2025.06.16-10.28.24:521][744]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1793.446 Y=678.254 +[2025.06.16-10.28.24:521][744]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1793.446 Y=678.254 +[2025.06.16-10.28.24:529][745]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1799.157 Y=681.110 +[2025.06.16-10.28.24:530][745]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1799.157 Y=681.110 +[2025.06.16-10.28.24:530][745]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1799.157 Y=681.110 +[2025.06.16-10.28.24:538][746]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1803.441 Y=682.537 +[2025.06.16-10.28.24:538][746]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1803.441 Y=682.537 +[2025.06.16-10.28.24:538][746]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1803.441 Y=682.537 +[2025.06.16-10.28.24:547][747]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1804.869 Y=682.537 +[2025.06.16-10.28.24:547][747]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1804.869 Y=682.537 +[2025.06.16-10.28.24:547][747]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1804.869 Y=682.537 +[2025.06.16-10.28.24:555][748]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1810.581 Y=683.965 +[2025.06.16-10.28.24:555][748]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1810.581 Y=683.965 +[2025.06.16-10.28.24:556][748]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1810.581 Y=683.965 +[2025.06.16-10.28.24:563][749]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1812.009 Y=683.965 +[2025.06.16-10.28.24:564][749]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1812.009 Y=683.965 +[2025.06.16-10.28.24:564][749]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1812.009 Y=683.965 +[2025.06.16-10.28.24:572][750]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1814.864 Y=685.393 +[2025.06.16-10.28.24:572][750]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1814.864 Y=685.393 +[2025.06.16-10.28.24:572][750]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1814.864 Y=685.393 +[2025.06.16-10.28.24:581][751]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1816.292 Y=685.393 +[2025.06.16-10.28.24:581][751]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1816.292 Y=685.393 +[2025.06.16-10.28.24:581][751]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1816.292 Y=685.393 +[2025.06.16-10.28.24:591][752]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1819.148 Y=686.821 +[2025.06.16-10.28.24:591][752]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1819.148 Y=686.821 +[2025.06.16-10.28.24:592][752]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1819.148 Y=686.821 +[2025.06.16-10.28.24:600][753]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1820.576 Y=686.821 +[2025.06.16-10.28.24:600][753]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1820.576 Y=686.821 +[2025.06.16-10.28.24:600][753]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1820.576 Y=686.821 +[2025.06.16-10.28.24:608][754]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1822.004 Y=686.821 +[2025.06.16-10.28.24:609][754]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1822.004 Y=686.821 +[2025.06.16-10.28.24:609][754]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1822.004 Y=686.821 +[2025.06.16-10.28.24:618][755]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:618][755]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:618][755]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:627][756]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:627][756]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:627][756]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1823.432 Y=688.249 +[2025.06.16-10.28.24:635][757]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:635][757]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:635][757]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:643][758]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:643][758]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:643][758]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1826.288 Y=688.249 +[2025.06.16-10.28.24:653][759]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1827.715 Y=688.249 +[2025.06.16-10.28.24:653][759]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1827.715 Y=688.249 +[2025.06.16-10.28.24:653][759]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1827.715 Y=688.249 +[2025.06.16-10.28.24:661][760]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1830.571 Y=689.677 +[2025.06.16-10.28.24:661][760]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1830.571 Y=689.677 +[2025.06.16-10.28.24:661][760]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1830.571 Y=689.677 +[2025.06.16-10.28.24:669][761]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1831.999 Y=689.677 +[2025.06.16-10.28.24:670][761]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1831.999 Y=689.677 +[2025.06.16-10.28.24:670][761]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1831.999 Y=689.677 +[2025.06.16-10.28.24:678][762]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1833.427 Y=689.677 +[2025.06.16-10.28.24:678][762]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1833.427 Y=689.677 +[2025.06.16-10.28.24:678][762]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1833.427 Y=689.677 +[2025.06.16-10.28.24:687][763]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1836.283 Y=691.105 +[2025.06.16-10.28.24:687][763]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1836.283 Y=691.105 +[2025.06.16-10.28.24:687][763]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1836.283 Y=691.105 +[2025.06.16-10.28.24:696][764]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1837.711 Y=691.105 +[2025.06.16-10.28.24:697][764]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1837.711 Y=691.105 +[2025.06.16-10.28.24:697][764]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1837.711 Y=691.105 +[2025.06.16-10.28.24:706][765]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1839.139 Y=692.533 +[2025.06.16-10.28.24:706][765]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1839.139 Y=692.533 +[2025.06.16-10.28.24:706][765]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1839.139 Y=692.533 +[2025.06.16-10.28.24:713][766]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=692.533 +[2025.06.16-10.28.24:714][766]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=692.533 +[2025.06.16-10.28.24:714][766]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=692.533 +[2025.06.16-10.28.24:723][767]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:723][767]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:723][767]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:732][768]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:732][768]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:732][768]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:740][769]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:740][769]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:740][769]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:748][770]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:748][770]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:748][770]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:757][771]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:757][771]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:757][771]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:767][772]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:767][772]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:767][772]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=692.533 +[2025.06.16-10.28.24:775][773]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:775][773]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:775][773]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:783][774]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:783][774]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:783][774]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=693.961 +[2025.06.16-10.28.24:792][775]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=695.389 +[2025.06.16-10.28.24:792][775]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=695.389 +[2025.06.16-10.28.24:792][775]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=695.389 +[2025.06.16-10.28.24:801][776]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=698.244 +[2025.06.16-10.28.24:801][776]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=698.244 +[2025.06.16-10.28.24:801][776]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=698.244 +[2025.06.16-10.28.24:809][777]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:809][777]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:809][777]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:818][778]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:818][778]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:818][778]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:825][779]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:825][779]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:825][779]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:834][780]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:834][780]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:834][780]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:843][781]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:844][781]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:844][781]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:852][782]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:852][782]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:852][782]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:860][783]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:860][783]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:860][783]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:868][784]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:868][784]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:868][784]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:878][785]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:878][785]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:878][785]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:886][786]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:886][786]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:886][786]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:894][787]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:894][787]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:894][787]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:902][788]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:902][788]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:902][788]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:910][789]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:910][789]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:910][789]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:919][790]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:919][790]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:919][790]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:928][791]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:928][791]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:928][791]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:935][792]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:935][792]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:935][792]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:944][793]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:944][793]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:944][793]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:953][794]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:953][794]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:953][794]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:957][795]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.28.24:961][795]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:961][795]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:961][795]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:965][796]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.28.24:971][796]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:971][796]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:971][796]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:979][797]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:979][797]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:979][797]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:987][798]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:988][798]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:988][798]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:997][799]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:997][799]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.24:997][799]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:005][800]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:005][800]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:005][800]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:013][801]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:013][801]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:013][801]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:021][802]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:021][802]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:021][802]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:030][803]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:030][803]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:030][803]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:038][804]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:038][804]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:038][804]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:047][805]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:047][805]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:047][805]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:055][806]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:055][806]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:055][806]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:063][807]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:063][807]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:063][807]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:071][808]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:071][808]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:071][808]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:080][809]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:080][809]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:080][809]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:087][810]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:087][810]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:087][810]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:098][811]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:098][811]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:098][811]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:105][812]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:106][812]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:106][812]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:113][813]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:114][813]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:114][813]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:122][814]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:122][814]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:124][814]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:131][815]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:132][815]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:132][815]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:140][816]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:140][816]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:140][816]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:148][817]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:148][817]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:148][817]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=699.672 +[2025.06.16-10.28.25:157][818]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:157][818]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:157][818]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:165][819]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:165][819]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:165][819]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1840.567 Y=699.672 +[2025.06.16-10.28.25:173][820]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1841.995 Y=701.100 +[2025.06.16-10.28.25:173][820]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1841.995 Y=701.100 +[2025.06.16-10.28.25:173][820]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1841.995 Y=701.100 +[2025.06.16-10.28.25:182][821]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:182][821]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:182][821]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:190][822]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:190][822]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:190][822]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1843.422 Y=702.528 +[2025.06.16-10.28.25:198][823]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1844.850 Y=701.100 +[2025.06.16-10.28.25:199][823]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1844.850 Y=701.100 +[2025.06.16-10.28.25:199][823]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1844.850 Y=701.100 +[2025.06.16-10.28.25:207][824]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:207][824]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:207][824]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:216][825]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:216][825]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:216][825]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:223][826]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:223][826]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:223][826]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:232][827]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:232][827]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:232][827]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:240][828]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:240][828]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:240][828]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:248][829]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:249][829]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:249][829]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:257][830]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:257][830]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:257][830]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:265][831]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:266][831]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:266][831]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:274][832]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:274][832]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:274][832]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:282][833]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:282][833]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:282][833]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:290][834]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:291][834]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:291][834]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:299][835]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:299][835]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:299][835]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1846.278 Y=701.100 +[2025.06.16-10.28.25:307][836]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:307][836]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:307][836]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:315][837]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:315][837]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:315][837]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:324][838]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:325][838]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:325][838]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:332][839]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:332][839]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:332][839]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:340][840]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:340][840]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:340][840]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1847.706 Y=701.100 +[2025.06.16-10.28.25:348][841]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:348][841]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:348][841]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:358][842]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:358][842]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:358][842]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:365][843]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:365][843]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:365][843]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:374][844]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:374][844]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:374][844]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1849.134 Y=701.100 +[2025.06.16-10.28.25:382][845]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:382][845]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:382][845]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:390][846]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:390][846]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:390][846]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1850.562 Y=701.100 +[2025.06.16-10.28.25:398][847]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:400][847]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:400][847]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:407][848]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:407][848]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:407][848]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:417][849]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:417][849]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:417][849]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1851.990 Y=701.100 +[2025.06.16-10.28.25:425][850]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1853.418 Y=701.100 +[2025.06.16-10.28.25:425][850]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1853.418 Y=701.100 +[2025.06.16-10.28.25:425][850]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1853.418 Y=701.100 +[2025.06.16-10.28.25:433][851]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:434][851]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:434][851]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:442][852]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:442][852]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:443][852]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1854.846 Y=701.100 +[2025.06.16-10.28.25:451][853]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1856.274 Y=701.100 +[2025.06.16-10.28.25:451][853]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1856.274 Y=701.100 +[2025.06.16-10.28.25:451][853]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1856.274 Y=701.100 +[2025.06.16-10.28.25:459][854]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1857.701 Y=701.100 +[2025.06.16-10.28.25:460][854]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1857.701 Y=701.100 +[2025.06.16-10.28.25:460][854]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1857.701 Y=701.100 +[2025.06.16-10.28.25:468][855]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:468][855]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:468][855]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:476][856]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:476][856]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:477][856]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1859.129 Y=701.100 +[2025.06.16-10.28.25:485][857]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1860.557 Y=701.100 +[2025.06.16-10.28.25:485][857]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1860.557 Y=701.100 +[2025.06.16-10.28.25:485][857]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1860.557 Y=701.100 +[2025.06.16-10.28.25:493][858]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1861.985 Y=701.100 +[2025.06.16-10.28.25:493][858]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1861.985 Y=701.100 +[2025.06.16-10.28.25:493][858]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1861.985 Y=701.100 +[2025.06.16-10.28.25:502][859]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1864.841 Y=701.100 +[2025.06.16-10.28.25:502][859]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1864.841 Y=701.100 +[2025.06.16-10.28.25:502][859]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1864.841 Y=701.100 +[2025.06.16-10.28.25:509][860]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:510][860]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:510][860]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:518][861]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:518][861]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:518][861]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1866.269 Y=701.100 +[2025.06.16-10.28.25:527][862]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1869.125 Y=701.100 +[2025.06.16-10.28.25:527][862]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1869.125 Y=701.100 +[2025.06.16-10.28.25:527][862]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1869.125 Y=701.100 +[2025.06.16-10.28.25:535][863]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1870.552 Y=701.100 +[2025.06.16-10.28.25:535][863]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1870.552 Y=701.100 +[2025.06.16-10.28.25:536][863]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1870.552 Y=701.100 +[2025.06.16-10.28.25:543][864]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1871.980 Y=701.100 +[2025.06.16-10.28.25:543][864]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1871.980 Y=701.100 +[2025.06.16-10.28.25:544][864]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1871.980 Y=701.100 +[2025.06.16-10.28.25:552][865]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1873.408 Y=701.100 +[2025.06.16-10.28.25:553][865]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1873.408 Y=701.100 +[2025.06.16-10.28.25:553][865]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1873.408 Y=701.100 +[2025.06.16-10.28.25:563][866]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1876.264 Y=701.100 +[2025.06.16-10.28.25:563][866]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1876.264 Y=701.100 +[2025.06.16-10.28.25:563][866]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1876.264 Y=701.100 +[2025.06.16-10.28.25:573][867]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1877.692 Y=701.100 +[2025.06.16-10.28.25:573][867]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1877.692 Y=701.100 +[2025.06.16-10.28.25:573][867]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1877.692 Y=701.100 +[2025.06.16-10.28.25:582][868]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1879.120 Y=701.100 +[2025.06.16-10.28.25:582][868]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1879.120 Y=701.100 +[2025.06.16-10.28.25:582][868]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1879.120 Y=701.100 +[2025.06.16-10.28.25:590][869]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1880.548 Y=701.100 +[2025.06.16-10.28.25:590][869]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1880.548 Y=701.100 +[2025.06.16-10.28.25:590][869]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1880.548 Y=701.100 +[2025.06.16-10.28.25:600][870]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1881.976 Y=701.100 +[2025.06.16-10.28.25:600][870]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1881.976 Y=701.100 +[2025.06.16-10.28.25:601][870]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1881.976 Y=701.100 +[2025.06.16-10.28.25:610][871]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1883.404 Y=701.100 +[2025.06.16-10.28.25:611][871]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1883.404 Y=701.100 +[2025.06.16-10.28.25:611][871]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1883.404 Y=701.100 +[2025.06.16-10.28.25:619][872]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:619][872]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:619][872]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:628][873]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:628][873]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:629][873]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:638][874]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:638][874]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:638][874]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:645][875]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:647][875]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:647][875]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1884.832 Y=701.100 +[2025.06.16-10.28.25:655][876]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:655][876]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:655][876]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:664][877]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:664][877]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:664][877]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1886.260 Y=701.100 +[2025.06.16-10.28.25:672][878]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:672][878]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:672][878]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:680][879]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:680][879]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:680][879]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:688][880]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:688][880]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:688][880]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:697][881]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:697][881]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:697][881]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:704][882]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:704][882]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:704][882]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:712][883]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:714][883]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:714][883]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:721][884]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:721][884]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:721][884]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1887.687 Y=701.100 +[2025.06.16-10.28.25:730][885]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:731][885]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:731][885]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:738][886]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:738][886]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:739][886]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:747][887]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:747][887]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:747][887]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:755][888]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:756][888]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:756][888]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:763][889]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:763][889]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:763][889]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:773][890]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:773][890]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:773][890]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1889.115 Y=701.100 +[2025.06.16-10.28.25:781][891]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:781][891]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:781][891]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:790][892]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:790][892]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:790][892]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:798][893]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:798][893]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:799][893]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:807][894]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:808][894]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:808][894]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:815][895]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:815][895]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:816][895]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:825][896]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:825][896]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:825][896]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:833][897]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:833][897]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:833][897]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:841][898]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:841][898]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:841][898]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:849][899]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:850][899]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:850][899]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:858][900]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:858][900]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:858][900]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:867][901]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:867][901]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:867][901]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:875][902]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:875][902]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:875][902]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:883][903]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:884][903]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:884][903]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:892][904]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:892][904]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:892][904]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1890.543 Y=701.100 +[2025.06.16-10.28.25:900][905]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:900][905]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:900][905]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:909][906]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:909][906]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:909][906]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1891.971 Y=701.100 +[2025.06.16-10.28.25:917][907]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:917][907]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:918][907]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:925][908]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:925][908]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:925][908]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:934][909]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:934][909]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:934][909]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:943][910]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:944][910]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:944][910]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1893.399 Y=701.100 +[2025.06.16-10.28.25:951][911]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:951][911]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:952][911]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:959][912]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:959][912]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:959][912]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:968][913]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:968][913]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:968][913]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1894.827 Y=701.100 +[2025.06.16-10.28.25:977][914]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:977][914]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:977][914]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:985][915]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:985][915]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:985][915]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:994][916]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:995][916]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1896.255 Y=701.100 +[2025.06.16-10.28.25:995][916]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1896.255 Y=701.100 +[2025.06.16-10.28.26:003][917]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:003][917]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:003][917]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:012][918]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:012][918]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:012][918]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:021][919]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:021][919]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:021][919]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:029][920]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:029][920]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:029][920]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:037][921]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:037][921]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:037][921]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1897.683 Y=701.100 +[2025.06.16-10.28.26:046][922]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:046][922]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:046][922]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:053][923]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:053][923]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:053][923]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:063][924]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:063][924]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:063][924]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1899.111 Y=701.100 +[2025.06.16-10.28.26:071][925]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:071][925]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:071][925]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:079][926]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:079][926]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:079][926]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:087][927]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:087][927]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:087][927]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:096][928]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:096][928]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:096][928]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1900.538 Y=701.100 +[2025.06.16-10.28.26:103][929]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:105][929]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:105][929]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:112][930]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:112][930]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:112][930]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1901.966 Y=701.100 +[2025.06.16-10.28.26:120][931]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1901.966 Y=699.672 +[2025.06.16-10.28.26:121][931]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1901.966 Y=699.672 +[2025.06.16-10.28.26:121][931]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1901.966 Y=699.672 +[2025.06.16-10.28.26:129][932]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:129][932]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:129][932]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:138][933]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:138][933]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:138][933]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:146][934]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:146][934]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:146][934]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1903.394 Y=699.672 +[2025.06.16-10.28.26:155][935]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1904.822 Y=699.672 +[2025.06.16-10.28.26:155][935]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1904.822 Y=699.672 +[2025.06.16-10.28.26:155][935]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1904.822 Y=699.672 +[2025.06.16-10.28.26:162][936]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1906.250 Y=699.672 +[2025.06.16-10.28.26:162][936]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1906.250 Y=699.672 +[2025.06.16-10.28.26:163][936]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1906.250 Y=699.672 +[2025.06.16-10.28.26:172][937]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:172][937]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:172][937]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:179][938]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:179][938]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:179][938]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1907.678 Y=699.672 +[2025.06.16-10.28.26:188][939]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1909.106 Y=699.672 +[2025.06.16-10.28.26:188][939]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1909.106 Y=699.672 +[2025.06.16-10.28.26:188][939]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1909.106 Y=699.672 +[2025.06.16-10.28.26:195][940]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1910.534 Y=699.672 +[2025.06.16-10.28.26:197][940]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1910.534 Y=699.672 +[2025.06.16-10.28.26:197][940]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1910.534 Y=699.672 +[2025.06.16-10.28.26:206][941]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:206][941]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:206][941]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:213][942]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:213][942]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:213][942]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1911.962 Y=699.672 +[2025.06.16-10.28.26:222][943]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1913.390 Y=699.672 +[2025.06.16-10.28.26:222][943]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1913.390 Y=699.672 +[2025.06.16-10.28.26:222][943]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1913.390 Y=699.672 +[2025.06.16-10.28.26:230][944]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:230][944]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:230][944]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:238][945]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:238][945]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:238][945]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1914.818 Y=699.672 +[2025.06.16-10.28.26:247][946]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:247][946]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:247][946]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:254][947]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:256][947]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:256][947]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1917.673 Y=699.672 +[2025.06.16-10.28.26:265][948]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1919.101 Y=699.672 +[2025.06.16-10.28.26:265][948]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1919.101 Y=699.672 +[2025.06.16-10.28.26:265][948]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1919.101 Y=699.672 +[2025.06.16-10.28.26:272][949]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1920.529 Y=699.672 +[2025.06.16-10.28.26:273][949]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1920.529 Y=699.672 +[2025.06.16-10.28.26:273][949]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1920.529 Y=699.672 +[2025.06.16-10.28.26:281][950]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1921.957 Y=699.672 +[2025.06.16-10.28.26:281][950]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1921.957 Y=699.672 +[2025.06.16-10.28.26:281][950]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1921.957 Y=699.672 +[2025.06.16-10.28.26:289][951]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1923.385 Y=699.672 +[2025.06.16-10.28.26:289][951]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1923.385 Y=699.672 +[2025.06.16-10.28.26:290][951]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1923.385 Y=699.672 +[2025.06.16-10.28.26:298][952]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1923.385 Y=698.244 +[2025.06.16-10.28.26:298][952]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1923.385 Y=698.244 +[2025.06.16-10.28.26:298][952]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1923.385 Y=698.244 +[2025.06.16-10.28.26:306][953]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:306][953]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:307][953]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:315][954]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:315][954]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:315][954]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1924.813 Y=698.244 +[2025.06.16-10.28.26:323][955]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1926.241 Y=698.244 +[2025.06.16-10.28.26:324][955]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1926.241 Y=698.244 +[2025.06.16-10.28.26:324][955]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1926.241 Y=698.244 +[2025.06.16-10.28.26:332][956]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1927.669 Y=698.244 +[2025.06.16-10.28.26:332][956]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1927.669 Y=698.244 +[2025.06.16-10.28.26:332][956]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1927.669 Y=698.244 +[2025.06.16-10.28.26:340][957]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1929.097 Y=698.244 +[2025.06.16-10.28.26:340][957]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1929.097 Y=698.244 +[2025.06.16-10.28.26:340][957]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1929.097 Y=698.244 +[2025.06.16-10.28.26:348][958]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1931.952 Y=698.244 +[2025.06.16-10.28.26:348][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1931.952 Y=698.244 +[2025.06.16-10.28.26:348][958]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1931.952 Y=698.244 +[2025.06.16-10.28.26:357][959]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1937.664 Y=698.244 +[2025.06.16-10.28.26:357][959]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1937.664 Y=698.244 +[2025.06.16-10.28.26:357][959]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1937.664 Y=698.244 +[2025.06.16-10.28.26:367][960]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1939.092 Y=698.244 +[2025.06.16-10.28.26:367][960]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1939.092 Y=698.244 +[2025.06.16-10.28.26:367][960]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1939.092 Y=698.244 +[2025.06.16-10.28.26:374][961]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1946.231 Y=698.244 +[2025.06.16-10.28.26:375][961]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1946.231 Y=698.244 +[2025.06.16-10.28.26:375][961]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1946.231 Y=698.244 +[2025.06.16-10.28.26:383][962]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1949.087 Y=699.672 +[2025.06.16-10.28.26:384][962]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1949.087 Y=699.672 +[2025.06.16-10.28.26:384][962]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1949.087 Y=699.672 +[2025.06.16-10.28.26:392][963]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1954.799 Y=701.100 +[2025.06.16-10.28.26:392][963]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1954.799 Y=701.100 +[2025.06.16-10.28.26:392][963]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1954.799 Y=701.100 +[2025.06.16-10.28.26:400][964]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1959.083 Y=701.100 +[2025.06.16-10.28.26:400][964]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1959.083 Y=701.100 +[2025.06.16-10.28.26:400][964]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1959.083 Y=701.100 +[2025.06.16-10.28.26:408][965]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1964.794 Y=701.100 +[2025.06.16-10.28.26:408][965]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1964.794 Y=701.100 +[2025.06.16-10.28.26:408][965]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1964.794 Y=701.100 +[2025.06.16-10.28.26:417][966]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1967.650 Y=701.100 +[2025.06.16-10.28.26:418][966]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1967.650 Y=701.100 +[2025.06.16-10.28.26:418][966]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1967.650 Y=701.100 +[2025.06.16-10.28.26:425][967]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1970.506 Y=702.528 +[2025.06.16-10.28.26:425][967]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1970.506 Y=702.528 +[2025.06.16-10.28.26:425][967]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1970.506 Y=702.528 +[2025.06.16-10.28.26:434][968]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1973.362 Y=702.528 +[2025.06.16-10.28.26:434][968]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1973.362 Y=702.528 +[2025.06.16-10.28.26:434][968]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1973.362 Y=702.528 +[2025.06.16-10.28.26:443][969]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1974.789 Y=702.528 +[2025.06.16-10.28.26:444][969]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1974.789 Y=702.528 +[2025.06.16-10.28.26:444][969]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1974.789 Y=702.528 +[2025.06.16-10.28.26:452][970]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:452][970]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:452][970]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:460][971]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:460][971]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:460][971]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1976.217 Y=702.528 +[2025.06.16-10.28.26:468][972]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:468][972]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:468][972]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:477][973]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:477][973]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:477][973]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:485][974]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:485][974]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:485][974]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:493][975]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:493][975]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:494][975]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1977.645 Y=702.528 +[2025.06.16-10.28.26:502][976]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:502][976]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:502][976]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:510][977]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:510][977]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:510][977]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:518][978]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:518][978]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:518][978]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1979.073 Y=702.528 +[2025.06.16-10.28.26:527][979]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:527][979]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:527][979]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:535][980]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:535][980]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:535][980]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1980.501 Y=702.528 +[2025.06.16-10.28.26:543][981]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1981.929 Y=702.528 +[2025.06.16-10.28.26:544][981]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1981.929 Y=702.528 +[2025.06.16-10.28.26:544][981]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1981.929 Y=702.528 +[2025.06.16-10.28.26:552][982]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:552][982]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:552][982]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:561][983]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:561][983]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:561][983]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:568][984]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:569][984]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:569][984]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1983.357 Y=702.528 +[2025.06.16-10.28.26:577][985]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:577][985]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:577][985]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:586][986]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:586][986]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:586][986]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:593][987]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:593][987]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:593][987]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1984.785 Y=702.528 +[2025.06.16-10.28.26:603][988]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:603][988]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:603][988]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:611][989]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:611][989]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:611][989]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:619][990]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:619][990]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:619][990]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1986.213 Y=702.528 +[2025.06.16-10.28.26:628][991]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1987.641 Y=702.528 +[2025.06.16-10.28.26:628][991]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1987.641 Y=702.528 +[2025.06.16-10.28.26:628][991]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1987.641 Y=702.528 +[2025.06.16-10.28.26:635][992]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1989.068 Y=702.528 +[2025.06.16-10.28.26:635][992]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1989.068 Y=702.528 +[2025.06.16-10.28.26:637][992]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1989.068 Y=702.528 +[2025.06.16-10.28.26:645][993]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:645][993]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:645][993]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:652][994]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:652][994]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:652][994]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1990.496 Y=702.528 +[2025.06.16-10.28.26:661][995]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1991.924 Y=702.528 +[2025.06.16-10.28.26:662][995]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1991.924 Y=702.528 +[2025.06.16-10.28.26:662][995]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1991.924 Y=702.528 +[2025.06.16-10.28.26:670][996]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1993.352 Y=702.528 +[2025.06.16-10.28.26:670][996]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1993.352 Y=702.528 +[2025.06.16-10.28.26:670][996]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1993.352 Y=702.528 +[2025.06.16-10.28.26:678][997]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:679][997]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:679][997]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:686][998]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:686][998]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:687][998]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1994.780 Y=702.528 +[2025.06.16-10.28.26:696][999]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:696][999]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:696][999]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:703][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:704][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:704][ 0]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:712][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:712][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:712][ 1]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1996.208 Y=702.528 +[2025.06.16-10.28.26:721][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1997.636 Y=702.528 +[2025.06.16-10.28.26:722][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1997.636 Y=702.528 +[2025.06.16-10.28.26:722][ 2]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1997.636 Y=702.528 +[2025.06.16-10.28.26:731][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1999.064 Y=703.956 +[2025.06.16-10.28.26:731][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1999.064 Y=703.956 +[2025.06.16-10.28.26:731][ 3]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1999.064 Y=703.956 +[2025.06.16-10.28.26:739][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2001.920 Y=703.956 +[2025.06.16-10.28.26:739][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2001.920 Y=703.956 +[2025.06.16-10.28.26:739][ 4]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2001.920 Y=703.956 +[2025.06.16-10.28.26:747][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2004.775 Y=703.956 +[2025.06.16-10.28.26:748][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2004.775 Y=703.956 +[2025.06.16-10.28.26:748][ 5]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2004.775 Y=703.956 +[2025.06.16-10.28.26:757][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2006.203 Y=703.956 +[2025.06.16-10.28.26:757][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2006.203 Y=703.956 +[2025.06.16-10.28.26:757][ 6]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2006.203 Y=703.956 +[2025.06.16-10.28.26:765][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2007.631 Y=705.384 +[2025.06.16-10.28.26:765][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2007.631 Y=705.384 +[2025.06.16-10.28.26:765][ 7]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2007.631 Y=705.384 +[2025.06.16-10.28.26:774][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2010.487 Y=705.384 +[2025.06.16-10.28.26:774][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2010.487 Y=705.384 +[2025.06.16-10.28.26:774][ 8]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2010.487 Y=705.384 +[2025.06.16-10.28.26:782][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2014.771 Y=705.384 +[2025.06.16-10.28.26:782][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2014.771 Y=705.384 +[2025.06.16-10.28.26:782][ 9]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2014.771 Y=705.384 +[2025.06.16-10.28.26:791][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2016.199 Y=705.384 +[2025.06.16-10.28.26:791][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2016.199 Y=705.384 +[2025.06.16-10.28.26:791][ 10]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2016.199 Y=705.384 +[2025.06.16-10.28.26:799][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2017.626 Y=705.384 +[2025.06.16-10.28.26:799][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2017.626 Y=705.384 +[2025.06.16-10.28.26:799][ 11]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2017.626 Y=705.384 +[2025.06.16-10.28.26:808][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:808][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:808][ 12]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:815][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:817][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:817][ 13]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2019.054 Y=705.384 +[2025.06.16-10.28.26:825][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:825][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:825][ 14]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:834][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:834][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:834][ 15]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:843][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:843][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:843][ 16]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:851][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:851][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:851][ 17]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:860][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:861][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:861][ 18]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:868][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:868][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:868][ 19]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:878][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:878][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:878][ 20]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:886][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:886][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:886][ 21]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:895][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:895][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:895][ 22]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:903][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:903][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:903][ 23]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:911][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:912][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:912][ 24]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2020.482 Y=705.384 +[2025.06.16-10.28.26:920][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:921][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:921][ 25]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:928][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:928][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:929][ 26]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:938][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:938][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:938][ 27]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:945][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:946][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:946][ 28]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:954][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:954][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:955][ 29]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.26:963][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:963][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:963][ 30]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:967][ 31]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.28.26:967][ 31]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-10.28.26:971][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:971][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:972][ 31]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:979][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:980][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:980][ 32]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:989][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:989][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:989][ 33]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:996][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:996][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.26:997][ 34]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:005][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:006][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:006][ 35]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:013][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:013][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:013][ 36]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:022][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:022][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:022][ 37]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:030][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:030][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:030][ 38]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:038][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:038][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:038][ 39]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:048][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:048][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:048][ 40]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:055][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:055][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:055][ 41]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:063][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:064][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:064][ 42]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:072][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:072][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:072][ 43]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:081][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:081][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:081][ 44]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:089][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:089][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:089][ 45]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:098][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:098][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:098][ 46]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:105][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:105][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:105][ 47]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:114][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:114][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:114][ 48]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:122][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:123][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:123][ 49]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:131][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:131][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:131][ 50]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:139][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:139][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:139][ 51]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:149][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:149][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:149][ 52]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:156][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:157][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:157][ 53]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:166][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:166][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:166][ 54]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:174][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:174][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:174][ 55]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:182][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:182][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:182][ 56]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:191][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:191][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:191][ 57]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:198][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:198][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:198][ 58]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:208][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:208][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:208][ 59]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:215][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:215][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:215][ 60]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:223][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:223][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:223][ 61]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:232][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:232][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:232][ 62]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:240][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:240][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:241][ 63]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:249][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:249][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:249][ 64]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:257][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:257][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:257][ 65]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:265][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:265][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:265][ 66]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:273][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:274][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:274][ 67]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:282][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:282][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:282][ 68]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:290][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:290][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:290][ 69]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:299][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:299][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:299][ 70]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:307][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:307][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:307][ 71]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:316][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:316][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:316][ 72]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:325][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:325][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:325][ 73]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:332][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:332][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:332][ 74]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:340][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:340][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:340][ 75]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:350][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:351][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:351][ 76]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:358][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:358][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:358][ 77]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:367][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:367][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:367][ 78]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:376][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:376][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:376][ 79]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:383][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:384][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:384][ 80]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:392][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:392][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:392][ 81]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:402][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:402][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:402][ 82]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:410][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:410][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:410][ 83]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:418][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:418][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:418][ 84]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:425][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:425][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:425][ 85]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:434][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:435][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:435][ 86]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:443][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:443][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:443][ 87]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:451][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:451][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:451][ 88]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:459][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:460][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:460][ 89]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:468][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:469][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:469][ 90]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:477][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:477][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:477][ 91]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:484][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:484][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:484][ 92]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:493][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:493][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:493][ 93]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:502][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:503][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:503][ 94]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:511][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:511][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:511][ 95]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:518][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:518][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:519][ 96]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:527][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:527][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:527][ 97]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:535][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:535][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:535][ 98]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2030.478 Y=705.384 +[2025.06.16-10.28.27:544][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:544][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:544][ 99]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:552][100]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:552][100]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:552][100]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:560][101]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:561][101]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:561][101]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:569][102]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:569][102]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:569][102]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2029.050 Y=705.384 +[2025.06.16-10.28.27:577][103]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:577][103]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:577][103]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:587][104]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:587][104]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:587][104]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:595][105]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:595][105]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:595][105]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:605][106]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:605][106]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:605][106]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:613][107]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:613][107]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:613][107]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2027.622 Y=705.384 +[2025.06.16-10.28.27:623][108]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:623][108]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:623][108]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2026.194 Y=705.384 +[2025.06.16-10.28.27:631][109]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:631][109]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:631][109]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:640][110]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:640][110]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:640][110]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:648][111]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:648][111]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:648][111]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:657][112]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:657][112]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:657][112]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2024.766 Y=705.384 +[2025.06.16-10.28.27:665][113]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:665][113]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:665][113]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:672][114]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:673][114]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:673][114]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:681][115]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:681][115]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:682][115]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:689][116]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:689][116]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:689][116]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:698][117]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:698][117]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:698][117]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:705][118]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:705][118]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:707][118]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:715][119]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:715][119]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:715][119]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:723][120]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:723][120]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:723][120]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:731][121]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:731][121]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:731][121]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:740][122]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:740][122]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:740][122]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:748][123]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:749][123]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:749][123]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:756][124]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:757][124]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:757][124]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:764][125]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:764][125]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:764][125]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:773][126]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:773][126]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:773][126]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:781][127]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:781][127]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:781][127]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:790][128]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:790][128]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:790][128]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:798][129]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:799][129]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:799][129]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:807][130]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:808][130]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:808][130]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:815][131]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:815][131]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:815][131]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:824][132]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:824][132]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:824][132]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:832][133]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:832][133]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:832][133]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:841][134]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:841][134]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:841][134]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:849][135]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:850][135]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:850][135]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:858][136]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:858][136]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:858][136]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:865][137]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:865][137]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:867][137]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:874][138]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:874][138]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:875][138]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2023.338 Y=705.384 +[2025.06.16-10.28.27:883][139]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:883][139]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:883][139]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:891][140]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:891][140]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:891][140]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:900][141]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:900][141]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:900][141]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:908][142]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:908][142]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:908][142]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:917][143]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:917][143]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:917][143]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:925][144]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:925][144]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:925][144]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:933][145]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:933][145]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:934][145]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:941][146]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:942][146]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:942][146]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:950][147]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:950][147]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:950][147]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:958][148]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:958][148]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:958][148]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:967][149]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:967][149]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:967][149]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:975][150]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:975][150]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:975][150]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:983][151]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:983][151]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:983][151]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:991][152]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:991][152]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.27:991][152]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:000][153]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:000][153]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:000][153]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:008][154]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:008][154]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:008][154]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:015][155]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:015][155]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:015][155]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:025][156]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:025][156]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:025][156]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:033][157]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:033][157]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:033][157]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:042][158]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:042][158]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:042][158]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:050][159]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:050][159]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:050][159]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:059][160]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:059][160]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:059][160]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:067][161]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:067][161]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:068][161]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:076][162]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:076][162]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:076][162]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:083][163]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:083][163]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:085][163]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:092][164]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:092][164]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:093][164]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:100][165]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:100][165]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:100][165]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:108][166]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:108][166]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:108][166]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:118][167]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:118][167]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:118][167]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:125][168]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:125][168]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:125][168]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:135][169]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:135][169]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:135][169]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:142][170]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:142][170]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:142][170]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2021.910 Y=705.384 +[2025.06.16-10.28.28:151][171]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:152][171]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:152][171]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:160][172]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:160][172]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:160][172]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2019.054 Y=705.384 +[2025.06.16-10.28.28:170][173]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2017.626 Y=703.956 +[2025.06.16-10.28.28:170][173]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2017.626 Y=703.956 +[2025.06.16-10.28.28:170][173]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2017.626 Y=703.956 +[2025.06.16-10.28.28:178][174]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2011.915 Y=702.528 +[2025.06.16-10.28.28:178][174]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2011.915 Y=702.528 +[2025.06.16-10.28.28:178][174]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2011.915 Y=702.528 +[2025.06.16-10.28.28:186][175]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2007.631 Y=699.672 +[2025.06.16-10.28.28:187][175]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2007.631 Y=699.672 +[2025.06.16-10.28.28:187][175]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2007.631 Y=699.672 +[2025.06.16-10.28.28:195][176]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=2003.348 Y=695.389 +[2025.06.16-10.28.28:195][176]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=2003.348 Y=695.389 +[2025.06.16-10.28.28:195][176]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=2003.348 Y=695.389 +[2025.06.16-10.28.28:203][177]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1983.357 Y=685.393 +[2025.06.16-10.28.28:203][177]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1983.357 Y=685.393 +[2025.06.16-10.28.28:203][177]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1983.357 Y=685.393 +[2025.06.16-10.28.28:212][178]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1963.366 Y=673.970 +[2025.06.16-10.28.28:212][178]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1963.366 Y=673.970 +[2025.06.16-10.28.28:212][178]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1963.366 Y=673.970 +[2025.06.16-10.28.28:221][179]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1939.092 Y=658.263 +[2025.06.16-10.28.28:221][179]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1939.092 Y=658.263 +[2025.06.16-10.28.28:222][179]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1939.092 Y=658.263 +[2025.06.16-10.28.28:230][180]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1894.827 Y=631.133 +[2025.06.16-10.28.28:230][180]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1894.827 Y=631.133 +[2025.06.16-10.28.28:230][180]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1894.827 Y=631.133 +[2025.06.16-10.28.28:238][181]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1856.274 Y=604.003 +[2025.06.16-10.28.28:238][181]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1856.274 Y=604.003 +[2025.06.16-10.28.28:238][181]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1856.274 Y=604.003 +[2025.06.16-10.28.28:247][182]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1809.153 Y=571.161 +[2025.06.16-10.28.28:247][182]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1809.153 Y=571.161 +[2025.06.16-10.28.28:247][182]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1809.153 Y=571.161 +[2025.06.16-10.28.28:256][183]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1757.748 Y=534.036 +[2025.06.16-10.28.28:256][183]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1757.748 Y=534.036 +[2025.06.16-10.28.28:256][183]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1757.748 Y=534.036 +[2025.06.16-10.28.28:264][184]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1694.921 Y=488.343 +[2025.06.16-10.28.28:264][184]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1694.921 Y=488.343 +[2025.06.16-10.28.28:264][184]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1694.921 Y=488.343 +[2025.06.16-10.28.28:272][185]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1627.809 Y=442.650 +[2025.06.16-10.28.28:272][185]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1627.809 Y=442.650 +[2025.06.16-10.28.28:272][185]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1627.809 Y=442.650 +[2025.06.16-10.28.28:281][186]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1563.553 Y=389.817 +[2025.06.16-10.28.28:281][186]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1563.553 Y=389.817 +[2025.06.16-10.28.28:281][186]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1563.553 Y=389.817 +[2025.06.16-10.28.28:290][187]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1469.312 Y=306.999 +[2025.06.16-10.28.28:290][187]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1469.312 Y=306.999 +[2025.06.16-10.28.28:290][187]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1469.312 Y=306.999 +[2025.06.16-10.28.28:297][188]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1437.898 Y=274.157 +[2025.06.16-10.28.28:297][188]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1437.898 Y=274.157 +[2025.06.16-10.28.28:298][188]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1437.898 Y=274.157 +[2025.06.16-10.28.28:305][189]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1346.512 Y=191.339 +[2025.06.16-10.28.28:305][189]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1346.512 Y=191.339 +[2025.06.16-10.28.28:305][189]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1346.512 Y=191.339 +[2025.06.16-10.28.28:315][190]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1285.112 Y=139.934 +[2025.06.16-10.28.28:316][190]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1285.112 Y=139.934 +[2025.06.16-10.28.28:316][190]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1285.112 Y=139.934 +[2025.06.16-10.28.28:323][191]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1232.280 Y=97.097 +[2025.06.16-10.28.28:323][191]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1232.280 Y=97.097 +[2025.06.16-10.28.28:323][191]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1232.280 Y=97.097 +[2025.06.16-10.28.28:331][192]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1176.592 Y=57.116 +[2025.06.16-10.28.28:331][192]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1176.592 Y=57.116 +[2025.06.16-10.28.28:331][192]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1176.592 Y=57.116 +[2025.06.16-10.28.28:341][193]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:341][193]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:341][193]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:349][194]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:349][194]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:349][194]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:357][195]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:357][195]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:357][195]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:366][196]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:367][196]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:367][196]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:375][197]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:375][197]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:375][197]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:384][198]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:384][198]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:384][198]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:392][199]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:392][199]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:392][199]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:400][200]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:400][200]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:400][200]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:408][201]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:408][201]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:408][201]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:416][202]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:417][202]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:417][202]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:424][203]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:425][203]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:425][203]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:434][204]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:434][204]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:434][204]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:443][205]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:443][205]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:443][205]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:451][206]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:451][206]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:451][206]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:474][207]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:474][207]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:474][207]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:483][208]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:483][208]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:483][208]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:492][209]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:492][209]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:492][209]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:503][210]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:503][210]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:503][210]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:512][211]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:512][211]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:513][211]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:520][212]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:520][212]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:520][212]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:529][213]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:529][213]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:529][213]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:537][214]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:537][214]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:538][214]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:545][215]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:545][215]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:546][215]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:555][216]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:555][216]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:555][216]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:564][217]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:564][217]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:564][217]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:573][218]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:574][218]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:574][218]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:582][219]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:582][219]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:583][219]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:591][220]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:591][220]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:591][220]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:600][221]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:600][221]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:600][221]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:610][222]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:610][222]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:610][222]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:620][223]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:620][223]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:620][223]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:629][224]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:629][224]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:629][224]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:638][225]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:638][225]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:638][225]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:648][226]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:648][226]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:648][226]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:657][227]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:657][227]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:657][227]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:666][228]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:666][228]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:666][228]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:676][229]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:676][229]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:676][229]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:684][230]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:685][230]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:685][230]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:694][231]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:694][231]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:694][231]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:703][232]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:703][232]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:703][232]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:713][233]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:713][233]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:713][233]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:721][234]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:721][234]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:721][234]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:730][235]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:730][235]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:730][235]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:739][236]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:739][236]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:739][236]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:749][237]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:749][237]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:749][237]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:771][238]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:771][238]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:772][238]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:780][239]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:780][239]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:780][239]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:789][240]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:789][240]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:789][240]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:798][241]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:798][241]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:798][241]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:806][242]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:806][242]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:806][242]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:815][243]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:815][243]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:815][243]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:823][244]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:823][244]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:823][244]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:832][245]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:832][245]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:832][245]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:840][246]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:840][246]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:840][246]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:849][247]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:849][247]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:849][247]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:858][248]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:858][248]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:858][248]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:867][249]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:867][249]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:867][249]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:874][250]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:874][250]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:874][250]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:883][251]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:883][251]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:883][251]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:892][252]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:892][252]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:892][252]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:901][253]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:901][253]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:901][253]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:908][254]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:908][254]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:909][254]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:918][255]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:918][255]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:918][255]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:927][256]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:927][256]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:927][256]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:934][257]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:934][257]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:934][257]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:943][258]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:943][258]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:943][258]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:951][259]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:951][259]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:951][259]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:959][260]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:960][260]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:960][260]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:967][261]LogBlueprintUserMessages: [WBP_SkillCard_C_0] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:968][261]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:968][261]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1102.341 Y=4.284 +[2025.06.16-10.28.28:998][262]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.28.28:998][262]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.28.28:998][262]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.28.28:998][262]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.28.28:999][262]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.28.29:001][262]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.28.29:004][262]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.28.29:023][262]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.28.29:023][262]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 47 +[2025.06.16-10.28.29:023][262]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=47 +[2025.06.16-10.28.29:026][262]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=47 +[2025.06.16-10.28.29:029][262]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.28.29:030][262]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.28.29:089][263]LogPlayLevel: Display: Destroying online subsystem :Context_59 +[2025.06.16-10.28.54:925][168]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.28.54:925][168]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.28.56:749][362]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-10.28.58:028][477]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.28.58:032][477]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.28.58:032][477]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.28.58:034][477]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.252 ms (total: 60.491 ms) +[2025.06.16-10.28.58:034][477]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.28.58:034][477]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.28.58:037][477]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002147s) +[2025.06.16-10.28.58:037][477]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002305s) +[2025.06.16-10.28.58:050][477]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.28.58:054][477]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.28.58:055][477]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.28.58:055][477]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.28.58:055][477]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.28.58:055][477]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.28.58:057][477]LogWorldPartition: Display: WorldPartition initialize took 1.053 ms (total: 134.972 ms) +[2025.06.16-10.28.58:057][477]LogPlayLevel: PIE: World Init took: (0.002536s) +[2025.06.16-10.28.58:057][477]LogAudio: Display: Creating Audio Device: Id: 48, Scope: Unique, Realtime: True +[2025.06.16-10.28.58:057][477]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.28.58:057][477]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.28.58:057][477]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.28.58:057][477]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.28.58:057][477]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.28.58:058][477]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.28.58:058][477]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.28.58:058][477]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.28.58:058][477]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.28.58:058][477]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.28.58:058][477]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.28.58:060][477]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.28.58:086][477]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.28.58:086][477]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.28.58:086][477]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.28.58:086][477]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.28.58:087][477]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=48 +[2025.06.16-10.28.58:087][477]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=48 +[2025.06.16-10.28.58:089][477]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=48 +[2025.06.16-10.28.58:089][477]LogInit: FAudioDevice initialized with ID 48. +[2025.06.16-10.28.58:089][477]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=48 +[2025.06.16-10.28.58:089][477]LogAudio: Display: Audio Device (ID: 48) registered with world 'Dabaza'. +[2025.06.16-10.28.58:089][477]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 48 +[2025.06.16-10.28.58:091][477]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.28.58:092][477]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.28.58 +[2025.06.16-10.28.58:092][477]LogWorld: Bringing up level for play took: 0.001207 +[2025.06.16-10.28.58:095][477]LogOnline: OSS: Created online subsystem instance for: :Context_60 +[2025.06.16-10.28.58:097][477]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.28.58:097][477]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.28.58:098][477]PIE: Server logged in +[2025.06.16-10.28.58:099][477]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.28.58:797][551]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=576.000 Y=511.000 +[2025.06.16-10.28.58:797][551]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=816.760 Y=579.729 +[2025.06.16-10.28.58:797][551]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 1387 +[2025.06.16-10.28.58:797][551]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-10.29.15:347][551]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.29.15:349][551]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.29.15:349][551]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.29.15:349][551]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.29.15:349][551]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.29.15:351][551]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.29.15:355][551]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.29.15:370][551]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.29.15:370][551]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 48 +[2025.06.16-10.29.15:370][551]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=48 +[2025.06.16-10.29.15:373][551]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=48 +[2025.06.16-10.29.15:377][551]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.29.15:378][551]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.29.15:395][551]LogAutomationController: Ignoring very large delta of 16.60 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.29.15:427][552]LogPlayLevel: Display: Destroying online subsystem :Context_60 +[2025.06.16-10.29.15:444][554]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-10.29.18:490][911]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.16-10.29.18:491][911]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.019 +[2025.06.16-10.29.18:491][911]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-10.29.18:493][911]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-10.29.18:493][911]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-10.29.18:493][911]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffectText_Auto2.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-10.29.18:496][911]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/UI/WBP_SkillEffectText_Auto2 +[2025.06.16-10.29.18:496][911]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText_Auto23973168B452FBACA76648CBD299E2072.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillEffectText_Auto2.uasset' +[2025.06.16-10.29.18:497][911]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.29.18:498][911]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.29.18:498][911]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.29.18:498][911]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto2.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-10.29.18:509][911]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/UI/WBP_SkillCard_Auto2 +[2025.06.16-10.29.18:509][911]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard_Auto20F432A6B4DE6A2D3C94C84B3C01A99D1.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillCard_Auto2.uasset' +[2025.06.16-10.29.18:509][911]LogFileHelpers: Auto-saving content packages took 0.019 +[2025.06.16-10.29.45:613][ 34]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.29.45:613][ 34]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.30.09:025][635]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.30.09:904][709]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.30.10:992][802]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.30.10:998][802]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.30.10:998][802]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.30.10:999][802]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.189 ms (total: 61.681 ms) +[2025.06.16-10.30.10:999][802]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.30.10:999][802]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.11:001][802]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002216s) +[2025.06.16-10.30.11:001][802]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002368s) +[2025.06.16-10.30.11:015][802]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.30.11:020][802]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.30.11:021][802]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.30.11:021][802]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.30.11:021][802]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.30.11:021][802]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.30.11:022][802]LogWorldPartition: Display: WorldPartition initialize took 1.101 ms (total: 136.073 ms) +[2025.06.16-10.30.11:022][802]LogPlayLevel: PIE: World Init took: (0.002752s) +[2025.06.16-10.30.11:023][802]LogAudio: Display: Creating Audio Device: Id: 49, Scope: Unique, Realtime: True +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.30.11:023][802]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.30.11:023][802]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.30.11:023][802]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.30.11:023][802]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.30.11:023][802]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.30.11:025][802]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.30.11:051][802]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.30.11:051][802]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.30.11:051][802]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.30.11:052][802]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.30.11:052][802]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=49 +[2025.06.16-10.30.11:052][802]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=49 +[2025.06.16-10.30.11:054][802]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=49 +[2025.06.16-10.30.11:054][802]LogInit: FAudioDevice initialized with ID 49. +[2025.06.16-10.30.11:054][802]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=49 +[2025.06.16-10.30.11:054][802]LogAudio: Display: Audio Device (ID: 49) registered with world 'Dabaza'. +[2025.06.16-10.30.11:054][802]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 49 +[2025.06.16-10.30.11:057][802]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.30.11:058][802]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.30.11 +[2025.06.16-10.30.11:058][802]LogWorld: Bringing up level for play took: 0.001172 +[2025.06.16-10.30.11:060][802]LogOnline: OSS: Created online subsystem instance for: :Context_61 +[2025.06.16-10.30.11:062][802]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.30.11:062][802]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.30.11:063][802]PIE: Server logged in +[2025.06.16-10.30.11:064][802]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.30.12:453][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=668.000 Y=510.000 +[2025.06.16-10.30.12:453][958]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=948.127 Y=581.156 +[2025.06.16-10.30.18:993][739]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.30.20:508][912]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.20:508][912]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.20:509][912]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.30.20:509][912]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.20:509][912]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.30.20:512][912]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.30.20:516][912]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.20:531][912]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.30.20:531][912]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 49 +[2025.06.16-10.30.20:531][912]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=49 +[2025.06.16-10.30.20:533][912]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=49 +[2025.06.16-10.30.20:537][912]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.20:538][912]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-10.30.20:598][913]LogPlayLevel: Display: Destroying online subsystem :Context_61 +[2025.06.16-10.30.21:697][ 35]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.30.22:983][174]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.30.22:989][174]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.30.22:989][174]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.30.22:990][174]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.244 ms (total: 62.925 ms) +[2025.06.16-10.30.22:990][174]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.30.23:017][174]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.23:020][174]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002709s) +[2025.06.16-10.30.23:020][174]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002999s) +[2025.06.16-10.30.23:039][174]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.30.23:041][174]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.30.23:042][174]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.30.23:042][174]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.30.23:042][174]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.30.23:042][174]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.30.23:043][174]LogWorldPartition: Display: WorldPartition initialize took 1.255 ms (total: 137.329 ms) +[2025.06.16-10.30.23:043][174]LogPlayLevel: PIE: World Init took: (0.002819s) +[2025.06.16-10.30.23:043][174]LogAudio: Display: Creating Audio Device: Id: 50, Scope: Unique, Realtime: True +[2025.06.16-10.30.23:043][174]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.30.23:044][174]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.30.23:044][174]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.30.23:044][174]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.30.23:044][174]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.30.23:044][174]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.30.23:047][174]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.30.23:071][174]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.30.23:071][174]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.30.23:071][174]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.30.23:071][174]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.30.23:072][174]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=50 +[2025.06.16-10.30.23:072][174]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=50 +[2025.06.16-10.30.23:074][174]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=50 +[2025.06.16-10.30.23:074][174]LogInit: FAudioDevice initialized with ID 50. +[2025.06.16-10.30.23:074][174]LogAudio: Display: Audio Device (ID: 50) registered with world 'Dabaza'. +[2025.06.16-10.30.23:074][174]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=50 +[2025.06.16-10.30.23:074][174]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 50 +[2025.06.16-10.30.23:078][174]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.30.23:079][174]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.30.23 +[2025.06.16-10.30.23:080][174]LogWorld: Bringing up level for play took: 0.001175 +[2025.06.16-10.30.23:082][174]LogOnline: OSS: Created online subsystem instance for: :Context_62 +[2025.06.16-10.30.23:084][174]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.30.23:084][174]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.30.23:085][174]PIE: Server logged in +[2025.06.16-10.30.23:087][174]PIE: Play in editor total start time 0.098 seconds. +[2025.06.16-10.30.24:277][282]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=1001.000 Y=749.000 +[2025.06.16-10.30.24:277][282]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=776.638 Y=578.793 +[2025.06.16-10.30.30:368][858]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.30:368][858]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.30:369][858]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.30.30:369][858]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.30:369][858]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.30.30:372][858]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.30.30:376][858]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.30:391][858]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.30:391][858]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 50 +[2025.06.16-10.30.30:391][858]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=50 +[2025.06.16-10.30.30:393][858]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=50 +[2025.06.16-10.30.30:398][858]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-10.30.30:444][859]LogPlayLevel: Display: Destroying online subsystem :Context_62 +[2025.06.16-10.30.31:769][ 0]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.30.51:780][334]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-10.30.53:013][454]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.30.53:019][454]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.30.53:019][454]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.30.53:020][454]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.179 ms (total: 64.105 ms) +[2025.06.16-10.30.53:020][454]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.30.53:020][454]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.53:023][454]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002214s) +[2025.06.16-10.30.53:023][454]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002394s) +[2025.06.16-10.30.53:036][454]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.30.53:040][454]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.30.53:042][454]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.30.53:042][454]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.30.53:042][454]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.30.53:042][454]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.30.53:043][454]LogWorldPartition: Display: WorldPartition initialize took 1.003 ms (total: 138.332 ms) +[2025.06.16-10.30.53:043][454]LogPlayLevel: PIE: World Init took: (0.002402s) +[2025.06.16-10.30.53:043][454]LogAudio: Display: Creating Audio Device: Id: 51, Scope: Unique, Realtime: True +[2025.06.16-10.30.53:043][454]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.30.53:043][454]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.30.53:043][454]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.30.53:044][454]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.30.53:044][454]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.30.53:044][454]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.30.53:044][454]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.30.53:044][454]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.30.53:044][454]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.30.53:044][454]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.30.53:044][454]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.30.53:045][454]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.30.53:072][454]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.30.53:072][454]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.30.53:072][454]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.30.53:072][454]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.30.53:073][454]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=51 +[2025.06.16-10.30.53:073][454]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=51 +[2025.06.16-10.30.53:075][454]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=51 +[2025.06.16-10.30.53:075][454]LogInit: FAudioDevice initialized with ID 51. +[2025.06.16-10.30.53:075][454]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=51 +[2025.06.16-10.30.53:075][454]LogAudio: Display: Audio Device (ID: 51) registered with world 'Dabaza'. +[2025.06.16-10.30.53:075][454]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 51 +[2025.06.16-10.30.53:077][454]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.30.53:078][454]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.30.53 +[2025.06.16-10.30.53:079][454]LogWorld: Bringing up level for play took: 0.001290 +[2025.06.16-10.30.53:082][454]LogOnline: OSS: Created online subsystem instance for: :Context_63 +[2025.06.16-10.30.53:083][454]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.30.53:083][454]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.30.53:084][454]PIE: Server logged in +[2025.06.16-10.30.53:085][454]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.30.53:643][509]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=903.000 Y=514.000 +[2025.06.16-10.30.53:643][509]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1279.401 Y=581.156 +[2025.06.16-10.30.54:802][646]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=664.000 Y=510.000 +[2025.06.16-10.30.54:803][646]LogBlueprintUserMessages: [WBP_SkillCard_C_1] X=943.844 Y=578.301 +[2025.06.16-10.30.57:076][916]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=772.000 Y=536.000 +[2025.06.16-10.30.57:076][916]LogBlueprintUserMessages: [WBP_SkillCard_C_2] X=1088.062 Y=622.566 +[2025.06.16-10.30.57:898][ 3]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.57:898][ 3]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.30.57:899][ 3]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.30.57:899][ 3]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.57:899][ 3]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.30.57:904][ 3]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.30.57:908][ 3]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.30.57:927][ 3]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.30.57:927][ 3]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 51 +[2025.06.16-10.30.57:927][ 3]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=51 +[2025.06.16-10.30.57:929][ 3]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=51 +[2025.06.16-10.30.57:932][ 3]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.30.57:934][ 3]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.30.57:993][ 4]LogPlayLevel: Display: Destroying online subsystem :Context_63 +[2025.06.16-10.31.15:033][919]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.16-10.31.16:142][ 13]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.31.16:147][ 13]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.31.16:147][ 13]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.31.16:149][ 13]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.292 ms (total: 65.398 ms) +[2025.06.16-10.31.16:149][ 13]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.31.16:149][ 13]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.31.16:151][ 13]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002217s) +[2025.06.16-10.31.16:151][ 13]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002389s) +[2025.06.16-10.31.16:163][ 13]LogUObjectHash: Compacting FUObjectHashTables data took 1.02ms +[2025.06.16-10.31.16:167][ 13]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.31.16:168][ 13]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.31.16:168][ 13]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.31.16:168][ 13]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.31.16:169][ 13]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.31.16:169][ 13]LogWorldPartition: Display: WorldPartition initialize took 1.026 ms (total: 139.359 ms) +[2025.06.16-10.31.16:170][ 13]LogPlayLevel: PIE: World Init took: (0.002430s) +[2025.06.16-10.31.16:170][ 13]LogAudio: Display: Creating Audio Device: Id: 52, Scope: Unique, Realtime: True +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.31.16:170][ 13]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.31.16:170][ 13]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.31.16:170][ 13]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.31.16:170][ 13]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.31.16:170][ 13]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.31.16:172][ 13]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.31.16:198][ 13]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.31.16:198][ 13]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.31.16:198][ 13]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.31.16:198][ 13]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.31.16:199][ 13]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=52 +[2025.06.16-10.31.16:199][ 13]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=52 +[2025.06.16-10.31.16:201][ 13]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=52 +[2025.06.16-10.31.16:201][ 13]LogInit: FAudioDevice initialized with ID 52. +[2025.06.16-10.31.16:201][ 13]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=52 +[2025.06.16-10.31.16:201][ 13]LogAudio: Display: Audio Device (ID: 52) registered with world 'Dabaza'. +[2025.06.16-10.31.16:201][ 13]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 52 +[2025.06.16-10.31.16:203][ 13]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.31.16:204][ 13]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.31.16 +[2025.06.16-10.31.16:205][ 13]LogWorld: Bringing up level for play took: 0.001150 +[2025.06.16-10.31.16:207][ 13]LogOnline: OSS: Created online subsystem instance for: :Context_64 +[2025.06.16-10.31.16:209][ 13]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.31.16:209][ 13]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.31.16:210][ 13]PIE: Server logged in +[2025.06.16-10.31.16:211][ 13]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.31.24:139][950]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.31.26:137][189]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.31.31:142][787]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.31.32:838][984]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.31.32:838][984]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.31.32:838][984]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.31.32:839][984]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.31.32:839][984]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.31.32:842][984]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.31.32:847][984]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.31.32:863][984]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.31.32:863][984]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 52 +[2025.06.16-10.31.32:863][984]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=52 +[2025.06.16-10.31.32:865][984]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=52 +[2025.06.16-10.31.32:867][984]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.31.32:869][984]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.31.32:933][985]LogPlayLevel: Display: Destroying online subsystem :Context_64 +[2025.06.16-10.34.38:026][ 44]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-10.34.38:938][125]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.34.38:944][125]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.34.38:944][125]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.34.38:945][125]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.414 ms (total: 66.812 ms) +[2025.06.16-10.34.38:947][125]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.34.38:947][125]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.34.38:949][125]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002296s) +[2025.06.16-10.34.38:949][125]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002465s) +[2025.06.16-10.34.38:961][125]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.34.38:966][125]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.34.38:967][125]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.34.38:967][125]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.34.38:967][125]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.34.38:967][125]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.34.38:968][125]LogWorldPartition: Display: WorldPartition initialize took 1.166 ms (total: 140.525 ms) +[2025.06.16-10.34.38:968][125]LogPlayLevel: PIE: World Init took: (0.002620s) +[2025.06.16-10.34.38:969][125]LogAudio: Display: Creating Audio Device: Id: 53, Scope: Unique, Realtime: True +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.34.38:969][125]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.34.38:969][125]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.34.38:969][125]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.34.38:970][125]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.34.38:970][125]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.34.38:971][125]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.34.38:997][125]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.34.38:998][125]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.34.38:998][125]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.34.38:998][125]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.34.38:998][125]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=53 +[2025.06.16-10.34.38:998][125]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=53 +[2025.06.16-10.34.39:001][125]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=53 +[2025.06.16-10.34.39:001][125]LogInit: FAudioDevice initialized with ID 53. +[2025.06.16-10.34.39:001][125]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=53 +[2025.06.16-10.34.39:001][125]LogAudio: Display: Audio Device (ID: 53) registered with world 'Dabaza'. +[2025.06.16-10.34.39:001][125]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 53 +[2025.06.16-10.34.39:003][125]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.34.39:005][125]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.34.39 +[2025.06.16-10.34.39:005][125]LogWorld: Bringing up level for play took: 0.001258 +[2025.06.16-10.34.39:007][125]LogOnline: OSS: Created online subsystem instance for: :Context_65 +[2025.06.16-10.34.39:009][125]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.34.39:009][125]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.34.39:010][125]PIE: Server logged in +[2025.06.16-10.34.39:011][125]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.34.41:458][396]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.34.41:458][396]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.34.41:459][396]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.34.41:459][396]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.34.41:459][396]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.34.41:462][396]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.34.41:465][396]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.34.41:481][396]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.34.41:481][396]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 53 +[2025.06.16-10.34.41:481][396]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=53 +[2025.06.16-10.34.41:483][396]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=53 +[2025.06.16-10.34.41:487][396]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.34.41:489][396]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.34.41:551][397]LogPlayLevel: Display: Destroying online subsystem :Context_65 +[2025.06.16-10.34.44:649][757]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3654.407715 +[2025.06.16-10.34.45:447][842]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.34.45:448][842]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3655.198242, Update Interval: 324.183472 +[2025.06.16-10.34.46:861][995]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.34.46:867][995]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.34.46:867][995]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.34.46:868][995]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.338 ms (total: 68.150 ms) +[2025.06.16-10.34.46:868][995]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.34.46:868][995]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.34.46:871][995]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002224s) +[2025.06.16-10.34.46:871][995]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002387s) +[2025.06.16-10.34.46:883][995]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.34.46:885][995]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.34.46:887][995]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.34.46:887][995]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.34.46:887][995]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.34.46:887][995]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.34.46:887][995]LogWorldPartition: Display: WorldPartition initialize took 1.060 ms (total: 141.586 ms) +[2025.06.16-10.34.46:887][995]LogPlayLevel: PIE: World Init took: (0.002501s) +[2025.06.16-10.34.46:888][995]LogAudio: Display: Creating Audio Device: Id: 54, Scope: Unique, Realtime: True +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.34.46:888][995]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.34.46:888][995]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.34.46:889][995]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.34.46:889][995]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.34.46:889][995]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.34.46:891][995]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.34.46:915][995]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.34.46:915][995]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.34.46:915][995]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.34.46:915][995]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.34.46:917][995]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=54 +[2025.06.16-10.34.46:917][995]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=54 +[2025.06.16-10.34.46:919][995]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=54 +[2025.06.16-10.34.46:919][995]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=54 +[2025.06.16-10.34.46:919][995]LogInit: FAudioDevice initialized with ID 54. +[2025.06.16-10.34.46:919][995]LogAudio: Display: Audio Device (ID: 54) registered with world 'Dabaza'. +[2025.06.16-10.34.46:919][995]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 54 +[2025.06.16-10.34.46:922][995]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.34.46:923][995]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.34.46 +[2025.06.16-10.34.46:923][995]LogWorld: Bringing up level for play took: 0.001252 +[2025.06.16-10.34.46:926][995]LogOnline: OSS: Created online subsystem instance for: :Context_66 +[2025.06.16-10.34.46:927][995]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.34.46:927][995]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.34.46:928][995]PIE: Server logged in +[2025.06.16-10.34.46:929][995]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-10.34.47:339][ 35]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetPosition', from offset 852 +[2025.06.16-10.34.47:339][ 35]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillEffect.WBP_SkillEffect_C:Construct + Function /Game/UI/WBP_SkillEffect.WBP_SkillEffect_C:ExecuteUbergraph_WBP_SkillEffect + +[2025.06.16-10.34.50:644][ 35]LogAutomationController: Ignoring very large delta of 3.31 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.34.51:755][161]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetPosition', from offset 852 +[2025.06.16-10.34.51:755][161]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillEffect.WBP_SkillEffect_C:Construct + Function /Game/UI/WBP_SkillEffect.WBP_SkillEffect_C:ExecuteUbergraph_WBP_SkillEffect + +[2025.06.16-10.34.53:274][161]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillEffect.WBP_SkillEffect without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.34.53:274][161]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillEffect.WBP_SkillEffect without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.34.55:365][161]LogAutomationController: Ignoring very large delta of 3.61 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.34.55:365][162]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.34.56:858][332]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.34.57:738][430]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.34.57:738][430]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.34.57:739][430]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.34.57:739][430]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.34.57:739][430]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.34.57:742][430]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.34.57:745][430]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.34.57:760][430]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.34.57:760][430]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 54 +[2025.06.16-10.34.57:760][430]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=54 +[2025.06.16-10.34.57:762][430]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=54 +[2025.06.16-10.34.57:767][430]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.34.57:830][431]LogPlayLevel: Display: Destroying online subsystem :Context_66 +[2025.06.16-10.35.07:341][464]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.35.07:830][488]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.35.07:906][488]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffect] ([2] browsable assets)... +[2025.06.16-10.35.07:908][488]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffect.WBP_SkillEffect] +[2025.06.16-10.35.07:908][488]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffect] +[2025.06.16-10.35.07:908][488]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffect" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset" SILENT=true +[2025.06.16-10.35.07:913][488]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffect +[2025.06.16-10.35.07:913][488]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectB85C62E441FF24EFA8DD2185A334F7DB.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset' +[2025.06.16-10.35.07:924][488]LogFileHelpers: InternalPromptForCheckoutAndSave took 94.082 ms (total: 2.17 sec) +[2025.06.16-10.35.07:977][488]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.35.07:977][488]LogContentValidation: Enabled validators: +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.35.07:977][488]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.35.07:977][488]AssetCheck: /Game/UI/WBP_SkillEffect Validating asset +[2025.06.16-10.35.48:026][949]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-10.36.13:884][965]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.36.14:850][ 33]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.36.14:856][ 33]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.36.14:856][ 33]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.36.14:857][ 33]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.321 ms (total: 69.472 ms) +[2025.06.16-10.36.14:858][ 33]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.36.14:858][ 33]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.36.14:860][ 33]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002233s) +[2025.06.16-10.36.14:860][ 33]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002379s) +[2025.06.16-10.36.14:875][ 33]LogUObjectHash: Compacting FUObjectHashTables data took 1.03ms +[2025.06.16-10.36.14:880][ 33]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.36.14:881][ 33]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.36.14:881][ 33]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.36.14:881][ 33]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.36.14:881][ 33]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.36.14:882][ 33]LogWorldPartition: Display: WorldPartition initialize took 984 us (total: 142.570 ms) +[2025.06.16-10.36.14:882][ 33]LogPlayLevel: PIE: World Init took: (0.002354s) +[2025.06.16-10.36.14:883][ 33]LogAudio: Display: Creating Audio Device: Id: 55, Scope: Unique, Realtime: True +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.36.14:883][ 33]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.36.14:883][ 33]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.36.14:883][ 33]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.36.14:883][ 33]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.36.14:883][ 33]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.36.14:885][ 33]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=55 +[2025.06.16-10.36.14:910][ 33]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=55 +[2025.06.16-10.36.14:913][ 33]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=55 +[2025.06.16-10.36.14:913][ 33]LogInit: FAudioDevice initialized with ID 55. +[2025.06.16-10.36.14:913][ 33]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=55 +[2025.06.16-10.36.14:913][ 33]LogAudio: Display: Audio Device (ID: 55) registered with world 'Dabaza'. +[2025.06.16-10.36.14:913][ 33]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 55 +[2025.06.16-10.36.14:915][ 33]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.36.14:917][ 33]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.36.14 +[2025.06.16-10.36.14:918][ 33]LogWorld: Bringing up level for play took: 0.001326 +[2025.06.16-10.36.14:920][ 33]LogOnline: OSS: Created online subsystem instance for: :Context_67 +[2025.06.16-10.36.14:922][ 33]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.36.14:922][ 33]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.36.14:922][ 33]PIE: Server logged in +[2025.06.16-10.36.14:923][ 33]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.36.20:308][653]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.36.20:308][653]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.36.20:308][653]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.36.20:308][653]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.36.20:308][653]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.36.20:311][653]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.36.20:315][653]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.36.20:334][653]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.36.20:334][653]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 55 +[2025.06.16-10.36.20:334][653]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=55 +[2025.06.16-10.36.20:336][653]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=55 +[2025.06.16-10.36.20:338][653]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.36.20:340][653]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.36.20:403][654]LogPlayLevel: Display: Destroying online subsystem :Context_67 +[2025.06.16-10.37.06:266][941]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.37.06:772][966]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.37.06:828][966]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.37.06:829][966]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.37.06:829][966]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.37.06:829][966]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.37.06:840][966]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.37.06:841][966]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard8A3F084041E954A98155D19BC1030B99.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.37.06:853][966]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.309 ms (total: 2.25 sec) +[2025.06.16-10.37.06:908][966]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.37.06:908][966]LogContentValidation: Enabled validators: +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.37.06:908][966]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.37.06:908][966]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.37.07:887][ 70]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.37.07:893][ 70]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.37.07:893][ 70]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.37.07:895][ 70]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.315 ms (total: 70.787 ms) +[2025.06.16-10.37.07:895][ 70]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.37.07:895][ 70]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.37.07:897][ 70]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002148s) +[2025.06.16-10.37.07:897][ 70]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002297s) +[2025.06.16-10.37.07:912][ 70]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.37.07:917][ 70]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.37.07:918][ 70]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.37.07:918][ 70]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.37.07:918][ 70]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.37.07:918][ 70]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.37.07:919][ 70]LogWorldPartition: Display: WorldPartition initialize took 1.113 ms (total: 143.683 ms) +[2025.06.16-10.37.07:919][ 70]LogPlayLevel: PIE: World Init took: (0.002644s) +[2025.06.16-10.37.07:919][ 70]LogAudio: Display: Creating Audio Device: Id: 56, Scope: Unique, Realtime: True +[2025.06.16-10.37.07:919][ 70]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.37.07:919][ 70]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.37.07:920][ 70]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.37.07:920][ 70]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.37.07:920][ 70]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.37.07:920][ 70]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.37.07:920][ 70]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.37.07:920][ 70]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.37.07:920][ 70]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.37.07:920][ 70]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.37.07:920][ 70]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.37.07:922][ 70]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.37.07:947][ 70]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.37.07:947][ 70]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.37.07:947][ 70]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.37.07:947][ 70]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.37.07:948][ 70]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=56 +[2025.06.16-10.37.07:948][ 70]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=56 +[2025.06.16-10.37.07:950][ 70]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=56 +[2025.06.16-10.37.07:950][ 70]LogInit: FAudioDevice initialized with ID 56. +[2025.06.16-10.37.07:950][ 70]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=56 +[2025.06.16-10.37.07:950][ 70]LogAudio: Display: Audio Device (ID: 56) registered with world 'Dabaza'. +[2025.06.16-10.37.07:950][ 70]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 56 +[2025.06.16-10.37.07:953][ 70]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.37.07:954][ 70]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.37.07 +[2025.06.16-10.37.07:955][ 70]LogWorld: Bringing up level for play took: 0.001157 +[2025.06.16-10.37.07:957][ 70]LogOnline: OSS: Created online subsystem instance for: :Context_68 +[2025.06.16-10.37.07:959][ 70]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.37.07:959][ 70]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.37.07:959][ 70]PIE: Server logged in +[2025.06.16-10.37.07:960][ 70]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.37.11:258][443]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.37.11:258][443]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.37.11:259][443]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.37.11:259][443]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.37.11:259][443]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.37.11:261][443]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.37.11:265][443]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.37.11:283][443]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.37.11:283][443]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 56 +[2025.06.16-10.37.11:283][443]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=56 +[2025.06.16-10.37.11:285][443]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=56 +[2025.06.16-10.37.11:288][443]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.37.11:289][443]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.37.11:350][444]LogPlayLevel: Display: Destroying online subsystem :Context_68 +[2025.06.16-10.37.43:730][ 11]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.37.45:252][147]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.37.45:259][147]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.37.45:259][147]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.37.45:260][147]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.311 ms (total: 72.099 ms) +[2025.06.16-10.37.45:260][147]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.37.45:261][147]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.37.45:263][147]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002162s) +[2025.06.16-10.37.45:263][147]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002324s) +[2025.06.16-10.37.45:277][147]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.37.45:280][147]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.37.45:281][147]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.37.45:281][147]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.37.45:281][147]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.37.45:281][147]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.37.45:282][147]LogWorldPartition: Display: WorldPartition initialize took 1.166 ms (total: 144.849 ms) +[2025.06.16-10.37.45:282][147]LogPlayLevel: PIE: World Init took: (0.002496s) +[2025.06.16-10.37.45:283][147]LogAudio: Display: Creating Audio Device: Id: 57, Scope: Unique, Realtime: True +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.37.45:283][147]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.37.45:283][147]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.37.45:283][147]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.37.45:283][147]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.37.45:283][147]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.37.45:285][147]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.37.45:311][147]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.37.45:312][147]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.37.45:312][147]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.37.45:312][147]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.37.45:312][147]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=57 +[2025.06.16-10.37.45:312][147]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=57 +[2025.06.16-10.37.45:315][147]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=57 +[2025.06.16-10.37.45:315][147]LogInit: FAudioDevice initialized with ID 57. +[2025.06.16-10.37.45:315][147]LogAudio: Display: Audio Device (ID: 57) registered with world 'Dabaza'. +[2025.06.16-10.37.45:315][147]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=57 +[2025.06.16-10.37.45:315][147]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 57 +[2025.06.16-10.37.45:317][147]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.37.45:318][147]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.37.45 +[2025.06.16-10.37.45:318][147]LogWorld: Bringing up level for play took: 0.001294 +[2025.06.16-10.37.45:321][147]LogOnline: OSS: Created online subsystem instance for: :Context_69 +[2025.06.16-10.37.45:323][147]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.37.45:323][147]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.37.45:324][147]PIE: Server logged in +[2025.06.16-10.37.45:325][147]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.37.50:158][704]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.37.50:159][704]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.37.50:159][704]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.37.50:159][704]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.37.50:159][704]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.37.50:162][704]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.37.50:167][704]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.37.50:187][704]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.37.50:187][704]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 57 +[2025.06.16-10.37.50:187][704]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=57 +[2025.06.16-10.37.50:189][704]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=57 +[2025.06.16-10.37.50:192][704]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.37.50:193][704]LogUObjectHash: Compacting FUObjectHashTables data took 0.98ms +[2025.06.16-10.37.50:256][705]LogPlayLevel: Display: Destroying online subsystem :Context_69 +[2025.06.16-10.38.13:043][268]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.38.14:200][366]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.38.14:205][366]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.38.14:205][366]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.38.14:205][366]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.238 ms (total: 73.337 ms) +[2025.06.16-10.38.14:207][366]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.38.14:207][366]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.38.14:209][366]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002154s) +[2025.06.16-10.38.14:209][366]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002307s) +[2025.06.16-10.38.14:223][366]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.38.14:227][366]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.38.14:229][366]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.38.14:229][366]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.38.14:229][366]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.38.14:229][366]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.38.14:230][366]LogWorldPartition: Display: WorldPartition initialize took 955 us (total: 145.805 ms) +[2025.06.16-10.38.14:230][366]LogPlayLevel: PIE: World Init took: (0.002306s) +[2025.06.16-10.38.14:230][366]LogAudio: Display: Creating Audio Device: Id: 58, Scope: Unique, Realtime: True +[2025.06.16-10.38.14:230][366]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.38.14:230][366]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.38.14:230][366]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.38.14:231][366]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.38.14:231][366]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.38.14:231][366]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.38.14:231][366]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.38.14:231][366]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.38.14:231][366]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.38.14:231][366]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.38.14:231][366]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.38.14:233][366]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.38.14:258][366]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.38.14:259][366]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.38.14:259][366]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.38.14:259][366]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.38.14:259][366]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=58 +[2025.06.16-10.38.14:259][366]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=58 +[2025.06.16-10.38.14:261][366]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=58 +[2025.06.16-10.38.14:261][366]LogInit: FAudioDevice initialized with ID 58. +[2025.06.16-10.38.14:261][366]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=58 +[2025.06.16-10.38.14:261][366]LogAudio: Display: Audio Device (ID: 58) registered with world 'Dabaza'. +[2025.06.16-10.38.14:261][366]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 58 +[2025.06.16-10.38.14:264][366]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.38.14:265][366]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.38.14 +[2025.06.16-10.38.14:265][366]LogWorld: Bringing up level for play took: 0.001139 +[2025.06.16-10.38.14:268][366]LogOnline: OSS: Created online subsystem instance for: :Context_70 +[2025.06.16-10.38.14:270][366]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.38.14:270][366]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.38.14:270][366]PIE: Server logged in +[2025.06.16-10.38.14:271][366]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.38.16:928][667]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.38.16:928][667]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.38.16:928][667]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.38.16:928][667]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.38.16:928][667]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.38.16:931][667]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.38.16:935][667]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.38.16:955][667]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.38.16:955][667]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 58 +[2025.06.16-10.38.16:955][667]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=58 +[2025.06.16-10.38.16:957][667]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=58 +[2025.06.16-10.38.16:961][667]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.38.16:962][667]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.38.17:023][668]LogPlayLevel: Display: Destroying online subsystem :Context_70 +[2025.06.16-10.38.21:305][145]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.38.21:311][145]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.38.21:311][145]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.38.21:312][145]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.283 ms (total: 74.620 ms) +[2025.06.16-10.38.21:312][145]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.38.21:312][145]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.38.21:314][145]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002169s) +[2025.06.16-10.38.21:314][145]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002302s) +[2025.06.16-10.38.21:329][145]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.38.21:331][145]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.38.21:333][145]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.38.21:333][145]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.38.21:333][145]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.38.21:333][145]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.38.21:334][145]LogWorldPartition: Display: WorldPartition initialize took 1.056 ms (total: 146.861 ms) +[2025.06.16-10.38.21:334][145]LogPlayLevel: PIE: World Init took: (0.002386s) +[2025.06.16-10.38.21:335][145]LogAudio: Display: Creating Audio Device: Id: 59, Scope: Unique, Realtime: True +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.38.21:335][145]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.38.21:335][145]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.38.21:335][145]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.38.21:335][145]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.38.21:335][145]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.38.21:337][145]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.38.21:361][145]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.38.21:362][145]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.38.21:362][145]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.38.21:362][145]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.38.21:362][145]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=59 +[2025.06.16-10.38.21:362][145]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=59 +[2025.06.16-10.38.21:365][145]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=59 +[2025.06.16-10.38.21:365][145]LogInit: FAudioDevice initialized with ID 59. +[2025.06.16-10.38.21:365][145]LogAudio: Display: Audio Device (ID: 59) registered with world 'Dabaza'. +[2025.06.16-10.38.21:365][145]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=59 +[2025.06.16-10.38.21:365][145]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 59 +[2025.06.16-10.38.21:367][145]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.38.21:368][145]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.38.21 +[2025.06.16-10.38.21:368][145]LogWorld: Bringing up level for play took: 0.001226 +[2025.06.16-10.38.21:370][145]LogOnline: OSS: Created online subsystem instance for: :Context_71 +[2025.06.16-10.38.21:373][145]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.38.21:373][145]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.38.21:374][145]PIE: Server logged in +[2025.06.16-10.38.21:375][145]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.38.22:134][227]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 316 +[2025.06.16-10.38.22:134][227]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-10.38.25:741][227]LogAutomationController: Ignoring very large delta of 3.61 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.38.28:468][528]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.38.28:468][528]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.38.28:468][528]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.38.28:469][528]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.38.28:469][528]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.38.28:471][528]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.38.28:475][528]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.38.28:492][528]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.38.28:492][528]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 59 +[2025.06.16-10.38.28:492][528]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=59 +[2025.06.16-10.38.28:494][528]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=59 +[2025.06.16-10.38.28:499][528]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.38.28:559][529]LogPlayLevel: Display: Destroying online subsystem :Context_71 +[2025.06.16-10.38.42:472][ 74]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.38.43:606][170]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.38.43:611][170]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.38.43:611][170]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.38.43:613][170]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.345 ms (total: 75.966 ms) +[2025.06.16-10.38.43:613][170]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.38.43:613][170]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.38.43:615][170]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002140s) +[2025.06.16-10.38.43:615][170]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002296s) +[2025.06.16-10.38.43:628][170]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.38.43:632][170]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.38.43:633][170]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.38.43:633][170]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.38.43:633][170]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.38.43:633][170]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.38.43:634][170]LogWorldPartition: Display: WorldPartition initialize took 992 us (total: 147.854 ms) +[2025.06.16-10.38.43:634][170]LogPlayLevel: PIE: World Init took: (0.002328s) +[2025.06.16-10.38.43:634][170]LogAudio: Display: Creating Audio Device: Id: 60, Scope: Unique, Realtime: True +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.38.43:635][170]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.38.43:635][170]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.38.43:635][170]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.38.43:635][170]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.38.43:635][170]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.38.43:638][170]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.38.43:662][170]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.38.43:663][170]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.38.43:663][170]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.38.43:663][170]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.38.43:663][170]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=60 +[2025.06.16-10.38.43:663][170]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=60 +[2025.06.16-10.38.43:665][170]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=60 +[2025.06.16-10.38.43:666][170]LogInit: FAudioDevice initialized with ID 60. +[2025.06.16-10.38.43:666][170]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=60 +[2025.06.16-10.38.43:666][170]LogAudio: Display: Audio Device (ID: 60) registered with world 'Dabaza'. +[2025.06.16-10.38.43:666][170]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 60 +[2025.06.16-10.38.43:668][170]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.38.43:669][170]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.38.43 +[2025.06.16-10.38.43:670][170]LogWorld: Bringing up level for play took: 0.001222 +[2025.06.16-10.38.43:671][170]LogOnline: OSS: Created online subsystem instance for: :Context_72 +[2025.06.16-10.38.43:674][170]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.38.43:674][170]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.38.43:675][170]PIE: Server logged in +[2025.06.16-10.38.43:676][170]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-10.38.44:250][230]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 316 +[2025.06.16-10.38.44:250][230]LogBlueprintDebug: +Script call stack: + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:OnMouseEnter + Function /Game/UI/WBP_SkillCard.WBP_SkillCard_C:ExecuteUbergraph_WBP_SkillCard + +[2025.06.16-10.38.55:534][230]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.38.55:534][230]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillCard.WBP_SkillCard without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.38.56:413][230]LogAutomationController: Ignoring very large delta of 12.16 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.38.56:415][231]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.38.56:415][231]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.38.56:454][234]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.16-10.39.01:498][821]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.01:498][821]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.39.01:498][821]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.39.01:498][821]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.01:498][821]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.39.01:501][821]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.39.01:506][821]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.01:523][821]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.39.01:523][821]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 60 +[2025.06.16-10.39.01:524][821]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=60 +[2025.06.16-10.39.01:525][821]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=60 +[2025.06.16-10.39.01:529][821]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.01:532][821]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.39.01:593][822]LogPlayLevel: Display: Destroying online subsystem :Context_72 +[2025.06.16-10.39.07:524][500]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.39.08:457][558]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.39.08:462][558]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.39.08:462][558]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.39.08:463][558]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.349 ms (total: 77.315 ms) +[2025.06.16-10.39.08:463][558]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.39.08:464][558]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.39.08:467][558]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002314s) +[2025.06.16-10.39.08:467][558]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002483s) +[2025.06.16-10.39.08:481][558]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.39.08:485][558]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.39.08:487][558]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.39.08:487][558]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.39.08:487][558]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.39.08:487][558]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.39.08:488][558]LogWorldPartition: Display: WorldPartition initialize took 1.038 ms (total: 148.893 ms) +[2025.06.16-10.39.08:488][558]LogPlayLevel: PIE: World Init took: (0.002480s) +[2025.06.16-10.39.08:488][558]LogAudio: Display: Creating Audio Device: Id: 61, Scope: Unique, Realtime: True +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.39.08:489][558]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.39.08:489][558]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.39.08:489][558]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.39.08:489][558]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.39.08:489][558]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.39.08:492][558]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.39.08:515][558]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.39.08:516][558]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.39.08:516][558]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.39.08:516][558]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.39.08:516][558]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=61 +[2025.06.16-10.39.08:516][558]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=61 +[2025.06.16-10.39.08:519][558]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=61 +[2025.06.16-10.39.08:519][558]LogInit: FAudioDevice initialized with ID 61. +[2025.06.16-10.39.08:519][558]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=61 +[2025.06.16-10.39.08:519][558]LogAudio: Display: Audio Device (ID: 61) registered with world 'Dabaza'. +[2025.06.16-10.39.08:519][558]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 61 +[2025.06.16-10.39.08:522][558]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.39.08:523][558]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.39.08 +[2025.06.16-10.39.08:523][558]LogWorld: Bringing up level for play took: 0.001227 +[2025.06.16-10.39.08:525][558]LogOnline: OSS: Created online subsystem instance for: :Context_73 +[2025.06.16-10.39.08:528][558]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.39.08:528][558]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.39.08:529][558]PIE: Server logged in +[2025.06.16-10.39.08:530][558]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.39.12:978][ 70]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.12:978][ 70]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.39.12:978][ 70]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.39.12:978][ 70]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.12:978][ 70]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.39.12:982][ 70]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.39.12:986][ 70]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.13:004][ 70]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.39.13:004][ 70]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 61 +[2025.06.16-10.39.13:004][ 70]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=61 +[2025.06.16-10.39.13:007][ 70]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=61 +[2025.06.16-10.39.13:010][ 70]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.13:012][ 70]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.39.13:073][ 71]LogPlayLevel: Display: Destroying online subsystem :Context_73 +[2025.06.16-10.39.50:897][388]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.39.51:437][421]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.39.51:501][421]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.39.51:504][421]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.39.51:504][421]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.39.51:504][421]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.39.51:515][421]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.39.51:516][421]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardEDA213584E4FA270EC92279346C0C27C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.39.51:527][421]LogFileHelpers: InternalPromptForCheckoutAndSave took 88.644 ms (total: 2.34 sec) +[2025.06.16-10.39.51:580][421]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.39.51:580][421]LogContentValidation: Enabled validators: +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.39.51:580][421]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.39.51:581][421]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.39.52:490][513]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.39.52:495][513]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.39.52:495][513]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.39.52:497][513]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.218 ms (total: 78.534 ms) +[2025.06.16-10.39.52:497][513]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.39.52:497][513]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.39.52:499][513]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002216s) +[2025.06.16-10.39.52:499][513]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002354s) +[2025.06.16-10.39.52:514][513]LogUObjectHash: Compacting FUObjectHashTables data took 1.05ms +[2025.06.16-10.39.52:519][513]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.39.52:520][513]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.39.52:520][513]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.39.52:520][513]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.39.52:521][513]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.39.52:521][513]LogWorldPartition: Display: WorldPartition initialize took 1.029 ms (total: 149.923 ms) +[2025.06.16-10.39.52:522][513]LogPlayLevel: PIE: World Init took: (0.002558s) +[2025.06.16-10.39.52:522][513]LogAudio: Display: Creating Audio Device: Id: 62, Scope: Unique, Realtime: True +[2025.06.16-10.39.52:522][513]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.39.52:522][513]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.39.52:522][513]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.39.52:522][513]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.39.52:523][513]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.39.52:523][513]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.39.52:523][513]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.39.52:523][513]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.39.52:523][513]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.39.52:523][513]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.39.52:523][513]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.39.52:525][513]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.39.52:551][513]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.39.52:551][513]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.39.52:551][513]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.39.52:551][513]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.39.52:551][513]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=62 +[2025.06.16-10.39.52:552][513]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=62 +[2025.06.16-10.39.52:554][513]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=62 +[2025.06.16-10.39.52:554][513]LogInit: FAudioDevice initialized with ID 62. +[2025.06.16-10.39.52:554][513]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=62 +[2025.06.16-10.39.52:554][513]LogAudio: Display: Audio Device (ID: 62) registered with world 'Dabaza'. +[2025.06.16-10.39.52:554][513]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 62 +[2025.06.16-10.39.52:556][513]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.39.52:557][513]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.39.52 +[2025.06.16-10.39.52:558][513]LogWorld: Bringing up level for play took: 0.001237 +[2025.06.16-10.39.52:560][513]LogOnline: OSS: Created online subsystem instance for: :Context_74 +[2025.06.16-10.39.52:562][513]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.39.52:562][513]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.39.52:562][513]PIE: Server logged in +[2025.06.16-10.39.52:563][513]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-10.39.55:518][849]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.55:518][849]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.39.55:518][849]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.39.55:518][849]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.55:518][849]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.39.55:521][849]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.39.55:525][849]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.39.55:541][849]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.39.55:541][849]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 62 +[2025.06.16-10.39.55:542][849]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=62 +[2025.06.16-10.39.55:543][849]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=62 +[2025.06.16-10.39.55:547][849]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.39.55:549][849]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-10.39.55:611][850]LogPlayLevel: Display: Destroying online subsystem :Context_74 +[2025.06.16-10.40.01:290][462]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.40.01:355][462]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-10.40.01:355][462]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-10.40.01:355][462]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-10.40.01:359][462]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-10.40.01:359][462]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectText343F05D34A2E13F08EB6FD8B41A2FA3E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-10.40.01:370][462]LogFileHelpers: InternalPromptForCheckoutAndSave took 79.786 ms (total: 2.42 sec) +[2025.06.16-10.40.01:420][462]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.40.01:420][462]LogContentValidation: Enabled validators: +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.40.01:420][462]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.40.01:421][462]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-10.40.05:040][869]LogUObjectHash: Compacting FUObjectHashTables data took 1.16ms +[2025.06.16-10.40.06:269][965]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.40.06:274][965]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.40.06:274][965]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.40.06:275][965]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.252 ms (total: 79.786 ms) +[2025.06.16-10.40.06:275][965]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.40.06:275][965]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.06:278][965]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002191s) +[2025.06.16-10.40.06:278][965]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002364s) +[2025.06.16-10.40.06:293][965]LogUObjectHash: Compacting FUObjectHashTables data took 0.94ms +[2025.06.16-10.40.06:295][965]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.40.06:297][965]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.40.06:297][965]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.40.06:297][965]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.40.06:297][965]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.40.06:297][965]LogWorldPartition: Display: WorldPartition initialize took 1.089 ms (total: 151.012 ms) +[2025.06.16-10.40.06:297][965]LogPlayLevel: PIE: World Init took: (0.002511s) +[2025.06.16-10.40.06:298][965]LogAudio: Display: Creating Audio Device: Id: 63, Scope: Unique, Realtime: True +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.40.06:298][965]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.40.06:298][965]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.40.06:299][965]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.40.06:299][965]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.40.06:299][965]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.40.06:302][965]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.40.06:326][965]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.40.06:327][965]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.40.06:327][965]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.40.06:327][965]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.40.06:327][965]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=63 +[2025.06.16-10.40.06:327][965]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=63 +[2025.06.16-10.40.06:330][965]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=63 +[2025.06.16-10.40.06:330][965]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=63 +[2025.06.16-10.40.06:330][965]LogInit: FAudioDevice initialized with ID 63. +[2025.06.16-10.40.06:330][965]LogAudio: Display: Audio Device (ID: 63) registered with world 'Dabaza'. +[2025.06.16-10.40.06:330][965]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 63 +[2025.06.16-10.40.06:332][965]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.40.06:333][965]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.40.06 +[2025.06.16-10.40.06:334][965]LogWorld: Bringing up level for play took: 0.001148 +[2025.06.16-10.40.06:336][965]LogOnline: OSS: Created online subsystem instance for: :Context_75 +[2025.06.16-10.40.06:337][965]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.40.06:337][965]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.40.06:338][965]PIE: Server logged in +[2025.06.16-10.40.06:339][965]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.40.14:262][895]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.40.16:270][132]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.40.17:018][215]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.17:018][215]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.17:019][215]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.40.17:019][215]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.17:019][215]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.40.17:022][215]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.40.17:026][215]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.17:046][215]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.40.17:046][215]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 63 +[2025.06.16-10.40.17:046][215]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=63 +[2025.06.16-10.40.17:047][215]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=63 +[2025.06.16-10.40.17:050][215]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.17:053][215]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.40.17:117][216]LogPlayLevel: Display: Destroying online subsystem :Context_75 +[2025.06.16-10.40.23:431][928]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.40.24:439][ 10]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.40.24:446][ 10]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.40.24:446][ 10]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.40.24:448][ 10]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.330 ms (total: 81.117 ms) +[2025.06.16-10.40.24:448][ 10]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.40.24:448][ 10]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.24:450][ 10]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002298s) +[2025.06.16-10.40.24:451][ 10]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002490s) +[2025.06.16-10.40.24:465][ 10]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.40.24:469][ 10]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.40.24:470][ 10]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.40.24:470][ 10]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.40.24:470][ 10]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.40.24:470][ 10]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.40.24:471][ 10]LogWorldPartition: Display: WorldPartition initialize took 1.027 ms (total: 152.039 ms) +[2025.06.16-10.40.24:471][ 10]LogPlayLevel: PIE: World Init took: (0.002582s) +[2025.06.16-10.40.24:472][ 10]LogAudio: Display: Creating Audio Device: Id: 64, Scope: Unique, Realtime: True +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.40.24:472][ 10]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.40.24:472][ 10]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.40.24:472][ 10]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.40.24:472][ 10]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.40.24:472][ 10]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.40.24:475][ 10]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.40.24:501][ 10]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.40.24:501][ 10]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.40.24:501][ 10]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.40.24:501][ 10]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.40.24:502][ 10]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=64 +[2025.06.16-10.40.24:502][ 10]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=64 +[2025.06.16-10.40.24:504][ 10]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=64 +[2025.06.16-10.40.24:504][ 10]LogInit: FAudioDevice initialized with ID 64. +[2025.06.16-10.40.24:504][ 10]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=64 +[2025.06.16-10.40.24:504][ 10]LogAudio: Display: Audio Device (ID: 64) registered with world 'Dabaza'. +[2025.06.16-10.40.24:504][ 10]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 64 +[2025.06.16-10.40.24:507][ 10]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.40.24:508][ 10]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.40.24 +[2025.06.16-10.40.24:509][ 10]LogWorld: Bringing up level for play took: 0.001272 +[2025.06.16-10.40.24:511][ 10]LogOnline: OSS: Created online subsystem instance for: :Context_76 +[2025.06.16-10.40.24:513][ 10]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.40.24:513][ 10]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.40.24:514][ 10]PIE: Server logged in +[2025.06.16-10.40.24:515][ 10]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-10.40.27:188][311]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.27:188][311]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.27:189][311]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.40.27:189][311]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.27:189][311]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.40.27:192][311]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.40.27:195][311]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.27:214][311]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.40.27:214][311]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 64 +[2025.06.16-10.40.27:214][311]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=64 +[2025.06.16-10.40.27:215][311]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=64 +[2025.06.16-10.40.27:220][311]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.27:222][311]LogUObjectHash: Compacting FUObjectHashTables data took 1.01ms +[2025.06.16-10.40.27:284][312]LogPlayLevel: Display: Destroying online subsystem :Context_76 +[2025.06.16-10.40.31:578][781]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.40.32:768][882]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.40.32:773][882]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.40.32:773][882]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.40.32:774][882]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.193 ms (total: 82.311 ms) +[2025.06.16-10.40.32:775][882]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.40.32:775][882]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.32:777][882]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002142s) +[2025.06.16-10.40.32:777][882]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002305s) +[2025.06.16-10.40.32:792][882]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.40.32:795][882]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.40.32:797][882]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.40.32:797][882]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.40.32:797][882]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.40.32:797][882]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.40.32:798][882]LogWorldPartition: Display: WorldPartition initialize took 1.146 ms (total: 153.185 ms) +[2025.06.16-10.40.32:798][882]LogPlayLevel: PIE: World Init took: (0.002646s) +[2025.06.16-10.40.32:798][882]LogAudio: Display: Creating Audio Device: Id: 65, Scope: Unique, Realtime: True +[2025.06.16-10.40.32:798][882]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.40.32:798][882]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.40.32:799][882]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.40.32:799][882]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.40.32:799][882]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.40.32:799][882]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.40.32:799][882]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.40.32:799][882]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.40.32:799][882]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.40.32:799][882]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.40.32:799][882]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.40.32:801][882]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.40.32:825][882]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.40.32:825][882]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.40.32:825][882]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.40.32:825][882]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.40.32:827][882]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=65 +[2025.06.16-10.40.32:827][882]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=65 +[2025.06.16-10.40.32:829][882]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=65 +[2025.06.16-10.40.32:829][882]LogInit: FAudioDevice initialized with ID 65. +[2025.06.16-10.40.32:829][882]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=65 +[2025.06.16-10.40.32:829][882]LogAudio: Display: Audio Device (ID: 65) registered with world 'Dabaza'. +[2025.06.16-10.40.32:829][882]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 65 +[2025.06.16-10.40.32:831][882]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.40.32:832][882]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.40.32 +[2025.06.16-10.40.32:833][882]LogWorld: Bringing up level for play took: 0.001172 +[2025.06.16-10.40.32:835][882]LogOnline: OSS: Created online subsystem instance for: :Context_77 +[2025.06.16-10.40.32:837][882]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.40.32:837][882]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.40.32:837][882]PIE: Server logged in +[2025.06.16-10.40.32:839][882]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.40.40:764][815]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.40.41:298][872]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.41:298][872]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.41:298][872]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.40.41:299][872]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.41:299][872]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.40.41:301][872]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.40.41:306][872]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.41:323][872]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.40.41:323][872]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 65 +[2025.06.16-10.40.41:323][872]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=65 +[2025.06.16-10.40.41:326][872]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=65 +[2025.06.16-10.40.41:329][872]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.41:330][872]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.40.41:390][873]LogPlayLevel: Display: Destroying online subsystem :Context_77 +[2025.06.16-10.40.50:662][899]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.40.51:633][974]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.40.51:638][974]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.40.51:638][974]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.40.51:639][974]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.191 ms (total: 83.502 ms) +[2025.06.16-10.40.51:639][974]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.40.51:639][974]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.51:641][974]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002123s) +[2025.06.16-10.40.51:641][974]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002268s) +[2025.06.16-10.40.51:657][974]LogUObjectHash: Compacting FUObjectHashTables data took 1.04ms +[2025.06.16-10.40.51:660][974]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.40.51:660][974]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.40.51:660][974]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.40.51:660][974]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.40.51:661][974]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.40.51:662][974]LogWorldPartition: Display: WorldPartition initialize took 1.253 ms (total: 154.439 ms) +[2025.06.16-10.40.51:662][974]LogPlayLevel: PIE: World Init took: (0.002723s) +[2025.06.16-10.40.51:662][974]LogAudio: Display: Creating Audio Device: Id: 66, Scope: Unique, Realtime: True +[2025.06.16-10.40.51:662][974]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.40.51:662][974]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.40.51:664][974]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.40.51:664][974]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.40.51:664][974]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.40.51:664][974]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.40.51:664][974]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.40.51:664][974]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.40.51:664][974]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.40.51:664][974]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.40.51:664][974]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.40.51:666][974]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.40.51:690][974]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.40.51:690][974]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.40.51:690][974]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.40.51:690][974]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.40.51:691][974]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=66 +[2025.06.16-10.40.51:691][974]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=66 +[2025.06.16-10.40.51:694][974]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=66 +[2025.06.16-10.40.51:694][974]LogInit: FAudioDevice initialized with ID 66. +[2025.06.16-10.40.51:694][974]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=66 +[2025.06.16-10.40.51:694][974]LogAudio: Display: Audio Device (ID: 66) registered with world 'Dabaza'. +[2025.06.16-10.40.51:694][974]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 66 +[2025.06.16-10.40.51:696][974]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.40.51:697][974]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.40.51 +[2025.06.16-10.40.51:698][974]LogWorld: Bringing up level for play took: 0.001276 +[2025.06.16-10.40.51:700][974]LogOnline: OSS: Created online subsystem instance for: :Context_78 +[2025.06.16-10.40.51:702][974]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.40.51:702][974]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.40.51:703][974]PIE: Server logged in +[2025.06.16-10.40.51:704][974]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.40.55:128][367]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.55:128][367]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.40.55:128][367]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.40.55:129][367]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.55:129][367]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.40.55:134][367]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.40.55:137][367]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.40.55:155][367]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.40.55:155][367]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 66 +[2025.06.16-10.40.55:157][367]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=66 +[2025.06.16-10.40.55:159][367]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=66 +[2025.06.16-10.40.55:162][367]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.40.55:164][367]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.40.55:225][368]LogPlayLevel: Display: Destroying online subsystem :Context_78 +[2025.06.16-10.41.01:489][ 79]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.41.02:513][159]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.41.02:518][159]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.41.02:518][159]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.41.02:519][159]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.239 ms (total: 84.741 ms) +[2025.06.16-10.41.02:520][159]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.41.02:520][159]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.02:522][159]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002193s) +[2025.06.16-10.41.02:522][159]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002358s) +[2025.06.16-10.41.02:537][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.41.02:539][159]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.41.02:541][159]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.41.02:541][159]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.41.02:541][159]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.41.02:541][159]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.41.02:542][159]LogWorldPartition: Display: WorldPartition initialize took 1.085 ms (total: 155.524 ms) +[2025.06.16-10.41.02:542][159]LogPlayLevel: PIE: World Init took: (0.002419s) +[2025.06.16-10.41.02:542][159]LogAudio: Display: Creating Audio Device: Id: 67, Scope: Unique, Realtime: True +[2025.06.16-10.41.02:542][159]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.41.02:543][159]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.41.02:543][159]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.41.02:543][159]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.41.02:543][159]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.41.02:543][159]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.41.02:545][159]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.41.02:570][159]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.41.02:570][159]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.41.02:570][159]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.41.02:570][159]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.41.02:571][159]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=67 +[2025.06.16-10.41.02:571][159]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=67 +[2025.06.16-10.41.02:573][159]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=67 +[2025.06.16-10.41.02:573][159]LogInit: FAudioDevice initialized with ID 67. +[2025.06.16-10.41.02:573][159]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=67 +[2025.06.16-10.41.02:573][159]LogAudio: Display: Audio Device (ID: 67) registered with world 'Dabaza'. +[2025.06.16-10.41.02:575][159]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 67 +[2025.06.16-10.41.02:577][159]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.41.02:577][159]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.41.02 +[2025.06.16-10.41.02:578][159]LogWorld: Bringing up level for play took: 0.001205 +[2025.06.16-10.41.02:580][159]LogOnline: OSS: Created online subsystem instance for: :Context_79 +[2025.06.16-10.41.02:582][159]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.41.02:582][159]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.41.02:583][159]PIE: Server logged in +[2025.06.16-10.41.02:584][159]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.41.05:962][547]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4035.725342 +[2025.06.16-10.41.06:242][580]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.41.06:242][580]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4035.998047, Update Interval: 305.971252 +[2025.06.16-10.41.10:512][ 90]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.41.12:514][327]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.41.13:178][398]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.13:179][398]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.13:179][398]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.41.13:179][398]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.13:179][398]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.41.13:182][398]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.41.13:187][398]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.13:207][398]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.41.13:207][398]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 67 +[2025.06.16-10.41.13:207][398]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=67 +[2025.06.16-10.41.13:209][398]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=67 +[2025.06.16-10.41.13:213][398]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.13:214][398]LogUObjectHash: Compacting FUObjectHashTables data took 0.98ms +[2025.06.16-10.41.13:275][399]LogPlayLevel: Display: Destroying online subsystem :Context_79 +[2025.06.16-10.41.22:146][419]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.41.23:234][510]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.41.23:240][510]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.41.23:240][510]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.41.23:241][510]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.258 ms (total: 86.000 ms) +[2025.06.16-10.41.23:241][510]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.41.23:241][510]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.23:244][510]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002221s) +[2025.06.16-10.41.23:244][510]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002376s) +[2025.06.16-10.41.23:259][510]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.41.23:262][510]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.41.23:263][510]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.41.23:263][510]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.41.23:263][510]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.41.23:263][510]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.41.23:264][510]LogWorldPartition: Display: WorldPartition initialize took 997 us (total: 156.522 ms) +[2025.06.16-10.41.23:264][510]LogPlayLevel: PIE: World Init took: (0.002335s) +[2025.06.16-10.41.23:264][510]LogAudio: Display: Creating Audio Device: Id: 68, Scope: Unique, Realtime: True +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.41.23:264][510]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.41.23:264][510]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.41.23:264][510]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.41.23:266][510]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.41.23:266][510]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.41.23:268][510]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.41.23:293][510]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.41.23:293][510]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.41.23:293][510]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.41.23:293][510]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.41.23:294][510]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=68 +[2025.06.16-10.41.23:294][510]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=68 +[2025.06.16-10.41.23:295][510]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=68 +[2025.06.16-10.41.23:297][510]LogInit: FAudioDevice initialized with ID 68. +[2025.06.16-10.41.23:297][510]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=68 +[2025.06.16-10.41.23:297][510]LogAudio: Display: Audio Device (ID: 68) registered with world 'Dabaza'. +[2025.06.16-10.41.23:297][510]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 68 +[2025.06.16-10.41.23:299][510]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.41.23:300][510]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.41.23 +[2025.06.16-10.41.23:300][510]LogWorld: Bringing up level for play took: 0.001171 +[2025.06.16-10.41.23:302][510]LogOnline: OSS: Created online subsystem instance for: :Context_80 +[2025.06.16-10.41.23:304][510]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.41.23:304][510]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.41.23:305][510]PIE: Server logged in +[2025.06.16-10.41.23:305][510]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.41.25:808][795]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.25:808][795]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.25:808][795]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.41.25:808][795]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.25:808][795]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.41.25:811][795]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.41.25:815][795]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.25:831][795]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.41.25:832][795]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 68 +[2025.06.16-10.41.25:832][795]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=68 +[2025.06.16-10.41.25:833][795]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=68 +[2025.06.16-10.41.25:837][795]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.25:839][795]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.41.25:902][796]LogPlayLevel: Display: Destroying online subsystem :Context_80 +[2025.06.16-10.41.30:661][322]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.41.31:856][414]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.41.31:861][414]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.41.31:861][414]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.41.31:862][414]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.289 ms (total: 87.289 ms) +[2025.06.16-10.41.31:862][414]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.41.31:862][414]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.31:865][414]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002286s) +[2025.06.16-10.41.31:865][414]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002468s) +[2025.06.16-10.41.31:880][414]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.41.31:883][414]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.41.31:884][414]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.41.31:884][414]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.41.31:884][414]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.41.31:884][414]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.41.31:886][414]LogWorldPartition: Display: WorldPartition initialize took 1.004 ms (total: 157.526 ms) +[2025.06.16-10.41.31:886][414]LogPlayLevel: PIE: World Init took: (0.002548s) +[2025.06.16-10.41.31:886][414]LogAudio: Display: Creating Audio Device: Id: 69, Scope: Unique, Realtime: True +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.41.31:887][414]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.41.31:887][414]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.41.31:887][414]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.41.31:887][414]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.41.31:887][414]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.41.31:889][414]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.41.31:914][414]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.41.31:914][414]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.41.31:914][414]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.41.31:914][414]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.41.31:915][414]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=69 +[2025.06.16-10.41.31:915][414]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=69 +[2025.06.16-10.41.31:918][414]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=69 +[2025.06.16-10.41.31:918][414]LogInit: FAudioDevice initialized with ID 69. +[2025.06.16-10.41.31:918][414]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=69 +[2025.06.16-10.41.31:918][414]LogAudio: Display: Audio Device (ID: 69) registered with world 'Dabaza'. +[2025.06.16-10.41.31:918][414]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 69 +[2025.06.16-10.41.31:920][414]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.41.31:921][414]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.41.31 +[2025.06.16-10.41.31:921][414]LogWorld: Bringing up level for play took: 0.001205 +[2025.06.16-10.41.31:923][414]LogOnline: OSS: Created online subsystem instance for: :Context_81 +[2025.06.16-10.41.31:925][414]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.41.31:925][414]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.41.31:925][414]PIE: Server logged in +[2025.06.16-10.41.31:928][414]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-10.41.35:478][818]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.35:478][818]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.35:478][818]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.41.35:478][818]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.35:479][818]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.41.35:481][818]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.41.35:486][818]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.35:504][818]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.41.35:504][818]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 69 +[2025.06.16-10.41.35:504][818]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=69 +[2025.06.16-10.41.35:506][818]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=69 +[2025.06.16-10.41.35:509][818]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.35:511][818]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.41.35:572][819]LogPlayLevel: Display: Destroying online subsystem :Context_81 +[2025.06.16-10.41.42:183][547]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-10.41.43:221][625]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.41.43:227][625]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.41.43:228][625]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.41.43:229][625]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.328 ms (total: 88.618 ms) +[2025.06.16-10.41.43:229][625]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.41.43:229][625]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.43:231][625]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002162s) +[2025.06.16-10.41.43:231][625]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002318s) +[2025.06.16-10.41.43:247][625]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.41.43:249][625]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.41.43:250][625]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.41.43:250][625]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.41.43:250][625]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.41.43:250][625]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.41.43:252][625]LogWorldPartition: Display: WorldPartition initialize took 1.053 ms (total: 158.580 ms) +[2025.06.16-10.41.43:252][625]LogPlayLevel: PIE: World Init took: (0.002451s) +[2025.06.16-10.41.43:253][625]LogAudio: Display: Creating Audio Device: Id: 70, Scope: Unique, Realtime: True +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.41.43:253][625]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.41.43:253][625]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.41.43:253][625]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.41.43:253][625]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.41.43:253][625]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.41.43:255][625]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.41.43:279][625]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.41.43:279][625]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.41.43:279][625]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.41.43:279][625]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.41.43:281][625]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=70 +[2025.06.16-10.41.43:281][625]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=70 +[2025.06.16-10.41.43:283][625]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=70 +[2025.06.16-10.41.43:283][625]LogInit: FAudioDevice initialized with ID 70. +[2025.06.16-10.41.43:283][625]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=70 +[2025.06.16-10.41.43:283][625]LogAudio: Display: Audio Device (ID: 70) registered with world 'Dabaza'. +[2025.06.16-10.41.43:283][625]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 70 +[2025.06.16-10.41.43:285][625]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.41.43:286][625]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.41.43 +[2025.06.16-10.41.43:287][625]LogWorld: Bringing up level for play took: 0.001337 +[2025.06.16-10.41.43:289][625]LogOnline: OSS: Created online subsystem instance for: :Context_82 +[2025.06.16-10.41.43:291][625]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.41.43:291][625]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.41.43:292][625]PIE: Server logged in +[2025.06.16-10.41.43:293][625]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.41.51:222][559]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.41.53:220][796]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.41.56:748][210]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.56:748][210]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.41.56:749][210]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.41.56:749][210]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.56:749][210]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.41.56:752][210]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.41.56:757][210]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.41.56:778][210]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.41.56:778][210]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 70 +[2025.06.16-10.41.56:778][210]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=70 +[2025.06.16-10.41.56:779][210]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=70 +[2025.06.16-10.41.56:783][210]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.41.56:785][210]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.41.56:848][211]LogPlayLevel: Display: Destroying online subsystem :Context_82 +[2025.06.16-10.42.21:502][ 82]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.42.22:754][180]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.42.22:760][180]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.42.22:760][180]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.42.22:761][180]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.295 ms (total: 89.913 ms) +[2025.06.16-10.42.22:761][180]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.42.22:761][180]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.42.22:763][180]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002154s) +[2025.06.16-10.42.22:763][180]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002294s) +[2025.06.16-10.42.22:778][180]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.42.22:781][180]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.42.22:782][180]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.42.22:782][180]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.42.22:782][180]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.42.22:782][180]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.42.22:783][180]LogWorldPartition: Display: WorldPartition initialize took 1.087 ms (total: 159.667 ms) +[2025.06.16-10.42.22:783][180]LogPlayLevel: PIE: World Init took: (0.002465s) +[2025.06.16-10.42.22:784][180]LogAudio: Display: Creating Audio Device: Id: 71, Scope: Unique, Realtime: True +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.42.22:784][180]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.42.22:784][180]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.42.22:784][180]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.42.22:784][180]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.42.22:784][180]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.42.22:787][180]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.42.22:812][180]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.42.22:812][180]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.42.22:813][180]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.42.22:813][180]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.42.22:813][180]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=71 +[2025.06.16-10.42.22:813][180]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=71 +[2025.06.16-10.42.22:815][180]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=71 +[2025.06.16-10.42.22:815][180]LogInit: FAudioDevice initialized with ID 71. +[2025.06.16-10.42.22:816][180]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=71 +[2025.06.16-10.42.22:816][180]LogAudio: Display: Audio Device (ID: 71) registered with world 'Dabaza'. +[2025.06.16-10.42.22:816][180]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 71 +[2025.06.16-10.42.22:818][180]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.42.22:819][180]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.42.22 +[2025.06.16-10.42.22:819][180]LogWorld: Bringing up level for play took: 0.001190 +[2025.06.16-10.42.22:822][180]LogOnline: OSS: Created online subsystem instance for: :Context_83 +[2025.06.16-10.42.22:824][180]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.42.22:824][180]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.42.22:825][180]PIE: Server logged in +[2025.06.16-10.42.22:826][180]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.42.29:488][959]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.42.29:488][959]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.42.29:488][959]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.42.29:488][959]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.42.29:489][959]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.42.29:492][959]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.42.29:497][959]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.42.29:512][959]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.42.29:512][959]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 71 +[2025.06.16-10.42.29:512][959]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=71 +[2025.06.16-10.42.29:514][959]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=71 +[2025.06.16-10.42.29:518][959]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.42.29:519][959]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms +[2025.06.16-10.42.29:579][960]LogPlayLevel: Display: Destroying online subsystem :Context_83 +[2025.06.16-10.42.30:424][ 51]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.42.31:676][188]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.42.31:681][188]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.42.31:681][188]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.42.31:682][188]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.283 ms (total: 91.197 ms) +[2025.06.16-10.42.31:682][188]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.42.31:718][188]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.42.31:721][188]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003268s) +[2025.06.16-10.42.31:721][188]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003579s) +[2025.06.16-10.42.31:740][188]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.42.31:742][188]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.42.31:743][188]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.42.31:743][188]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.42.31:743][188]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.42.31:743][188]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.42.31:744][188]LogWorldPartition: Display: WorldPartition initialize took 1.075 ms (total: 160.742 ms) +[2025.06.16-10.42.31:744][188]LogPlayLevel: PIE: World Init took: (0.002414s) +[2025.06.16-10.42.31:745][188]LogAudio: Display: Creating Audio Device: Id: 72, Scope: Unique, Realtime: True +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.42.31:745][188]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.42.31:745][188]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.42.31:745][188]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.42.31:745][188]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.42.31:745][188]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.42.31:748][188]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.42.31:772][188]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.42.31:773][188]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.42.31:773][188]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.42.31:773][188]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.42.31:773][188]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=72 +[2025.06.16-10.42.31:773][188]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=72 +[2025.06.16-10.42.31:775][188]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=72 +[2025.06.16-10.42.31:775][188]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=72 +[2025.06.16-10.42.31:775][188]LogInit: FAudioDevice initialized with ID 72. +[2025.06.16-10.42.31:775][188]LogAudio: Display: Audio Device (ID: 72) registered with world 'Dabaza'. +[2025.06.16-10.42.31:775][188]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 72 +[2025.06.16-10.42.31:780][188]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.42.31:781][188]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.42.31 +[2025.06.16-10.42.31:781][188]LogWorld: Bringing up level for play took: 0.001226 +[2025.06.16-10.42.31:783][188]LogOnline: OSS: Created online subsystem instance for: :Context_84 +[2025.06.16-10.42.31:785][188]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.42.31:785][188]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.42.31:787][188]PIE: Server logged in +[2025.06.16-10.42.31:789][188]PIE: Play in editor total start time 0.108 seconds. +[2025.06.16-10.42.39:128][874]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.42.39:128][874]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.42.39:128][874]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.42.39:128][874]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.42.39:128][874]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.42.39:131][874]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.42.39:136][874]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.42.39:153][874]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.42.39:153][874]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 72 +[2025.06.16-10.42.39:153][874]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=72 +[2025.06.16-10.42.39:155][874]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=72 +[2025.06.16-10.42.39:160][874]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.42.39:205][875]LogPlayLevel: Display: Destroying online subsystem :Context_84 +[2025.06.16-10.42.40:260][980]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-10.42.56:607][817]LogUObjectHash: Compacting FUObjectHashTables data took 1.03ms +[2025.06.16-10.42.57:779][909]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.42.57:785][909]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.42.57:785][909]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.42.57:786][909]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.301 ms (total: 92.499 ms) +[2025.06.16-10.42.57:786][909]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.42.57:808][909]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.42.57:810][909]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002362s) +[2025.06.16-10.42.57:810][909]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002600s) +[2025.06.16-10.42.57:827][909]LogUObjectHash: Compacting FUObjectHashTables data took 1.06ms +[2025.06.16-10.42.57:828][909]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.42.57:830][909]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.42.57:830][909]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.42.57:831][909]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.42.57:831][909]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.42.57:831][909]LogWorldPartition: Display: WorldPartition initialize took 1.108 ms (total: 161.850 ms) +[2025.06.16-10.42.57:832][909]LogPlayLevel: PIE: World Init took: (0.002733s) +[2025.06.16-10.42.57:832][909]LogAudio: Display: Creating Audio Device: Id: 73, Scope: Unique, Realtime: True +[2025.06.16-10.42.57:832][909]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.42.57:832][909]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.42.57:832][909]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.42.57:833][909]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.42.57:833][909]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.42.57:833][909]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.42.57:833][909]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.42.57:833][909]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.42.57:833][909]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.42.57:833][909]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.42.57:833][909]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.42.57:835][909]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.42.57:860][909]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.42.57:860][909]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.42.57:860][909]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.42.57:860][909]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.42.57:861][909]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=73 +[2025.06.16-10.42.57:861][909]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=73 +[2025.06.16-10.42.57:863][909]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=73 +[2025.06.16-10.42.57:863][909]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=73 +[2025.06.16-10.42.57:863][909]LogInit: FAudioDevice initialized with ID 73. +[2025.06.16-10.42.57:863][909]LogAudio: Display: Audio Device (ID: 73) registered with world 'Dabaza'. +[2025.06.16-10.42.57:864][909]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 73 +[2025.06.16-10.42.57:866][909]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.42.57:868][909]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.42.57 +[2025.06.16-10.42.57:868][909]LogWorld: Bringing up level for play took: 0.001313 +[2025.06.16-10.42.57:870][909]LogOnline: OSS: Created online subsystem instance for: :Context_85 +[2025.06.16-10.42.57:872][909]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.42.57:872][909]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.42.57:873][909]PIE: Server logged in +[2025.06.16-10.42.57:874][909]PIE: Play in editor total start time 0.09 seconds. +[2025.06.16-10.43.05:777][843]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.43.07:776][ 82]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.43.10:878][445]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.10:878][445]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.10:878][445]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.43.10:879][445]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.10:879][445]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.43.10:881][445]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.43.10:885][445]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.10:905][445]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.43.10:905][445]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 73 +[2025.06.16-10.43.10:905][445]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=73 +[2025.06.16-10.43.10:907][445]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=73 +[2025.06.16-10.43.10:910][445]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.10:911][445]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.43.10:975][446]LogPlayLevel: Display: Destroying online subsystem :Context_85 +[2025.06.16-10.43.19:841][430]LogSlate: Window 'Color Picker' being destroyed +[2025.06.16-10.43.20:831][534]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.43.22:220][643]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.43.22:225][643]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.43.22:225][643]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.43.22:227][643]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.286 ms (total: 93.785 ms) +[2025.06.16-10.43.22:227][643]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.43.22:228][643]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.22:230][643]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002130s) +[2025.06.16-10.43.22:230][643]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002282s) +[2025.06.16-10.43.22:243][643]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.43.22:245][643]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.43.22:247][643]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.43.22:247][643]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.43.22:247][643]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.43.22:247][643]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.43.22:248][643]LogWorldPartition: Display: WorldPartition initialize took 1.013 ms (total: 162.864 ms) +[2025.06.16-10.43.22:248][643]LogPlayLevel: PIE: World Init took: (0.002348s) +[2025.06.16-10.43.22:248][643]LogAudio: Display: Creating Audio Device: Id: 74, Scope: Unique, Realtime: True +[2025.06.16-10.43.22:248][643]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.43.22:248][643]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.43.22:249][643]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.43.22:249][643]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.43.22:249][643]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.43.22:249][643]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.43.22:249][643]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.43.22:249][643]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.43.22:249][643]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.43.22:249][643]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.43.22:249][643]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.43.22:251][643]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.43.22:276][643]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.43.22:276][643]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.43.22:276][643]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.43.22:276][643]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.43.22:276][643]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=74 +[2025.06.16-10.43.22:277][643]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=74 +[2025.06.16-10.43.22:279][643]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=74 +[2025.06.16-10.43.22:279][643]LogInit: FAudioDevice initialized with ID 74. +[2025.06.16-10.43.22:279][643]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=74 +[2025.06.16-10.43.22:279][643]LogAudio: Display: Audio Device (ID: 74) registered with world 'Dabaza'. +[2025.06.16-10.43.22:279][643]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 74 +[2025.06.16-10.43.22:281][643]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.43.22:282][643]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.43.22 +[2025.06.16-10.43.22:283][643]LogWorld: Bringing up level for play took: 0.001145 +[2025.06.16-10.43.22:285][643]LogOnline: OSS: Created online subsystem instance for: :Context_86 +[2025.06.16-10.43.22:287][643]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.43.22:288][643]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.43.22:288][643]PIE: Server logged in +[2025.06.16-10.43.22:289][643]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-10.43.29:767][518]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.29:768][518]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.29:768][518]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.43.29:768][518]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.29:768][518]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.43.29:771][518]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.43.29:776][518]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.29:794][518]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.43.29:794][518]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 74 +[2025.06.16-10.43.29:794][518]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=74 +[2025.06.16-10.43.29:797][518]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=74 +[2025.06.16-10.43.29:800][518]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.29:802][518]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.43.29:861][519]LogPlayLevel: Display: Destroying online subsystem :Context_86 +[2025.06.16-10.43.33:647][946]LogSlate: Window 'Color Picker' being destroyed +[2025.06.16-10.43.34:697][ 64]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.43.35:997][163]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.43.36:003][163]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.43.36:003][163]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.43.36:004][163]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.279 ms (total: 95.064 ms) +[2025.06.16-10.43.36:004][163]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.43.36:004][163]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.36:007][163]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002201s) +[2025.06.16-10.43.36:007][163]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002362s) +[2025.06.16-10.43.36:021][163]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.43.36:024][163]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.43.36:025][163]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.43.36:025][163]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.43.36:025][163]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.43.36:025][163]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.43.36:025][163]LogWorldPartition: Display: WorldPartition initialize took 965 us (total: 163.830 ms) +[2025.06.16-10.43.36:025][163]LogPlayLevel: PIE: World Init took: (0.002408s) +[2025.06.16-10.43.36:027][163]LogAudio: Display: Creating Audio Device: Id: 75, Scope: Unique, Realtime: True +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.43.36:027][163]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.43.36:027][163]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.43.36:027][163]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.43.36:027][163]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.43.36:027][163]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.43.36:029][163]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.43.36:054][163]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.43.36:055][163]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.43.36:055][163]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.43.36:055][163]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.43.36:055][163]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=75 +[2025.06.16-10.43.36:055][163]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=75 +[2025.06.16-10.43.36:057][163]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=75 +[2025.06.16-10.43.36:057][163]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=75 +[2025.06.16-10.43.36:057][163]LogInit: FAudioDevice initialized with ID 75. +[2025.06.16-10.43.36:057][163]LogAudio: Display: Audio Device (ID: 75) registered with world 'Dabaza'. +[2025.06.16-10.43.36:057][163]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 75 +[2025.06.16-10.43.36:060][163]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.43.36:061][163]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.43.36 +[2025.06.16-10.43.36:062][163]LogWorld: Bringing up level for play took: 0.001137 +[2025.06.16-10.43.36:064][163]LogOnline: OSS: Created online subsystem instance for: :Context_87 +[2025.06.16-10.43.36:065][163]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.43.36:065][163]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.43.36:067][163]PIE: Server logged in +[2025.06.16-10.43.36:068][163]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-10.43.38:668][454]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.38:668][454]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.38:668][454]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.43.38:669][454]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.38:669][454]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.43.38:671][454]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.43.38:675][454]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.38:693][454]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.43.38:693][454]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 75 +[2025.06.16-10.43.38:693][454]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=75 +[2025.06.16-10.43.38:695][454]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=75 +[2025.06.16-10.43.38:699][454]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.38:700][454]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.43.38:761][455]LogPlayLevel: Display: Destroying online subsystem :Context_87 +[2025.06.16-10.43.42:515][880]LogSlate: Window 'Color Picker' being destroyed +[2025.06.16-10.43.43:482][983]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-10.43.44:749][ 79]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.43.44:754][ 79]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.43.44:754][ 79]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.43.44:755][ 79]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.305 ms (total: 96.370 ms) +[2025.06.16-10.43.44:755][ 79]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.43.44:756][ 79]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.44:759][ 79]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002172s) +[2025.06.16-10.43.44:759][ 79]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002320s) +[2025.06.16-10.43.44:774][ 79]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.43.44:777][ 79]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.43.44:778][ 79]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.43.44:778][ 79]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.43.44:778][ 79]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.43.44:778][ 79]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.43.44:779][ 79]LogWorldPartition: Display: WorldPartition initialize took 988 us (total: 164.818 ms) +[2025.06.16-10.43.44:779][ 79]LogPlayLevel: PIE: World Init took: (0.002395s) +[2025.06.16-10.43.44:779][ 79]LogAudio: Display: Creating Audio Device: Id: 76, Scope: Unique, Realtime: True +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.43.44:780][ 79]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.43.44:780][ 79]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.43.44:780][ 79]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.43.44:780][ 79]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.43.44:780][ 79]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.43.44:782][ 79]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.43.44:807][ 79]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.43.44:807][ 79]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.43.44:807][ 79]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.43.44:807][ 79]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.43.44:808][ 79]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=76 +[2025.06.16-10.43.44:808][ 79]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=76 +[2025.06.16-10.43.44:810][ 79]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=76 +[2025.06.16-10.43.44:810][ 79]LogInit: FAudioDevice initialized with ID 76. +[2025.06.16-10.43.44:810][ 79]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=76 +[2025.06.16-10.43.44:810][ 79]LogAudio: Display: Audio Device (ID: 76) registered with world 'Dabaza'. +[2025.06.16-10.43.44:811][ 79]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 76 +[2025.06.16-10.43.44:813][ 79]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.43.44:814][ 79]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.43.44 +[2025.06.16-10.43.44:814][ 79]LogWorld: Bringing up level for play took: 0.001200 +[2025.06.16-10.43.44:817][ 79]LogOnline: OSS: Created online subsystem instance for: :Context_88 +[2025.06.16-10.43.44:819][ 79]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.43.44:819][ 79]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.43.44:819][ 79]PIE: Server logged in +[2025.06.16-10.43.44:821][ 79]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.43.49:318][595]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.49:319][595]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.43.49:319][595]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.43.49:319][595]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.49:320][595]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.43.49:323][595]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.43.49:328][595]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.43.49:346][595]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.43.49:346][595]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 76 +[2025.06.16-10.43.49:346][595]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=76 +[2025.06.16-10.43.49:348][595]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=76 +[2025.06.16-10.43.49:351][595]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.43.49:353][595]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.43.49:415][596]LogPlayLevel: Display: Destroying online subsystem :Context_88 +[2025.06.16-10.43.50:281][682]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-10.43.51:740][682]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-10.43.51:751][682]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.43.51:815][682]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.16-10.43.51:817][682]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.16-10.43.51:817][682]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.16-10.43.51:817][682]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.16-10.43.51:828][682]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.16-10.43.51:829][682]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard71E7C66545F28194998C4B99D1A6622F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.16-10.43.51:830][682]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillEffectText] ([2] browsable assets)... +[2025.06.16-10.43.51:831][682]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillEffectText.WBP_SkillEffectText] +[2025.06.16-10.43.51:831][682]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillEffectText] +[2025.06.16-10.43.51:831][682]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillEffectText" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset" SILENT=true +[2025.06.16-10.43.51:834][682]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillEffectText +[2025.06.16-10.43.51:836][682]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillEffectTextB94F3CFD41725BFC3EE0B18123367657.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset' +[2025.06.16-10.43.51:845][682]LogFileHelpers: InternalPromptForCheckoutAndSave took 94.860 ms (total: 2.51 sec) +[2025.06.16-10.43.51:909][682]LogContentValidation: Display: Starting to validate 2 assets +[2025.06.16-10.43.51:909][682]LogContentValidation: Enabled validators: +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.43.51:909][682]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.43.51:910][682]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.16-10.43.51:910][682]AssetCheck: /Game/UI/WBP_SkillEffectText Validating asset +[2025.06.16-10.44.09:419][ 93]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.44.58:157][396]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.44.58:198][396]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.44.58:199][396]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.44.58:199][396]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.44.58:200][396]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.44.58:201][396]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsD04D679345DE96C1BAAD08AD7DD6AAD1.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.44.58:210][396]LogFileHelpers: InternalPromptForCheckoutAndSave took 53.758 ms (total: 2.57 sec) +[2025.06.16-10.44.58:263][396]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.44.58:263][396]LogContentValidation: Enabled validators: +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.44.58:263][396]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.44.58:265][396]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.45.34:381][524]LogUObjectHash: Compacting FUObjectHashTables data took 1.00ms +[2025.06.16-10.45.35:054][573]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.45.35:113][573]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.45.35:113][573]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.45.35:113][573]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.45.35:126][573]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.45.35:126][573]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode309F4A9946C3263ABC58A0A522F8E6E5.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.45.35:137][573]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.943 ms (total: 2.65 sec) +[2025.06.16-10.45.35:194][573]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.45.35:194][573]LogContentValidation: Enabled validators: +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.45.35:194][573]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.45.35:194][573]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.45.41:300][267]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.45.41:350][267]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.45.41:351][267]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.45.41:351][267]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.45.41:352][267]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.45.41:353][267]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills7384D18F404A3A5BD100D98CAC404016.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.45.41:362][267]LogFileHelpers: InternalPromptForCheckoutAndSave took 63.051 ms (total: 2.71 sec) +[2025.06.16-10.45.41:414][267]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.45.41:414][267]LogContentValidation: Enabled validators: +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.45.41:415][267]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.45.41:415][267]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.45.44:304][593]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.45.44:309][593]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.45.44:309][593]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.45.44:310][593]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.308 ms (total: 97.679 ms) +[2025.06.16-10.45.44:311][593]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.45.44:311][593]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.45.44:313][593]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002263s) +[2025.06.16-10.45.44:313][593]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002418s) +[2025.06.16-10.45.44:328][593]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.45.44:331][593]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.45.44:333][593]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.45.44:333][593]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.45.44:333][593]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.45.44:333][593]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.45.44:334][593]LogWorldPartition: Display: WorldPartition initialize took 1.139 ms (total: 165.958 ms) +[2025.06.16-10.45.44:334][593]LogPlayLevel: PIE: World Init took: (0.002653s) +[2025.06.16-10.45.44:334][593]LogAudio: Display: Creating Audio Device: Id: 77, Scope: Unique, Realtime: True +[2025.06.16-10.45.44:334][593]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.45.44:335][593]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.45.44:335][593]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.45.44:335][593]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.45.44:335][593]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.45.44:335][593]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.45.44:338][593]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.45.44:363][593]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.45.44:364][593]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.45.44:364][593]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.45.44:364][593]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.45.44:364][593]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=77 +[2025.06.16-10.45.44:364][593]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=77 +[2025.06.16-10.45.44:367][593]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=77 +[2025.06.16-10.45.44:367][593]LogInit: FAudioDevice initialized with ID 77. +[2025.06.16-10.45.44:367][593]LogAudio: Display: Audio Device (ID: 77) registered with world 'Dabaza'. +[2025.06.16-10.45.44:367][593]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=77 +[2025.06.16-10.45.44:367][593]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 77 +[2025.06.16-10.45.44:369][593]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.45.44:370][593]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.45.44 +[2025.06.16-10.45.44:371][593]LogWorld: Bringing up level for play took: 0.001263 +[2025.06.16-10.45.44:373][593]LogOnline: OSS: Created online subsystem instance for: :Context_89 +[2025.06.16-10.45.44:375][593]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.45.44:375][593]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.45.44:375][593]PIE: Server logged in +[2025.06.16-10.45.44:377][593]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.45.46:918][874]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.45.46:918][874]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.45.46:918][874]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.45.46:919][874]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.45.46:919][874]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.45.46:922][874]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.45.46:927][874]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.45.46:944][874]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.45.46:944][874]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 77 +[2025.06.16-10.45.46:944][874]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=77 +[2025.06.16-10.45.46:946][874]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=77 +[2025.06.16-10.45.46:950][874]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.45.46:951][874]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.45.47:017][875]LogPlayLevel: Display: Destroying online subsystem :Context_89 +[2025.06.16-10.46.16:813][349]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms +[2025.06.16-10.46.17:315][379]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.46.17:368][379]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.46.17:370][379]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.46.17:371][379]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.46.17:371][379]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.46.17:375][379]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.46.17:377][379]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerFA5F9C8A42AA3AE16C08F591CF2D3021.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.46.17:389][379]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.028 ms (total: 2.79 sec) +[2025.06.16-10.46.17:446][379]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.46.17:446][379]LogContentValidation: Enabled validators: +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.46.17:446][379]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.46.17:447][379]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.46.18:537][497]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.46.18:541][497]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.46.18:541][497]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.46.18:543][497]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.174 ms (total: 98.853 ms) +[2025.06.16-10.46.18:543][497]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.46.18:543][497]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.18:545][497]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002179s) +[2025.06.16-10.46.18:545][497]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002331s) +[2025.06.16-10.46.18:563][497]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.46.18:569][497]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.46.18:571][497]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.46.18:571][497]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.46.18:571][497]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.46.18:571][497]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.46.18:572][497]LogWorldPartition: Display: WorldPartition initialize took 972 us (total: 166.930 ms) +[2025.06.16-10.46.18:572][497]LogPlayLevel: PIE: World Init took: (0.002379s) +[2025.06.16-10.46.18:572][497]LogAudio: Display: Creating Audio Device: Id: 78, Scope: Unique, Realtime: True +[2025.06.16-10.46.18:572][497]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.46.18:572][497]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.46.18:574][497]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.46.18:574][497]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.46.18:574][497]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.46.18:574][497]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.46.18:574][497]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.46.18:574][497]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.46.18:574][497]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.46.18:574][497]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.46.18:574][497]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.46.18:576][497]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.46.18:601][497]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.46.18:601][497]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.46.18:601][497]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.46.18:601][497]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.46.18:602][497]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=78 +[2025.06.16-10.46.18:602][497]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=78 +[2025.06.16-10.46.18:605][497]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=78 +[2025.06.16-10.46.18:605][497]LogInit: FAudioDevice initialized with ID 78. +[2025.06.16-10.46.18:605][497]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=78 +[2025.06.16-10.46.18:605][497]LogAudio: Display: Audio Device (ID: 78) registered with world 'Dabaza'. +[2025.06.16-10.46.18:605][497]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 78 +[2025.06.16-10.46.18:607][497]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.46.18:608][497]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.46.18 +[2025.06.16-10.46.18:609][497]LogWorld: Bringing up level for play took: 0.001260 +[2025.06.16-10.46.18:611][497]LogOnline: OSS: Created online subsystem instance for: :Context_90 +[2025.06.16-10.46.18:613][497]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.46.18:613][497]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.46.18:614][497]PIE: Server logged in +[2025.06.16-10.46.18:615][497]PIE: Play in editor total start time 0.073 seconds. +[2025.06.16-10.46.19:688][605]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.19:688][605]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.19:689][605]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.46.19:689][605]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.19:689][605]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.46.19:692][605]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.46.19:695][605]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.19:714][605]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.46.19:714][605]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 78 +[2025.06.16-10.46.19:714][605]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=78 +[2025.06.16-10.46.19:717][605]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=78 +[2025.06.16-10.46.19:720][605]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.19:721][605]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.46.19:783][606]LogPlayLevel: Display: Destroying online subsystem :Context_90 +[2025.06.16-10.46.26:572][379]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.46.26:578][379]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.46.26:578][379]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.46.26:579][379]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.248 ms (total: 100.102 ms) +[2025.06.16-10.46.26:579][379]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.46.26:579][379]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.26:582][379]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002342s) +[2025.06.16-10.46.26:582][379]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002535s) +[2025.06.16-10.46.26:597][379]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-10.46.26:599][379]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.46.26:601][379]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.46.26:601][379]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.46.26:601][379]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.46.26:601][379]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.46.26:602][379]LogWorldPartition: Display: WorldPartition initialize took 1.201 ms (total: 168.132 ms) +[2025.06.16-10.46.26:602][379]LogPlayLevel: PIE: World Init took: (0.002679s) +[2025.06.16-10.46.26:603][379]LogAudio: Display: Creating Audio Device: Id: 79, Scope: Unique, Realtime: True +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.46.26:603][379]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.46.26:604][379]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.46.26:604][379]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.46.26:604][379]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.46.26:604][379]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.46.26:604][379]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.46.26:606][379]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.46.26:631][379]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.46.26:631][379]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.46.26:631][379]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.46.26:631][379]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.46.26:631][379]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=79 +[2025.06.16-10.46.26:631][379]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=79 +[2025.06.16-10.46.26:634][379]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=79 +[2025.06.16-10.46.26:634][379]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=79 +[2025.06.16-10.46.26:634][379]LogInit: FAudioDevice initialized with ID 79. +[2025.06.16-10.46.26:634][379]LogAudio: Display: Audio Device (ID: 79) registered with world 'Dabaza'. +[2025.06.16-10.46.26:634][379]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 79 +[2025.06.16-10.46.26:637][379]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.46.26:638][379]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.46.26 +[2025.06.16-10.46.26:638][379]LogWorld: Bringing up level for play took: 0.001201 +[2025.06.16-10.46.26:640][379]LogOnline: OSS: Created online subsystem instance for: :Context_91 +[2025.06.16-10.46.26:642][379]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_SetColumnFill', from offset 686 +[2025.06.16-10.46.26:642][379]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + +[2025.06.16-10.46.30:698][379]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.46.30:698][379]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.16-10.46.31:357][379]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.46.31:357][379]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.46.31:358][379]PIE: Server logged in +[2025.06.16-10.46.31:359][379]PIE: Play in editor total start time 4.781 seconds. +[2025.06.16-10.46.31:388][379]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.31:388][379]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.31:388][379]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.46.31:388][379]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.31:389][379]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.46.31:489][379]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.46.31:493][379]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.31:511][379]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.31:511][379]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 79 +[2025.06.16-10.46.31:511][379]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=79 +[2025.06.16-10.46.31:513][379]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=79 +[2025.06.16-10.46.31:519][379]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.16-10.46.31:537][379]LogAutomationController: Ignoring very large delta of 4.97 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.46.31:576][380]LogPlayLevel: Display: Destroying online subsystem :Context_91 +[2025.06.16-10.46.37:165][ 22]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.16-10.46.43:576][724]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.46.43:581][724]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.46.43:581][724]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.46.43:582][724]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.202 ms (total: 101.305 ms) +[2025.06.16-10.46.43:582][724]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.46.43:582][724]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.43:585][724]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002174s) +[2025.06.16-10.46.43:585][724]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002329s) +[2025.06.16-10.46.43:602][724]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.46.43:607][724]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.46.43:608][724]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.46.43:608][724]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.46.43:608][724]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.46.43:608][724]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.46.43:609][724]LogWorldPartition: Display: WorldPartition initialize took 1.060 ms (total: 169.192 ms) +[2025.06.16-10.46.43:609][724]LogPlayLevel: PIE: World Init took: (0.002662s) +[2025.06.16-10.46.43:609][724]LogAudio: Display: Creating Audio Device: Id: 80, Scope: Unique, Realtime: True +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.46.43:610][724]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.46.43:610][724]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.46.43:610][724]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.46.43:610][724]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.46.43:610][724]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.46.43:613][724]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.46.43:641][724]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.46.43:641][724]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.46.43:641][724]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.46.43:641][724]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.46.43:642][724]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=80 +[2025.06.16-10.46.43:642][724]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=80 +[2025.06.16-10.46.43:644][724]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=80 +[2025.06.16-10.46.43:644][724]LogInit: FAudioDevice initialized with ID 80. +[2025.06.16-10.46.43:644][724]LogAudio: Display: Audio Device (ID: 80) registered with world 'Dabaza'. +[2025.06.16-10.46.43:644][724]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=80 +[2025.06.16-10.46.43:644][724]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 80 +[2025.06.16-10.46.43:647][724]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.46.43:648][724]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.46.43 +[2025.06.16-10.46.43:648][724]LogWorld: Bringing up level for play took: 0.001214 +[2025.06.16-10.46.43:651][724]LogOnline: OSS: Created online subsystem instance for: :Context_92 +[2025.06.16-10.46.43:653][724]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.46.43:653][724]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.46.43:653][724]PIE: Server logged in +[2025.06.16-10.46.43:654][724]PIE: Play in editor total start time 0.074 seconds. +[2025.06.16-10.46.46:569][ 59]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.46.49:573][417]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.46.51:570][652]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.46.52:581][772]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.46.53:345][862]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4383.104980 +[2025.06.16-10.46.53:518][879]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.53:519][879]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.46.53:519][879]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.46.53:519][879]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.53:519][879]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.46.53:522][879]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.46.53:527][879]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.46.53:546][879]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.46.53:546][879]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 80 +[2025.06.16-10.46.53:546][879]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=80 +[2025.06.16-10.46.53:549][879]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=80 +[2025.06.16-10.46.53:552][879]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.46.53:554][879]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-10.46.53:618][880]LogPlayLevel: Display: Destroying online subsystem :Context_92 +[2025.06.16-10.46.53:639][881]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.46.53:640][881]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4383.385742, Update Interval: 350.412292 +[2025.06.16-10.47.13:343][659]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.47.13:348][659]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.47.13:349][659]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.47.13:349][659]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.351 ms (total: 102.656 ms) +[2025.06.16-10.47.13:350][659]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.47.13:350][659]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.47.13:352][659]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002361s) +[2025.06.16-10.47.13:352][659]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002506s) +[2025.06.16-10.47.13:368][659]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.47.13:371][659]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.47.13:372][659]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.47.13:372][659]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.47.13:372][659]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.47.13:372][659]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.47.13:373][659]LogWorldPartition: Display: WorldPartition initialize took 1.119 ms (total: 170.311 ms) +[2025.06.16-10.47.13:373][659]LogPlayLevel: PIE: World Init took: (0.002578s) +[2025.06.16-10.47.13:373][659]LogAudio: Display: Creating Audio Device: Id: 81, Scope: Unique, Realtime: True +[2025.06.16-10.47.13:373][659]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.47.13:374][659]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.47.13:374][659]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.47.13:374][659]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.47.13:374][659]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.47.13:374][659]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.47.13:376][659]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.47.13:410][659]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.47.13:410][659]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.47.13:410][659]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.47.13:410][659]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.47.13:410][659]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=81 +[2025.06.16-10.47.13:410][659]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=81 +[2025.06.16-10.47.13:413][659]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=81 +[2025.06.16-10.47.13:413][659]LogInit: FAudioDevice initialized with ID 81. +[2025.06.16-10.47.13:413][659]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=81 +[2025.06.16-10.47.13:413][659]LogAudio: Display: Audio Device (ID: 81) registered with world 'Dabaza'. +[2025.06.16-10.47.13:413][659]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 81 +[2025.06.16-10.47.13:416][659]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.47.13:417][659]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.47.13 +[2025.06.16-10.47.13:417][659]LogWorld: Bringing up level for play took: 0.001210 +[2025.06.16-10.47.13:419][659]LogOnline: OSS: Created online subsystem instance for: :Context_93 +[2025.06.16-10.47.13:422][659]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.47.13:422][659]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.47.13:422][659]PIE: Server logged in +[2025.06.16-10.47.13:423][659]PIE: Play in editor total start time 0.075 seconds. +[2025.06.16-10.47.16:336][994]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.47.33:177][994]LogAutomationController: Ignoring very large delta of 16.84 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.16-10.47.33:180][995]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.47.33:180][995]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.47.33:180][995]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.47.33:512][996]LogTemp: 针对目标 |Skill_0|Skill_1 释放技能效果SkillEnduranceRestore +[2025.06.16-10.47.35:518][119]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.47.35:518][119]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.47.35:518][119]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.47.35:519][119]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.47.35:519][119]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.47.35:522][119]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.47.35:527][119]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.47.35:545][119]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.47.35:545][119]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 81 +[2025.06.16-10.47.35:545][119]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=81 +[2025.06.16-10.47.35:548][119]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=81 +[2025.06.16-10.47.35:553][119]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.16-10.47.35:618][120]LogPlayLevel: Display: Destroying online subsystem :Context_93 +[2025.06.16-10.47.40:152][638]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.47.40:223][638]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.47.40:223][638]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.47.40:223][638]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.47.40:225][638]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.47.40:225][638]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills1049CBE744631C742277FF9748BF308A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.47.40:235][638]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.696 ms (total: 2.87 sec) +[2025.06.16-10.47.40:280][638]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.47.40:280][638]LogContentValidation: Enabled validators: +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.47.40:280][638]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.47.40:280][638]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.47.41:484][767]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.47.41:489][767]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.47.41:489][767]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.47.41:490][767]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.331 ms (total: 103.988 ms) +[2025.06.16-10.47.41:490][767]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.47.41:490][767]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.47.41:494][767]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002159s) +[2025.06.16-10.47.41:494][767]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002304s) +[2025.06.16-10.47.41:508][767]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-10.47.41:511][767]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.47.41:512][767]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.47.41:512][767]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.47.41:512][767]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.47.41:512][767]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.47.41:513][767]LogWorldPartition: Display: WorldPartition initialize took 990 us (total: 171.302 ms) +[2025.06.16-10.47.41:513][767]LogPlayLevel: PIE: World Init took: (0.002410s) +[2025.06.16-10.47.41:513][767]LogAudio: Display: Creating Audio Device: Id: 82, Scope: Unique, Realtime: True +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.47.41:513][767]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.47.41:513][767]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.47.41:515][767]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.47.41:515][767]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.47.41:515][767]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.47.41:517][767]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.47.41:544][767]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.47.41:544][767]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.47.41:544][767]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.47.41:544][767]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.47.41:544][767]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=82 +[2025.06.16-10.47.41:544][767]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=82 +[2025.06.16-10.47.41:547][767]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=82 +[2025.06.16-10.47.41:547][767]LogInit: FAudioDevice initialized with ID 82. +[2025.06.16-10.47.41:547][767]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=82 +[2025.06.16-10.47.41:547][767]LogAudio: Display: Audio Device (ID: 82) registered with world 'Dabaza'. +[2025.06.16-10.47.41:547][767]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 82 +[2025.06.16-10.47.41:549][767]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.47.41:550][767]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.47.41 +[2025.06.16-10.47.41:551][767]LogWorld: Bringing up level for play took: 0.001382 +[2025.06.16-10.47.41:553][767]LogOnline: OSS: Created online subsystem instance for: :Context_94 +[2025.06.16-10.47.41:555][767]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.47.41:555][767]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.47.41:557][767]PIE: Server logged in +[2025.06.16-10.47.41:558][767]PIE: Play in editor total start time 0.068 seconds. +[2025.06.16-10.47.44:477][107]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.47.46:148][301]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.47.46:149][301]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.47.46:149][301]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.47.46:149][301]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.47.46:149][301]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.47.46:152][301]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.47.46:157][301]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.47.46:175][301]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.47.46:175][301]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 82 +[2025.06.16-10.47.46:175][301]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=82 +[2025.06.16-10.47.46:177][301]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=82 +[2025.06.16-10.47.46:182][301]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-10.47.46:245][302]LogPlayLevel: Display: Destroying online subsystem :Context_94 +[2025.06.16-10.48.21:517][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-10.48.21:520][672]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.021 +[2025.06.16-10.48.21:520][672]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.48.21:523][672]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.48.21:523][672]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.48.21:523][672]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto3.uasset" SILENT=false AUTOSAVING=true +[2025.06.16-10.48.21:528][672]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/UI/WBP_SkillContainer_Auto3 +[2025.06.16-10.48.21:529][672]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer_Auto3B691EC5546E68FCFECA506B12B57AD8D.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/UI/WBP_SkillContainer_Auto3.uasset' +[2025.06.16-10.48.21:530][672]LogFileHelpers: Auto-saving content packages took 0.010 +[2025.06.16-10.49.28:129][872]LogHotReload: New module detected: UnrealEditor-ProjectFish-0003.dll +[2025.06.16-10.49.28:468][873]LogHotReload: Starting Hot-Reload from IDE +[2025.06.16-10.49.28:538][873]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms +[2025.06.16-10.49.28:880][873]LogUObjectHash: Compacting FUObjectHashTables data took 0.94ms +[2025.06.16-10.49.28:915][873]Display: HotReload took 0.4s. +[2025.06.16-10.49.28:915][873]Display: Reload/Re-instancing Complete: 1 package changed, 14 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 7 functions remapped, 4 scriptstructs remapped +[2025.06.16-10.49.31:334][939]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.49.31:340][939]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.49.31:340][939]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.49.31:341][939]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.428 ms (total: 105.417 ms) +[2025.06.16-10.49.31:342][939]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.49.31:342][939]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.49.31:345][939]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002477s) +[2025.06.16-10.49.31:345][939]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002664s) +[2025.06.16-10.49.31:409][939]LogUObjectHash: Compacting FUObjectHashTables data took 1.02ms +[2025.06.16-10.49.31:414][939]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.49.31:415][939]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.49.31:415][939]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.49.31:415][939]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.49.31:415][939]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.49.31:417][939]LogWorldPartition: Display: WorldPartition initialize took 1.082 ms (total: 172.385 ms) +[2025.06.16-10.49.31:417][939]LogPlayLevel: PIE: World Init took: (0.002742s) +[2025.06.16-10.49.31:418][939]LogAudio: Display: Creating Audio Device: Id: 83, Scope: Unique, Realtime: True +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.49.31:418][939]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.49.31:418][939]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.49.31:418][939]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.49.31:419][939]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.49.31:419][939]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.49.31:420][939]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.49.31:449][939]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.49.31:449][939]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.49.31:449][939]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.49.31:449][939]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.49.31:450][939]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=83 +[2025.06.16-10.49.31:450][939]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=83 +[2025.06.16-10.49.31:452][939]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=83 +[2025.06.16-10.49.31:452][939]LogInit: FAudioDevice initialized with ID 83. +[2025.06.16-10.49.31:452][939]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=83 +[2025.06.16-10.49.31:452][939]LogAudio: Display: Audio Device (ID: 83) registered with world 'Dabaza'. +[2025.06.16-10.49.31:452][939]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 83 +[2025.06.16-10.49.31:454][939]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.49.31:455][939]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.49.31 +[2025.06.16-10.49.31:455][939]LogWorld: Bringing up level for play took: 0.001158 +[2025.06.16-10.49.31:458][939]LogOnline: OSS: Created online subsystem instance for: :Context_95 +[2025.06.16-10.49.31:460][939]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.49.31:460][939]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.49.31:461][939]PIE: Server logged in +[2025.06.16-10.49.31:462][939]PIE: Play in editor total start time 0.122 seconds. +[2025.06.16-10.49.34:328][270]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.49.37:333][622]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.49.40:334][973]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.49.41:498][108]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.49.41:498][108]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.49.41:498][108]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.49.41:499][108]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.49.41:499][108]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.49.41:501][108]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.49.41:504][108]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.49.41:518][108]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.49.41:518][108]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 83 +[2025.06.16-10.49.41:519][108]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=83 +[2025.06.16-10.49.41:520][108]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=83 +[2025.06.16-10.49.41:526][108]LogUObjectHash: Compacting FUObjectHashTables data took 1.47ms +[2025.06.16-10.49.41:587][109]LogPlayLevel: Display: Destroying online subsystem :Context_95 +[2025.06.16-10.49.51:791][305]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.49.51:841][305]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.49.51:841][305]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.49.51:841][305]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.49.51:843][305]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.49.51:843][305]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills5D86B06D494F9344342B72AC1F9B61D6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.49.51:854][305]LogFileHelpers: InternalPromptForCheckoutAndSave took 62.159 ms (total: 2.93 sec) +[2025.06.16-10.49.51:905][305]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.49.51:905][305]LogContentValidation: Enabled validators: +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.49.51:905][305]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.49.51:905][305]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.50.26:025][683]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.51.06:360][421]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.51.06:420][421]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.51.06:421][421]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.51.06:421][421]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.51.06:422][421]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.51.06:422][421]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkills58848AE54F3DB366C421018CF8D5D3F0.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.51.06:433][421]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.213 ms (total: 3.00 sec) +[2025.06.16-10.51.06:484][421]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.51.06:484][421]LogContentValidation: Enabled validators: +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.51.06:484][421]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.51.06:485][421]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.51.29:943][177]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-10.51.30:569][217]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.51.30:625][217]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.51.30:625][217]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.51.30:625][217]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.51.30:638][217]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.51.30:638][217]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode8E3217B64031079A42CB6E9AF786761B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.51.30:649][217]LogFileHelpers: InternalPromptForCheckoutAndSave took 80.473 ms (total: 3.08 sec) +[2025.06.16-10.51.30:705][217]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.51.30:705][217]LogContentValidation: Enabled validators: +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.51.30:705][217]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.51.30:707][217]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.51.40:983][334]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.51.41:033][334]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.51.41:036][334]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.51.41:036][334]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.51.41:036][334]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.51.41:041][334]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.51.41:041][334]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer59A7EB264269D67E17A8848EFA2FBE2E.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.51.41:053][334]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.261 ms (total: 3.16 sec) +[2025.06.16-10.51.41:111][334]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.51.41:111][334]LogContentValidation: Enabled validators: +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.51.41:113][334]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.51.41:113][334]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.51.49:314][244]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.51.50:064][294]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.51.50:124][294]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.51.50:124][294]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.51.50:124][294]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.51.50:137][294]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.51.50:137][294]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode7EBA502543D4E1A360A3FB857EC641B0.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.51.50:151][294]LogFileHelpers: InternalPromptForCheckoutAndSave took 85.697 ms (total: 3.24 sec) +[2025.06.16-10.51.50:206][294]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.51.50:206][294]LogContentValidation: Enabled validators: +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.51.50:206][294]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.51.50:206][294]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.51.51:055][383]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.51.51:060][383]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.51.51:060][383]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.51.51:061][383]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.341 ms (total: 106.758 ms) +[2025.06.16-10.51.51:061][383]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.51.51:061][383]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.51.51:065][383]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002328s) +[2025.06.16-10.51.51:065][383]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002538s) +[2025.06.16-10.51.51:079][383]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.51.51:084][383]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.51.51:085][383]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.51.51:085][383]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.51.51:086][383]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.51.51:086][383]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.51.51:086][383]LogWorldPartition: Display: WorldPartition initialize took 997 us (total: 173.383 ms) +[2025.06.16-10.51.51:087][383]LogPlayLevel: PIE: World Init took: (0.002506s) +[2025.06.16-10.51.51:087][383]LogAudio: Display: Creating Audio Device: Id: 84, Scope: Unique, Realtime: True +[2025.06.16-10.51.51:087][383]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.51.51:087][383]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.51.51:088][383]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.51.51:088][383]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.51.51:088][383]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.51.51:088][383]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.51.51:088][383]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.51.51:088][383]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.51.51:088][383]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.51.51:088][383]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.51.51:088][383]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.51.51:092][383]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.51.51:118][383]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.51.51:118][383]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.51.51:119][383]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.51.51:119][383]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.51.51:119][383]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=84 +[2025.06.16-10.51.51:119][383]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=84 +[2025.06.16-10.51.51:122][383]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=84 +[2025.06.16-10.51.51:122][383]LogInit: FAudioDevice initialized with ID 84. +[2025.06.16-10.51.51:122][383]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=84 +[2025.06.16-10.51.51:122][383]LogAudio: Display: Audio Device (ID: 84) registered with world 'Dabaza'. +[2025.06.16-10.51.51:122][383]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 84 +[2025.06.16-10.51.51:125][383]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.51.51:126][383]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.51.51 +[2025.06.16-10.51.51:126][383]LogWorld: Bringing up level for play took: 0.001247 +[2025.06.16-10.51.51:128][383]LogOnline: OSS: Created online subsystem instance for: :Context_96 +[2025.06.16-10.51.51:130][383]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.51.51:131][383]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.51.51:131][383]PIE: Server logged in +[2025.06.16-10.51.51:132][383]PIE: Play in editor total start time 0.072 seconds. +[2025.06.16-10.51.59:052][322]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.52.01:055][562]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.52.06:059][162]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.52.09:052][521]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果ModifyCooldown +[2025.06.16-10.52.14:698][190]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.52.14:698][190]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.52.14:699][190]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.52.14:699][190]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.52.14:699][190]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.52.14:702][190]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.52.14:705][190]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.52.14:722][190]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.52.14:722][190]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 84 +[2025.06.16-10.52.14:722][190]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=84 +[2025.06.16-10.52.14:726][190]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=84 +[2025.06.16-10.52.14:729][190]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.52.14:730][190]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-10.52.14:792][191]LogPlayLevel: Display: Destroying online subsystem :Context_96 +[2025.06.16-10.52.26:809][575]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.52.27:329][606]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.52.27:370][606]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.52.27:370][606]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.52.27:370][606]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.52.27:383][606]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.52.27:383][606]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeE16F165C4CD82DC425577B9DAC3E59C1.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.52.27:395][606]LogFileHelpers: InternalPromptForCheckoutAndSave took 66.244 ms (total: 3.31 sec) +[2025.06.16-10.52.27:454][606]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.52.27:454][606]LogContentValidation: Enabled validators: +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.52.27:454][606]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.52.27:454][606]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.52.28:528][719]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.52.28:533][719]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.52.28:533][719]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.52.28:535][719]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.248 ms (total: 108.007 ms) +[2025.06.16-10.52.28:535][719]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.52.28:535][719]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.52.28:537][719]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002186s) +[2025.06.16-10.52.28:537][719]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002327s) +[2025.06.16-10.52.28:552][719]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-10.52.28:559][719]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.52.28:560][719]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.52.28:560][719]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.52.28:560][719]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.52.28:560][719]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.52.28:561][719]LogWorldPartition: Display: WorldPartition initialize took 985 us (total: 174.368 ms) +[2025.06.16-10.52.28:561][719]LogPlayLevel: PIE: World Init took: (0.002439s) +[2025.06.16-10.52.28:562][719]LogAudio: Display: Creating Audio Device: Id: 85, Scope: Unique, Realtime: True +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.52.28:562][719]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.52.28:562][719]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.52.28:562][719]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.52.28:562][719]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.52.28:562][719]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.52.28:564][719]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.52.28:589][719]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.52.28:589][719]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.52.28:589][719]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.52.28:589][719]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.52.28:590][719]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=85 +[2025.06.16-10.52.28:590][719]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=85 +[2025.06.16-10.52.28:592][719]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=85 +[2025.06.16-10.52.28:592][719]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=85 +[2025.06.16-10.52.28:592][719]LogInit: FAudioDevice initialized with ID 85. +[2025.06.16-10.52.28:592][719]LogAudio: Display: Audio Device (ID: 85) registered with world 'Dabaza'. +[2025.06.16-10.52.28:592][719]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 85 +[2025.06.16-10.52.28:595][719]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.52.28:595][719]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.52.28 +[2025.06.16-10.52.28:597][719]LogWorld: Bringing up level for play took: 0.001193 +[2025.06.16-10.52.28:599][719]LogOnline: OSS: Created online subsystem instance for: :Context_97 +[2025.06.16-10.52.28:600][719]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.52.28:600][719]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.52.28:601][719]PIE: Server logged in +[2025.06.16-10.52.28:602][719]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-10.52.36:525][659]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.52.38:525][899]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.52.43:528][499]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.52.48:528][ 99]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.52.50:529][339]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.52.50:529][339]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.16-10.52.53:531][698]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.52.54:428][801]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.52.54:428][801]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.52.54:428][801]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.52.54:428][801]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.52.54:428][801]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.52.54:431][801]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.52.54:436][801]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.52.54:454][801]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.52.54:454][801]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 85 +[2025.06.16-10.52.54:454][801]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=85 +[2025.06.16-10.52.54:455][801]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=85 +[2025.06.16-10.52.54:459][801]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.52.54:461][801]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-10.52.54:524][802]LogPlayLevel: Display: Destroying online subsystem :Context_97 +[2025.06.16-10.53.00:573][511]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish +[2025.06.16-10.53.00:573][511]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_35 +[2025.06.16-10.53.14:468][ 52]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.53.15:689][163]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.53.15:694][163]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.53.15:694][163]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.53.15:710][163]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 16.362 ms (total: 124.369 ms) +[2025.06.16-10.53.15:711][163]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.53.15:711][163]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.53.15:713][163]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002281s) +[2025.06.16-10.53.15:713][163]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002439s) +[2025.06.16-10.53.15:728][163]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-10.53.15:735][163]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.53.15:736][163]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.53.15:736][163]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.53.15:737][163]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.53.15:737][163]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.53.15:737][163]LogWorldPartition: Display: WorldPartition initialize took 1.080 ms (total: 175.448 ms) +[2025.06.16-10.53.15:737][163]LogPlayLevel: PIE: World Init took: (0.002683s) +[2025.06.16-10.53.15:738][163]LogAudio: Display: Creating Audio Device: Id: 86, Scope: Unique, Realtime: True +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.53.15:738][163]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.53.15:738][163]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.53.15:738][163]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.53.15:738][163]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.53.15:739][163]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.53.15:741][163]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.53.15:767][163]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.53.15:767][163]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.53.15:767][163]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.53.15:767][163]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.53.15:767][163]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=86 +[2025.06.16-10.53.15:768][163]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=86 +[2025.06.16-10.53.15:770][163]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=86 +[2025.06.16-10.53.15:770][163]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=86 +[2025.06.16-10.53.15:770][163]LogInit: FAudioDevice initialized with ID 86. +[2025.06.16-10.53.15:770][163]LogAudio: Display: Audio Device (ID: 86) registered with world 'Dabaza'. +[2025.06.16-10.53.15:770][163]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 86 +[2025.06.16-10.53.15:772][163]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.53.15:773][163]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.53.15 +[2025.06.16-10.53.15:773][163]LogWorld: Bringing up level for play took: 0.001117 +[2025.06.16-10.53.15:776][163]LogOnline: OSS: Created online subsystem instance for: :Context_99 +[2025.06.16-10.53.15:778][163]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.53.15:778][163]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.53.15:779][163]PIE: Server logged in +[2025.06.16-10.53.15:780][163]PIE: Play in editor total start time 0.086 seconds. +[2025.06.16-10.53.23:689][ 99]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.53.25:690][339]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.53.30:691][939]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.53.35:694][539]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.16-10.53.37:695][779]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.53.40:688][138]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-10.53.40:688][138]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果SkillEnduranceRestore +[2025.06.16-10.53.40:697][139]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-10.53.42:828][391]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.53.42:828][391]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.53.42:829][391]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.53.42:829][391]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.53.42:829][391]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.53.42:839][391]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.53.42:844][391]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.53.42:864][391]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-10.53.42:864][391]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 86 +[2025.06.16-10.53.42:864][391]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=86 +[2025.06.16-10.53.42:866][391]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=86 +[2025.06.16-10.53.42:869][391]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.53.42:871][391]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.53.42:930][392]LogPlayLevel: Display: Destroying online subsystem :Context_99 +[2025.06.16-10.53.43:343][440]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4793.098145 +[2025.06.16-10.53.43:601][471]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-10.53.43:601][471]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4793.347656, Update Interval: 349.822693 +[2025.06.16-10.53.45:124][640]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.53.45:185][640]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.53.45:185][640]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.53.45:185][640]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.53.45:187][640]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.53.45:187][640]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsD14569DD4191BE788CAA0EB1A7F49E1F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.53.45:198][640]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.812 ms (total: 3.38 sec) +[2025.06.16-10.53.45:249][640]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.53.45:249][640]LogContentValidation: Enabled validators: +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.53.45:249][640]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.53.45:249][640]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.53.46:239][749]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.54.02:156][636]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.54.05:640][ 49]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.54.07:859][298]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.54.07:864][298]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.54.07:864][298]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.54.07:865][298]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.372 ms (total: 125.742 ms) +[2025.06.16-10.54.07:865][298]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.54.07:865][298]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.54.07:869][298]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002229s) +[2025.06.16-10.54.07:869][298]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002386s) +[2025.06.16-10.54.07:882][298]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.16-10.54.07:885][298]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.54.07:886][298]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.54.07:886][298]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.54.07:886][298]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.54.07:886][298]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.54.07:887][298]LogWorldPartition: Display: WorldPartition initialize took 1.018 ms (total: 176.466 ms) +[2025.06.16-10.54.07:887][298]LogPlayLevel: PIE: World Init took: (0.002392s) +[2025.06.16-10.54.07:888][298]LogAudio: Display: Creating Audio Device: Id: 87, Scope: Unique, Realtime: True +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.54.07:888][298]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.54.07:888][298]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.54.07:888][298]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.54.07:888][298]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.54.07:888][298]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.54.07:891][298]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.54.07:917][298]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.54.07:917][298]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.54.07:917][298]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.54.07:917][298]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.54.07:917][298]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=87 +[2025.06.16-10.54.07:917][298]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=87 +[2025.06.16-10.54.07:920][298]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=87 +[2025.06.16-10.54.07:920][298]LogInit: FAudioDevice initialized with ID 87. +[2025.06.16-10.54.07:920][298]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=87 +[2025.06.16-10.54.07:920][298]LogAudio: Display: Audio Device (ID: 87) registered with world 'Dabaza'. +[2025.06.16-10.54.07:920][298]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 87 +[2025.06.16-10.54.07:923][298]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.54.07:924][298]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.54.07 +[2025.06.16-10.54.07:924][298]LogWorld: Bringing up level for play took: 0.001188 +[2025.06.16-10.54.07:926][298]LogOnline: OSS: Created online subsystem instance for: :Context_100 +[2025.06.16-10.54.07:928][298]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.54.07:928][298]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.54.07:929][298]PIE: Server logged in +[2025.06.16-10.54.07:930][298]PIE: Play in editor total start time 0.066 seconds. +[2025.06.16-10.54.09:478][466]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.54.09:478][466]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.54.09:479][466]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.54.09:479][466]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.54.09:479][466]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.54.09:483][466]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.54.09:487][466]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.54.09:508][466]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.54.09:508][466]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 87 +[2025.06.16-10.54.09:509][466]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=87 +[2025.06.16-10.54.09:510][466]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=87 +[2025.06.16-10.54.09:515][466]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.54.09:559][467]LogPlayLevel: Display: Destroying online subsystem :Context_100 +[2025.06.16-10.54.51:629][427]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.54.51:687][427]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/DataTable/PawnSkills] ([1] browsable assets)... +[2025.06.16-10.54.51:687][427]OBJ SavePackage: Finished generating thumbnails for package [/Game/DataTable/PawnSkills] +[2025.06.16-10.54.51:687][427]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/DataTable/PawnSkills" FILE="G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset" SILENT=true +[2025.06.16-10.54.51:689][427]LogSavePackage: Moving output files for package: /Game/DataTable/PawnSkills +[2025.06.16-10.54.51:689][427]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/PawnSkillsC7DA812E44C825BF344CC69249721D1B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset' +[2025.06.16-10.54.51:699][427]LogFileHelpers: InternalPromptForCheckoutAndSave took 69.606 ms (total: 3.45 sec) +[2025.06.16-10.54.51:755][427]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.54.51:756][427]LogContentValidation: Enabled validators: +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.54.51:756][427]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.54.51:756][427]AssetCheck: /Game/DataTable/PawnSkills Validating asset +[2025.06.16-10.56.03:703][725]LogSlate: Took 0.000842 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf' (160K) +[2025.06.16-10.58.13:151][413]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.58.15:714][711]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.58.18:219][981]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffceaab085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcd8221b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd8349f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd857b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd850dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd813b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcd81b1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffccf23c1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffccf8f5881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-10.58.47:677][303]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-10.59.05:748][289]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.59.06:358][327]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.59.06:420][327]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-10.59.06:420][327]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-10.59.06:420][327]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-10.59.06:433][327]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-10.59.06:434][327]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode3E92923548914987B7FC97B0FDC3DCD3.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-10.59.06:445][327]LogFileHelpers: InternalPromptForCheckoutAndSave took 87.530 ms (total: 3.54 sec) +[2025.06.16-10.59.06:499][327]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.59.06:499][327]LogContentValidation: Enabled validators: +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.59.06:499][327]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.59.06:499][327]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-10.59.07:514][432]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.59.07:518][432]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.59.07:519][432]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.59.07:520][432]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.455 ms (total: 127.198 ms) +[2025.06.16-10.59.07:520][432]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.59.07:520][432]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.59.07:523][432]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002347s) +[2025.06.16-10.59.07:523][432]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002504s) +[2025.06.16-10.59.07:538][432]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-10.59.07:542][432]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.59.07:543][432]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.59.07:543][432]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.59.07:544][432]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.59.07:544][432]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.59.07:545][432]LogWorldPartition: Display: WorldPartition initialize took 1.115 ms (total: 177.582 ms) +[2025.06.16-10.59.07:545][432]LogPlayLevel: PIE: World Init took: (0.002652s) +[2025.06.16-10.59.07:545][432]LogAudio: Display: Creating Audio Device: Id: 88, Scope: Unique, Realtime: True +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.59.07:545][432]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.59.07:545][432]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.59.07:545][432]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.59.07:547][432]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.59.07:547][432]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.59.07:549][432]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.59.07:575][432]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.59.07:575][432]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.59.07:575][432]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.59.07:575][432]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.59.07:576][432]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=88 +[2025.06.16-10.59.07:576][432]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=88 +[2025.06.16-10.59.07:578][432]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=88 +[2025.06.16-10.59.07:578][432]LogInit: FAudioDevice initialized with ID 88. +[2025.06.16-10.59.07:578][432]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=88 +[2025.06.16-10.59.07:578][432]LogAudio: Display: Audio Device (ID: 88) registered with world 'Dabaza'. +[2025.06.16-10.59.07:578][432]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 88 +[2025.06.16-10.59.07:581][432]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.59.07:582][432]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.59.07 +[2025.06.16-10.59.07:583][432]LogWorld: Bringing up level for play took: 0.001355 +[2025.06.16-10.59.07:585][432]LogOnline: OSS: Created online subsystem instance for: :Context_101 +[2025.06.16-10.59.07:603][432]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.59.07:603][432]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.59.07:604][432]PIE: Server logged in +[2025.06.16-10.59.07:605][432]PIE: Play in editor total start time 0.086 seconds. +[2025.06.16-10.59.13:508][126]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.13:508][126]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.13:788][156]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.59.13:788][156]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.59.13:788][156]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-10.59.13:788][156]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.59.13:788][156]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-10.59.13:793][156]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-10.59.13:799][156]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-10.59.13:814][156]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-10.59.13:815][156]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 88 +[2025.06.16-10.59.13:815][156]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=88 +[2025.06.16-10.59.13:817][156]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=88 +[2025.06.16-10.59.13:822][156]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-10.59.13:865][157]LogPlayLevel: Display: Destroying online subsystem :Context_101 +[2025.06.16-10.59.23:275][214]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-10.59.23:825][249]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-10.59.23:879][249]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-10.59.23:881][249]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-10.59.23:881][249]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-10.59.23:881][249]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-10.59.23:885][249]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-10.59.23:887][249]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer5D2647724EB7F84E043757B9A57D3DDA.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-10.59.23:898][249]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.228 ms (total: 3.61 sec) +[2025.06.16-10.59.23:961][249]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-10.59.23:961][249]LogContentValidation: Enabled validators: +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-10.59.23:961][249]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-10.59.23:962][249]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-10.59.24:742][332]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-10.59.24:747][332]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-10.59.24:747][332]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-10.59.24:748][332]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.311 ms (total: 128.509 ms) +[2025.06.16-10.59.24:748][332]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-10.59.24:748][332]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-10.59.24:751][332]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002266s) +[2025.06.16-10.59.24:751][332]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002416s) +[2025.06.16-10.59.24:768][332]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-10.59.24:772][332]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-10.59.24:773][332]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-10.59.24:773][332]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-10.59.24:773][332]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-10.59.24:773][332]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-10.59.24:774][332]LogWorldPartition: Display: WorldPartition initialize took 1.206 ms (total: 178.788 ms) +[2025.06.16-10.59.24:774][332]LogPlayLevel: PIE: World Init took: (0.002709s) +[2025.06.16-10.59.24:775][332]LogAudio: Display: Creating Audio Device: Id: 89, Scope: Unique, Realtime: True +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-10.59.24:775][332]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-10.59.24:775][332]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-10.59.24:775][332]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-10.59.24:775][332]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-10.59.24:775][332]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-10.59.24:777][332]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-10.59.24:802][332]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-10.59.24:802][332]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-10.59.24:802][332]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-10.59.24:802][332]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-10.59.24:803][332]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=89 +[2025.06.16-10.59.24:803][332]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=89 +[2025.06.16-10.59.24:805][332]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=89 +[2025.06.16-10.59.24:805][332]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=89 +[2025.06.16-10.59.24:805][332]LogInit: FAudioDevice initialized with ID 89. +[2025.06.16-10.59.24:805][332]LogAudio: Display: Audio Device (ID: 89) registered with world 'Dabaza'. +[2025.06.16-10.59.24:806][332]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 89 +[2025.06.16-10.59.24:809][332]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-10.59.24:810][332]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-18.59.24 +[2025.06.16-10.59.24:810][332]LogWorld: Bringing up level for play took: 0.001263 +[2025.06.16-10.59.24:813][332]LogOnline: OSS: Created online subsystem instance for: :Context_102 +[2025.06.16-10.59.24:815][332]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-10.59.24:815][332]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-10.59.24:816][332]PIE: Server logged in +[2025.06.16-10.59.24:817][332]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-10.59.30:736][ 32]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.34:739][512]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.34:739][512]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.36:740][752]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.36:740][752]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-10.59.39:740][112]LogTemp: 针对目标 |Skill_4 释放技能效果Charge +[2025.06.16-10.59.39:740][112]LogTemp: 针对目标 |Skill_7 释放技能效果Charge +[2025.06.16-10.59.41:741][352]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.42:742][472]LogTemp: 针对目标 释放技能效果ModifyCooldown +[2025.06.16-10.59.42:742][472]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.44:735][711]LogTemp: 针对目标 释放技能效果SkillEnduranceRestore +[2025.06.16-10.59.44:735][711]LogTemp: 针对目标 |Skill_0 释放技能效果SkillEnduranceRestore +[2025.06.16-10.59.44:744][712]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.45:745][832]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-10.59.48:745][192]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.51:747][552]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.54:740][911]LogTemp: 针对目标 |Skill_4 释放技能效果Charge +[2025.06.16-10.59.54:740][911]LogTemp: 针对目标 |Skill_7 释放技能效果Charge +[2025.06.16-10.59.54:749][912]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-10.59.54:749][912]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-10.59.54:749][912]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-10.59.58:750][390]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-11.00.00:744][629]LogTemp: 针对目标 释放技能效果ModifyCooldown +[2025.06.16-11.00.00:752][630]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.00.04:738][108]LogTemp: 针对目标 释放技能效果SkillEnduranceRestore +[2025.06.16-11.00.04:738][108]LogTemp: 针对目标 |Skill_0 释放技能效果SkillEnduranceRestore +[2025.06.16-11.00.04:755][110]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.16-11.00.06:757][350]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.00.07:998][493]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.00.07:998][493]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.00.07:998][493]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.00.07:999][493]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.00.07:999][493]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.00.08:003][493]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.00.08:008][493]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.00.08:025][493]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-11.00.08:027][493]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 89 +[2025.06.16-11.00.08:027][493]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=89 +[2025.06.16-11.00.08:028][493]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=89 +[2025.06.16-11.00.08:032][493]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.00.08:034][493]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-11.00.08:078][494]LogPlayLevel: Display: Destroying online subsystem :Context_102 +[2025.06.16-11.00.09:705][678]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5179.534180 +[2025.06.16-11.00.09:981][711]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-11.00.09:981][711]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5179.803711, Update Interval: 359.373749 +[2025.06.16-11.03.09:963][191]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-11.03.11:090][296]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.03.11:095][296]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.03.11:095][296]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.03.11:097][296]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.359 ms (total: 129.869 ms) +[2025.06.16-11.03.11:097][296]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.03.11:097][296]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.03.11:099][296]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002477s) +[2025.06.16-11.03.11:099][296]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002641s) +[2025.06.16-11.03.11:113][296]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-11.03.11:118][296]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.03.11:119][296]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.03.11:119][296]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.03.11:119][296]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.03.11:119][296]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.03.11:121][296]LogWorldPartition: Display: WorldPartition initialize took 1.120 ms (total: 179.909 ms) +[2025.06.16-11.03.11:121][296]LogPlayLevel: PIE: World Init took: (0.002758s) +[2025.06.16-11.03.11:121][296]LogAudio: Display: Creating Audio Device: Id: 90, Scope: Unique, Realtime: True +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.03.11:122][296]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.03.11:122][296]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.03.11:122][296]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.03.11:122][296]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.03.11:122][296]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.03.11:125][296]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.03.11:150][296]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.03.11:150][296]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.03.11:150][296]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.03.11:150][296]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.03.11:151][296]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=90 +[2025.06.16-11.03.11:151][296]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=90 +[2025.06.16-11.03.11:153][296]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=90 +[2025.06.16-11.03.11:154][296]LogInit: FAudioDevice initialized with ID 90. +[2025.06.16-11.03.11:154][296]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=90 +[2025.06.16-11.03.11:154][296]LogAudio: Display: Audio Device (ID: 90) registered with world 'Dabaza'. +[2025.06.16-11.03.11:154][296]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 90 +[2025.06.16-11.03.11:156][296]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.03.11:157][296]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.03.11 +[2025.06.16-11.03.11:157][296]LogWorld: Bringing up level for play took: 0.001295 +[2025.06.16-11.03.11:160][296]LogOnline: OSS: Created online subsystem instance for: :Context_103 +[2025.06.16-11.03.11:163][296]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.03.11:163][296]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.03.11:164][296]PIE: Server logged in +[2025.06.16-11.03.11:165][296]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-11.03.14:759][712]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.03.14:759][712]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.03.14:760][712]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.03.14:761][712]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.03.14:761][712]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.03.14:772][712]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.03.14:776][712]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.03.14:797][712]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.03.14:797][712]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 90 +[2025.06.16-11.03.14:797][712]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=90 +[2025.06.16-11.03.14:799][712]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=90 +[2025.06.16-11.03.14:804][712]LogUObjectHash: Compacting FUObjectHashTables data took 1.02ms +[2025.06.16-11.03.14:845][713]LogPlayLevel: Display: Destroying online subsystem :Context_103 +[2025.06.16-11.03.15:413][779]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.03.15:418][779]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.03.15:418][779]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.03.15:420][779]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.333 ms (total: 131.203 ms) +[2025.06.16-11.03.15:420][779]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.03.15:420][779]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.03.15:422][779]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002173s) +[2025.06.16-11.03.15:422][779]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002320s) +[2025.06.16-11.03.15:439][779]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-11.03.15:442][779]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.03.15:443][779]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.03.15:443][779]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.03.15:443][779]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.03.15:443][779]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.03.15:444][779]LogWorldPartition: Display: WorldPartition initialize took 1.157 ms (total: 181.066 ms) +[2025.06.16-11.03.15:444][779]LogPlayLevel: PIE: World Init took: (0.002644s) +[2025.06.16-11.03.15:444][779]LogAudio: Display: Creating Audio Device: Id: 91, Scope: Unique, Realtime: True +[2025.06.16-11.03.15:444][779]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.03.15:444][779]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.03.15:444][779]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.03.15:445][779]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.03.15:445][779]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.03.15:445][779]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.03.15:445][779]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.03.15:445][779]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.03.15:445][779]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.03.15:445][779]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.03.15:445][779]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.03.15:447][779]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.03.15:472][779]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.03.15:473][779]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.03.15:473][779]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.03.15:473][779]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.03.15:473][779]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=91 +[2025.06.16-11.03.15:473][779]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=91 +[2025.06.16-11.03.15:476][779]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=91 +[2025.06.16-11.03.15:476][779]LogInit: FAudioDevice initialized with ID 91. +[2025.06.16-11.03.15:476][779]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=91 +[2025.06.16-11.03.15:476][779]LogAudio: Display: Audio Device (ID: 91) registered with world 'Dabaza'. +[2025.06.16-11.03.15:476][779]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 91 +[2025.06.16-11.03.15:478][779]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.03.15:479][779]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.03.15 +[2025.06.16-11.03.15:480][779]LogWorld: Bringing up level for play took: 0.001265 +[2025.06.16-11.03.15:482][779]LogOnline: OSS: Created online subsystem instance for: :Context_104 +[2025.06.16-11.03.15:485][779]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.03.15:485][779]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.03.15:486][779]PIE: Server logged in +[2025.06.16-11.03.15:487][779]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-11.03.21:412][476]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.03.21:412][476]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.03.21:412][476]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-11.03.23:409][715]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.03.23:410][715]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-11.03.25:410][954]LogTemp: 针对目标 |Skill_2|Skill_9 释放技能效果ModifySpeed +[2025.06.16-11.03.27:413][192]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.03.27:413][192]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-11.03.27:413][192]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-11.03.27:413][192]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.16-11.03.27:413][192]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-11.03.30:410][548]LogTemp: Warning: 取消CD充能效果! +[2025.06.16-11.03.30:411][548]LogTemp: 针对目标 |Skill_8 释放技能效果Charge +[2025.06.16-11.03.30:411][548]LogTemp: 针对目标 |Skill_9 释放技能效果Charge +[2025.06.16-11.03.30:411][548]LogTemp: 针对目标 |Skill_11 释放技能效果Charge +[2025.06.16-11.03.30:411][548]LogTemp: 针对目标 |Skill_13 释放技能效果Charge +[2025.06.16-11.03.30:411][548]LogTemp: 针对目标 释放技能效果Charge +[2025.06.16-11.03.31:410][667]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-11.03.31:411][667]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 玩家死亡 +[2025.06.16-11.03.34:718][ 51]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.03.34:719][ 51]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.03.34:719][ 51]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.03.34:719][ 51]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.03.34:719][ 51]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.03.34:725][ 51]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.03.34:729][ 51]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.03.34:748][ 51]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.03.34:749][ 51]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 91 +[2025.06.16-11.03.34:749][ 51]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=91 +[2025.06.16-11.03.34:750][ 51]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=91 +[2025.06.16-11.03.34:757][ 51]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-11.03.34:802][ 52]LogPlayLevel: Display: Destroying online subsystem :Context_104 +[2025.06.16-11.03.36:492][240]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-11.03.37:495][240]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-11.03.37:507][240]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.03.37:584][240]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-11.03.37:584][240]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-11.03.37:584][240]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-11.03.37:598][240]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-11.03.37:599][240]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode9633119B4C240E6362E6BD8103E317A8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-11.03.37:600][240]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/Characters/BP_DeepFish] ([2] browsable assets)... +[2025.06.16-11.03.37:600][240]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_37 +[2025.06.16-11.03.37:647][240]OBJ SavePackage: Rendered thumbnail for [Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish] +[2025.06.16-11.03.37:647][240]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_DeepFish] +[2025.06.16-11.03.37:647][240]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_DeepFish" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_DeepFish.uasset" SILENT=true +[2025.06.16-11.03.37:651][240]LogSavePackage: Moving output files for package: /Game/Characters/BP_DeepFish +[2025.06.16-11.03.37:652][240]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_DeepFish9FD4EE544F0D1D56F9CF4EB7522806BC.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_DeepFish.uasset' +[2025.06.16-11.03.37:654][240]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.16-11.03.37:654][240]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A9266DFDED944A7FE8FE731241B2BF0A2951.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.16-11.03.37:667][240]LogFileHelpers: InternalPromptForCheckoutAndSave took 159.433 ms (total: 3.77 sec) +[2025.06.16-11.03.37:720][240]LogContentValidation: Display: Starting to validate 3 assets +[2025.06.16-11.03.37:720][240]LogContentValidation: Enabled validators: +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.03.37:720][240]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.03.37:721][240]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-11.03.37:721][240]AssetCheck: /Game/Characters/BP_DeepFish Validating asset +[2025.06.16-11.03.37:721][240]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.16-11.04.46:192][161]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_PawnEntity.BP_PawnEntity +[2025.06.16-11.04.46:193][161]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_38 +[2025.06.16-11.05.31:847][415]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-11.05.47:174][122]LogClass: Warning: Type mismatch in SkillArrays of BP_PawnEntity_C - Previous (BoolProperty) Current(ArrayProperty) in package: FObjectReader +[2025.06.16-11.05.47:174][122]LogClass: Warning: Type mismatch in SkillArrays of BP_Dabaza_Pawn_C - Previous (BoolProperty) Current(ArrayProperty) in package: FObjectReader +[2025.06.16-11.05.47:175][122]LogClass: Warning: Type mismatch in SkillArrays of BP_DeepFish_C - Previous (BoolProperty) Current(ArrayProperty) in package: FObjectReader +[2025.06.16-11.05.47:220][122]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-11.05.47:821][163]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.05.47:882][163]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_PawnEntity] ([2] browsable assets)... +[2025.06.16-11.05.47:882][163]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_PawnEntity] +[2025.06.16-11.05.47:882][163]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_PawnEntity" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset" SILENT=true +[2025.06.16-11.05.47:888][163]LogSavePackage: Moving output files for package: /Game/Characters/BP_PawnEntity +[2025.06.16-11.05.47:888][163]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_PawnEntityA67FCD574A137B2FFF1F9780668B4D13.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset' +[2025.06.16-11.05.47:900][163]LogFileHelpers: InternalPromptForCheckoutAndSave took 78.271 ms (total: 3.85 sec) +[2025.06.16-11.05.47:961][163]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-11.05.47:961][163]LogContentValidation: Enabled validators: +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.05.47:961][163]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.05.47:963][163]AssetCheck: /Game/Characters/BP_PawnEntity Validating asset +[2025.06.16-11.06.27:047][579]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-11.06.27:493][609]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.06.27:545][609]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_PawnEntity] ([2] browsable assets)... +[2025.06.16-11.06.27:545][609]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_PawnEntity] +[2025.06.16-11.06.27:545][609]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_PawnEntity" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset" SILENT=true +[2025.06.16-11.06.27:552][609]LogSavePackage: Moving output files for package: /Game/Characters/BP_PawnEntity +[2025.06.16-11.06.27:552][609]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_PawnEntityA650A21D4DDF56BB28ACFCBC119D1DA9.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset' +[2025.06.16-11.06.27:563][609]LogFileHelpers: InternalPromptForCheckoutAndSave took 69.196 ms (total: 3.92 sec) +[2025.06.16-11.06.27:610][609]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-11.06.27:610][609]LogContentValidation: Enabled validators: +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.06.27:610][609]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.06.27:610][609]AssetCheck: /Game/Characters/BP_PawnEntity Validating asset +[2025.06.16-11.06.47:215][823]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5577.089844 +[2025.06.16-11.06.47:510][856]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-11.06.47:510][856]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5577.375488, Update Interval: 355.502808 +[2025.06.16-11.06.48:624][973]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.06.48:684][973]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.16-11.06.48:685][973]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A926BC32257D4D89D122C01F3E925978C3D6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.16-11.06.48:696][973]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.455 ms (total: 3.99 sec) +[2025.06.16-11.06.48:744][973]LogContentValidation: Display: Starting to validate 4 assets +[2025.06.16-11.06.48:744][973]LogContentValidation: Enabled validators: +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.06.48:744][973]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.06.48:745][973]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.16-11.07.23:100][752]LogSlate: Window 'Change Variable Type' being destroyed +[2025.06.16-11.08.00:057][835]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-11.08.00:574][869]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.08.00:639][869]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-11.08.00:639][869]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-11.08.00:639][869]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-11.08.00:654][869]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-11.08.00:654][869]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeEA7F3E2E4B457192ACED99A2E3F4B5D5.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-11.08.00:666][869]LogFileHelpers: InternalPromptForCheckoutAndSave took 91.062 ms (total: 4.08 sec) +[2025.06.16-11.08.00:720][869]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-11.08.00:720][869]LogContentValidation: Enabled validators: +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.08.00:720][869]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.08.00:720][869]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-11.08.03:090][137]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.08.03:095][137]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.08.03:095][137]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.08.03:097][137]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.361 ms (total: 132.564 ms) +[2025.06.16-11.08.03:097][137]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.08.03:097][137]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.03:100][137]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002396s) +[2025.06.16-11.08.03:100][137]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002540s) +[2025.06.16-11.08.03:114][137]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-11.08.03:117][137]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.08.03:118][137]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.08.03:118][137]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.08.03:118][137]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.08.03:118][137]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.08.03:119][137]LogWorldPartition: Display: WorldPartition initialize took 1.058 ms (total: 182.125 ms) +[2025.06.16-11.08.03:119][137]LogPlayLevel: PIE: World Init took: (0.002597s) +[2025.06.16-11.08.03:119][137]LogAudio: Display: Creating Audio Device: Id: 92, Scope: Unique, Realtime: True +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.08.03:120][137]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.08.03:120][137]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.08.03:120][137]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.08.03:120][137]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.08.03:120][137]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.08.03:122][137]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.08.03:150][137]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.08.03:150][137]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.08.03:150][137]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.08.03:150][137]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.08.03:150][137]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=92 +[2025.06.16-11.08.03:151][137]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=92 +[2025.06.16-11.08.03:153][137]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=92 +[2025.06.16-11.08.03:153][137]LogInit: FAudioDevice initialized with ID 92. +[2025.06.16-11.08.03:153][137]LogAudio: Display: Audio Device (ID: 92) registered with world 'Dabaza'. +[2025.06.16-11.08.03:153][137]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=92 +[2025.06.16-11.08.03:153][137]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 92 +[2025.06.16-11.08.03:156][137]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.08.03:157][137]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.08.03 +[2025.06.16-11.08.03:158][137]LogWorld: Bringing up level for play took: 0.001264 +[2025.06.16-11.08.03:160][137]LogOnline: OSS: Created online subsystem instance for: :Context_107 +[2025.06.16-11.08.03:162][137]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.08.03:163][137]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.08.03:163][137]PIE: Server logged in +[2025.06.16-11.08.03:164][137]PIE: Play in editor total start time 0.069 seconds. +[2025.06.16-11.08.04:668][298]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.04:668][298]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.04:668][298]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.08.04:669][298]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.04:669][298]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.08.04:673][298]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.08.04:678][298]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.04:695][298]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.04:695][298]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 92 +[2025.06.16-11.08.04:696][298]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=92 +[2025.06.16-11.08.04:697][298]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=92 +[2025.06.16-11.08.04:702][298]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-11.08.04:745][299]LogPlayLevel: Display: Destroying online subsystem :Context_107 +[2025.06.16-11.08.05:077][334]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.08.05:082][334]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.08.05:083][334]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.08.05:084][334]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.290 ms (total: 133.855 ms) +[2025.06.16-11.08.05:084][334]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.08.05:084][334]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.05:087][334]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002367s) +[2025.06.16-11.08.05:087][334]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002536s) +[2025.06.16-11.08.05:101][334]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-11.08.05:103][334]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.08.05:105][334]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.08.05:105][334]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.08.05:105][334]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.08.05:105][334]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.08.05:105][334]LogWorldPartition: Display: WorldPartition initialize took 1.018 ms (total: 183.143 ms) +[2025.06.16-11.08.05:105][334]LogPlayLevel: PIE: World Init took: (0.002579s) +[2025.06.16-11.08.05:106][334]LogAudio: Display: Creating Audio Device: Id: 93, Scope: Unique, Realtime: True +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.08.05:106][334]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.08.05:106][334]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.08.05:106][334]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.08.05:106][334]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.08.05:106][334]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.08.05:109][334]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.08.05:133][334]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.08.05:133][334]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.08.05:134][334]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.08.05:134][334]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.08.05:134][334]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=93 +[2025.06.16-11.08.05:134][334]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=93 +[2025.06.16-11.08.05:137][334]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=93 +[2025.06.16-11.08.05:137][334]LogInit: FAudioDevice initialized with ID 93. +[2025.06.16-11.08.05:137][334]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=93 +[2025.06.16-11.08.05:137][334]LogAudio: Display: Audio Device (ID: 93) registered with world 'Dabaza'. +[2025.06.16-11.08.05:137][334]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 93 +[2025.06.16-11.08.05:139][334]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.08.05:140][334]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.08.05 +[2025.06.16-11.08.05:141][334]LogWorld: Bringing up level for play took: 0.001263 +[2025.06.16-11.08.05:144][334]LogOnline: OSS: Created online subsystem instance for: :Context_108 +[2025.06.16-11.08.05:146][334]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.08.05:146][334]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.08.05:147][334]PIE: Server logged in +[2025.06.16-11.08.05:148][334]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-11.08.06:477][478]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.06:478][478]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.06:478][478]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.08.06:478][478]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.06:478][478]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.08.06:483][478]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.08.06:488][478]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.06:505][478]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.06:506][478]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 93 +[2025.06.16-11.08.06:506][478]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=93 +[2025.06.16-11.08.06:507][478]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=93 +[2025.06.16-11.08.06:513][478]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-11.08.06:555][479]LogPlayLevel: Display: Destroying online subsystem :Context_108 +[2025.06.16-11.08.06:941][520]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.08.06:946][520]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.08.06:946][520]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.08.06:948][520]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.242 ms (total: 135.097 ms) +[2025.06.16-11.08.06:948][520]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.08.06:948][520]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.06:951][520]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002366s) +[2025.06.16-11.08.06:951][520]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002542s) +[2025.06.16-11.08.06:965][520]LogUObjectHash: Compacting FUObjectHashTables data took 0.94ms +[2025.06.16-11.08.06:968][520]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.08.06:969][520]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.08.06:969][520]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.08.06:969][520]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.08.06:969][520]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.08.06:970][520]LogWorldPartition: Display: WorldPartition initialize took 969 us (total: 184.113 ms) +[2025.06.16-11.08.06:970][520]LogPlayLevel: PIE: World Init took: (0.002337s) +[2025.06.16-11.08.06:970][520]LogAudio: Display: Creating Audio Device: Id: 94, Scope: Unique, Realtime: True +[2025.06.16-11.08.06:970][520]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.08.06:971][520]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.08.06:971][520]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.08.06:971][520]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.08.06:971][520]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.08.06:971][520]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.08.06:973][520]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.08.06:998][520]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.08.06:998][520]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.08.06:999][520]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.08.06:999][520]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.08.06:999][520]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=94 +[2025.06.16-11.08.06:999][520]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=94 +[2025.06.16-11.08.07:001][520]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=94 +[2025.06.16-11.08.07:002][520]LogInit: FAudioDevice initialized with ID 94. +[2025.06.16-11.08.07:002][520]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=94 +[2025.06.16-11.08.07:002][520]LogAudio: Display: Audio Device (ID: 94) registered with world 'Dabaza'. +[2025.06.16-11.08.07:002][520]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 94 +[2025.06.16-11.08.07:004][520]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.08.07:005][520]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.08.07 +[2025.06.16-11.08.07:005][520]LogWorld: Bringing up level for play took: 0.001209 +[2025.06.16-11.08.07:008][520]LogOnline: OSS: Created online subsystem instance for: :Context_109 +[2025.06.16-11.08.07:011][520]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.08.07:011][520]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.08.07:012][520]PIE: Server logged in +[2025.06.16-11.08.07:013][520]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-11.08.08:348][661]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.08:348][661]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.08:348][661]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.08.08:348][661]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.08:348][661]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.08.08:354][661]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.08.08:357][661]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.08:374][661]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.08:374][661]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 94 +[2025.06.16-11.08.08:375][661]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=94 +[2025.06.16-11.08.08:377][661]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=94 +[2025.06.16-11.08.08:381][661]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-11.08.08:428][662]LogPlayLevel: Display: Destroying online subsystem :Context_109 +[2025.06.16-11.08.09:864][813]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-11.08.18:074][727]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.08.18:137][727]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.16-11.08.18:138][727]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A9262538D50D48C2134303016C81CB4394E0.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.16-11.08.18:148][727]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.133 ms (total: 4.16 sec) +[2025.06.16-11.08.18:201][727]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-11.08.18:201][727]LogContentValidation: Enabled validators: +[2025.06.16-11.08.18:201][727]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.08.18:202][727]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.08.18:202][727]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.08.18:202][727]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.08.18:202][727]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.08.18:202][727]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.08.18:202][727]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.16-11.08.18:771][787]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.08.18:775][787]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.08.18:775][787]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.08.18:777][787]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.266 ms (total: 136.363 ms) +[2025.06.16-11.08.18:777][787]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.08.18:777][787]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.18:780][787]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002202s) +[2025.06.16-11.08.18:780][787]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002374s) +[2025.06.16-11.08.18:793][787]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-11.08.18:795][787]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.08.18:797][787]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.08.18:797][787]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.08.18:797][787]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.08.18:797][787]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.08.18:798][787]LogWorldPartition: Display: WorldPartition initialize took 1.021 ms (total: 185.134 ms) +[2025.06.16-11.08.18:798][787]LogPlayLevel: PIE: World Init took: (0.002346s) +[2025.06.16-11.08.18:798][787]LogAudio: Display: Creating Audio Device: Id: 95, Scope: Unique, Realtime: True +[2025.06.16-11.08.18:798][787]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.08.18:798][787]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.08.18:798][787]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.08.18:798][787]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.08.18:799][787]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.08.18:799][787]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.08.18:799][787]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.08.18:799][787]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.08.18:799][787]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.08.18:799][787]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.08.18:799][787]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.08.18:801][787]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.08.18:825][787]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.08.18:825][787]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.08.18:827][787]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.08.18:827][787]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.08.18:827][787]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=95 +[2025.06.16-11.08.18:827][787]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=95 +[2025.06.16-11.08.18:829][787]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=95 +[2025.06.16-11.08.18:829][787]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=95 +[2025.06.16-11.08.18:829][787]LogInit: FAudioDevice initialized with ID 95. +[2025.06.16-11.08.18:829][787]LogAudio: Display: Audio Device (ID: 95) registered with world 'Dabaza'. +[2025.06.16-11.08.18:829][787]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 95 +[2025.06.16-11.08.18:832][787]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.08.18:833][787]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.08.18 +[2025.06.16-11.08.18:833][787]LogWorld: Bringing up level for play took: 0.001354 +[2025.06.16-11.08.18:835][787]LogOnline: OSS: Created online subsystem instance for: :Context_110 +[2025.06.16-11.08.18:837][787]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.08.18:837][787]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.08.18:838][787]PIE: Server logged in +[2025.06.16-11.08.18:839][787]PIE: Play in editor total start time 0.064 seconds. +[2025.06.16-11.08.20:067][920]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.20:068][920]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.20:068][920]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.08.20:068][920]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.20:068][920]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.08.20:073][920]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.08.20:077][920]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.20:095][920]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.20:096][920]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 95 +[2025.06.16-11.08.20:096][920]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=95 +[2025.06.16-11.08.20:098][920]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=95 +[2025.06.16-11.08.20:102][920]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.16-11.08.20:173][922]LogPlayLevel: Display: Destroying online subsystem :Context_110 +[2025.06.16-11.08.20:500][958]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-11.08.20:505][958]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-11.08.20:505][958]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-11.08.20:507][958]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.241 ms (total: 137.605 ms) +[2025.06.16-11.08.20:507][958]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-11.08.20:507][958]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.20:509][958]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002269s) +[2025.06.16-11.08.20:509][958]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002449s) +[2025.06.16-11.08.20:523][958]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-11.08.20:526][958]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-11.08.20:528][958]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-11.08.20:528][958]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-11.08.20:528][958]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-11.08.20:528][958]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-11.08.20:529][958]LogWorldPartition: Display: WorldPartition initialize took 1.041 ms (total: 186.175 ms) +[2025.06.16-11.08.20:529][958]LogPlayLevel: PIE: World Init took: (0.002497s) +[2025.06.16-11.08.20:529][958]LogAudio: Display: Creating Audio Device: Id: 96, Scope: Unique, Realtime: True +[2025.06.16-11.08.20:529][958]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-11.08.20:529][958]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-11.08.20:530][958]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-11.08.20:530][958]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-11.08.20:530][958]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-11.08.20:530][958]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-11.08.20:530][958]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-11.08.20:530][958]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-11.08.20:530][958]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-11.08.20:530][958]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-11.08.20:530][958]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-11.08.20:532][958]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-11.08.20:557][958]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-11.08.20:557][958]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-11.08.20:557][958]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-11.08.20:557][958]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-11.08.20:558][958]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=96 +[2025.06.16-11.08.20:558][958]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=96 +[2025.06.16-11.08.20:560][958]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=96 +[2025.06.16-11.08.20:560][958]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=96 +[2025.06.16-11.08.20:560][958]LogInit: FAudioDevice initialized with ID 96. +[2025.06.16-11.08.20:560][958]LogAudio: Display: Audio Device (ID: 96) registered with world 'Dabaza'. +[2025.06.16-11.08.20:560][958]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 96 +[2025.06.16-11.08.20:562][958]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-11.08.20:563][958]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.16-19.08.20 +[2025.06.16-11.08.20:564][958]LogWorld: Bringing up level for play took: 0.001178 +[2025.06.16-11.08.20:565][958]LogOnline: OSS: Created online subsystem instance for: :Context_111 +[2025.06.16-11.08.20:568][958]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-11.08.20:568][958]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-11.08.20:569][958]PIE: Server logged in +[2025.06.16-11.08.20:570][958]PIE: Play in editor total start time 0.065 seconds. +[2025.06.16-11.08.21:548][ 58]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.21:548][ 58]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-11.08.21:549][ 58]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.08.21:549][ 58]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.21:549][ 58]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-11.08.21:554][ 58]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-11.08.21:558][ 58]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.08.21:576][ 58]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-11.08.21:576][ 58]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 96 +[2025.06.16-11.08.21:576][ 58]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=96 +[2025.06.16-11.08.21:579][ 58]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=96 +[2025.06.16-11.08.21:584][ 58]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-11.08.21:630][ 59]LogPlayLevel: Display: Destroying online subsystem :Context_111 +[2025.06.16-11.08.51:508][340]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-11.08.52:667][340]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-11.08.52:679][340]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-11.08.52:733][340]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.16-11.08.52:734][340]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A9267BBD14234B3C2AC8BF94E99D46EF82C8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.16-11.08.52:744][340]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.163 ms (total: 4.22 sec) +[2025.06.16-11.08.52:796][340]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-11.08.52:796][340]LogContentValidation: Enabled validators: +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-11.08.52:796][340]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-11.08.52:796][340]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.16-11.09.07:053][441]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms +[2025.06.16-11.09.07:090][441]LogStall: Shutdown... +[2025.06.16-11.09.07:090][441]LogStall: Shutdown complete. +[2025.06.16-11.09.07:245][441]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:245][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:388][441]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:388][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:395][441]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:395][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:438][441]LogWorld: UWorld::CleanupWorld for World_4, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:438][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:444][441]LogWorld: UWorld::CleanupWorld for World_3, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:444][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:526][441]LogWorld: UWorld::CleanupWorld for World_14, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:526][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:533][441]LogWorld: UWorld::CleanupWorld for World_13, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:533][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:600][441]LogWorld: UWorld::CleanupWorld for World_22, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:600][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:607][441]LogWorld: UWorld::CleanupWorld for World_21, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:607][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:643][441]LogActorComponent: UnregisterComponent: (/Engine/Transient.EditorFloorComp) Not registered. Aborting. +[2025.06.16-11.09.07:643][441]LogWorld: UWorld::CleanupWorld for World_35, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:643][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:697][441]LogActorComponent: UnregisterComponent: (/Engine/Transient.EditorFloorComp) Not registered. Aborting. +[2025.06.16-11.09.07:697][441]LogWorld: UWorld::CleanupWorld for World_38, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.07:699][441]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.07:751][441]LogSlate: Window 'Open Asset' being destroyed +[2025.06.16-11.09.07:758][441]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.16-11.09.07:763][441]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-11.09.08:052][441]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-11.09.08:072][441]Cmd: QUIT_EDITOR +[2025.06.16-11.09.08:073][442]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.16-11.09.08:078][442]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.16-11.09.08:078][442]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.16-11.09.08:079][442]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.16-11.09.08:080][442]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:080][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:081][442]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-11.09.08:091][442]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.16-11.09.08:094][442]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.16-11.09.08:103][442]LogWorld: UWorld::CleanupWorld for World_37, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:103][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:107][442]LogWorld: UWorld::CleanupWorld for World_19, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:107][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:110][442]LogWorld: UWorld::CleanupWorld for World_18, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:110][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:113][442]LogWorld: UWorld::CleanupWorld for World_16, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:113][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:116][442]LogWorld: UWorld::CleanupWorld for World_17, bSessionEnded=true, bCleanupResources=true +[2025.06.16-11.09.08:116][442]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-11.09.08:123][442]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.16-11.09.08:126][442]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.16-11.09.08:127][442]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.16-11.09.08:127][442]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.16-11.09.08:744][442]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.16-11.09.08:744][442]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.16-11.09.08:744][442]LogAudio: Display: Audio Device unregistered from world 'Dabaza'. +[2025.06.16-11.09.08:744][442]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.16-11.09.08:744][442]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-11.09.08:746][442]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-11.09.08:754][442]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.16-11.09.08:754][442]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.16-11.09.08:759][442]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.16-11.09.08:761][442]LogExit: Preparing to exit. +[2025.06.16-11.09.08:797][442]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-11.09.08:802][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:802][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:802][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:802][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:803][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:804][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:804][442]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.08:804][442]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-11.09.10:049][442]LogEditorDataStorage: Deinitializing +[2025.06.16-11.09.10:257][442]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.16-11.09.10:305][442]LogExit: Editor shut down +[2025.06.16-11.09.10:308][442]LogExit: Transaction tracking system shut down +[2025.06.16-11.09.10:555][442]LogCore: Error: PropertyBag: Expecting RefCount to be zero on destructor, but it is 4. +[2025.06.16-11.09.10:570][442]LogExit: Object subsystem successfully closed. +[2025.06.16-11.09.10:592][442]LogShaderCompilers: Display: Shaders left to compile 0 +[2025.06.16-11.09.11:508][442]LogMemoryProfiler: Shutdown +[2025.06.16-11.09.11:509][442]LogNetworkingProfiler: Shutdown +[2025.06.16-11.09.11:509][442]LoadingProfiler: Shutdown +[2025.06.16-11.09.11:509][442]LogTimingProfiler: Shutdown +[2025.06.16-11.09.12:304][442]LogChaosDD: Chaos Debug Draw Shutdown +[2025.06.16-11.09.12:325][442]LogHttp: Warning: [FHttpManager::Shutdown] Unbinding delegates for 1 outstanding Http Requests: +[2025.06.16-11.09.12:325][442]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B0A837460-4A90-8223-1BC4-AE92C26FDC76%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.5.4-40574608%2B%2B%2BUE5%2BRelease-5.5&UserID=2be356334d8ddcb1f8647180700f1260%7C7c48bd058d394a9b9827119f4ec4df20%7C391af7e5-d023-4a12-bd83-a39d12e0079d&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[2] status=Processing +[2025.06.16-11.09.13:377][442]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] +[2025.06.16-11.09.13:377][442]RenderDocPlugin: plugin has been unloaded. +[2025.06.16-11.09.13:383][442]LogStudioTelemetry: Display: Shutdown StudioTelemetry Module +[2025.06.16-11.09.13:383][442]LogNFORDenoise: NFORDenoise function shutting down +[2025.06.16-11.09.13:387][442]LogXGEController: Cleaning working directory: C:/Users/99714/AppData/Local/Temp/UnrealXGEWorkingDir/ +[2025.06.16-11.09.13:393][442]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +[2025.06.16-11.09.13:393][442]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +[2025.06.16-11.09.13:394][442]LogPakFile: Destroying PakPlatformFile +[2025.06.16-11.09.13:683][442]LogD3D12RHI: ~FD3D12DynamicRHI +[2025.06.16-11.09.13:743][442]LogExit: Exiting. +[2025.06.16-11.09.13:767][442]Log file closed, 06/16/25 19:09:13 diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.33.08.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.33.08.log new file mode 100644 index 0000000..5098dae --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.33.08.log @@ -0,0 +1,3265 @@ +Log file open, 06/17/25 06:19:50 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=24712) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 1.046783 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-0EFA6EEF439FE2557AB1A68DB70BD868 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogConfig: Display: Loading VulkanPC ini files took 0.03 seconds +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogConfig: Display: Loading Android ini files took 0.03 seconds +LogConfig: Display: Loading Mac ini files took 0.03 seconds +LogConfig: Display: Loading Unix ini files took 0.03 seconds +LogConfig: Display: Loading IOS ini files took 0.03 seconds +LogConfig: Display: Loading VisionOS ini files took 0.04 seconds +LogConfig: Display: Loading TVOS ini files took 0.04 seconds +LogConfig: Display: Loading Windows ini files took 0.04 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.04 seconds +LogConfig: Display: Loading Linux ini files took 0.04 seconds +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin ConcertSyncCore +LogPluginManager: Mounting Engine plugin ConcertSyncClient +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.44ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.05ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-22.19.51:563][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-22.19.51:563][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-22.19.51:563][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-22.19.51:563][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-22.19.51:564][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-22.19.51:565][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-22.19.51:565][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-22.19.51:565][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-22.19.51:569][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-22.19.51:570][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-22.19.51:576][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-22.19.51:576][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-22.19.51:576][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-22.19.51:587][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-22.19.51:587][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-22.19.51:770][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.19.51:770][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.19.51:770][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-22.19.51:771][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.19.51:771][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.19.51:780][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-22.19.51:780][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.19.51:780][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.19.51:877][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.19.51:877][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.19.51:877][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.19.51:877][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.19.51:877][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.19.51:971][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.19.51:971][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.19.51:971][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.19.51:971][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.19.51:971][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.19.51:972][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-22.19.51:972][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-22.19.51:972][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-22.19.51:972][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-22.19.51:972][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-22.19.51:974][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-22.19.51:974][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-22.19.51:974][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-22.19.51:974][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-22.19.51:974][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-22.19.51:975][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-22.19.51:975][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-22.19.51:975][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-22.19.51:975][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-22.19.51:975][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-22.19.51:975][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-22.19.51:975][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-22.19.51:975][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-22.19.51:975][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-22.19.51:975][ 0]LogInit: Computer: T +[2025.06.16-22.19.51:975][ 0]LogInit: User: 99714 +[2025.06.16-22.19.51:975][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-22.19.51:975][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-22.19.52:259][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-22.19.52:259][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-22.19.52:259][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-22.19.52:259][ 0]LogMemory: Process Physical Memory: 617.21 MB used, 630.10 MB peak +[2025.06.16-22.19.52:259][ 0]LogMemory: Process Virtual Memory: 667.21 MB used, 667.21 MB peak +[2025.06.16-22.19.52:259][ 0]LogMemory: Physical Memory: 14868.50 MB used, 17640.80 MB free, 32509.30 MB total +[2025.06.16-22.19.52:259][ 0]LogMemory: Virtual Memory: 22500.09 MB used, 30489.21 MB free, 52989.30 MB total +[2025.06.16-22.19.52:259][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-22.19.52:264][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-22.19.52:280][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-22.19.52:280][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-22.19.52:283][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-22.19.52:283][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-22.19.52:298][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-22.19.52:569][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-22.19.52:569][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.19.52:569][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-22.19.52:569][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-22.19.52:569][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.19.52:596][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-22.19.52:596][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-22.19.52:874][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-22.19.52:874][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-22.19.52:874][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-22.19.52:874][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-22.19.52:874][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-22.19.52:874][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-22.19.52:875][ 0]LogWindows: Attached monitors: +[2025.06.16-22.19.52:875][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-22.19.52:875][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-22.19.52:875][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-22.19.52:875][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-22.19.52:876][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-22.19.52:876][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-22.19.52:876][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.19.52:876][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-22.19.52:876][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-22.19.52:876][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-22.19.52:945][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-22.19.52:945][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-22.19.52:993][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-22.19.52:993][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-22.19.52:993][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-22.19.52:994][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-22.19.53:053][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B4FAE442300) +[2025.06.16-22.19.53:053][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B4FAE442580) +[2025.06.16-22.19.53:054][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000B4FAE442800) +[2025.06.16-22.19.53:054][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-22.19.53:054][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-22.19.53:055][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-22.19.53:055][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-22.19.53:055][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-22.19.53:078][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-22.19.53:087][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-22.19.53:100][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-22.19.53:100][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-22.19.53:129][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-22.19.53:129][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-22.19.53:129][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-22.19.53:129][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-22.19.53:129][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-22.19.53:129][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-22.19.53:129][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-22.19.53:132][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-22.19.53:134][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-22.19.53:175][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-22.19.53:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-22.19.53:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-22.19.53:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-22.19.53:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-22.19.53:196][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-22.19.53:196][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-22.19.53:216][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-22.19.53:216][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-22.19.53:216][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-22.19.53:216][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-22.19.53:236][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-22.19.53:236][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-22.19.53:236][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-22.19.53:256][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-22.19.53:256][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-22.19.53:256][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-22.19.53:256][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-22.19.53:274][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-22.19.53:274][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-22.19.53:298][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-22.19.53:298][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-22.19.53:298][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-22.19.53:298][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-22.19.53:298][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-22.19.53:433][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-22.19.53:438][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-22.19.53:438][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-22.19.53:438][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-22.19.53:443][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-22.19.53:444][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-22.19.53:444][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-22.19.53:444][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-22.19.53:444][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-22.19.53:499][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-22.19.53:499][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-22.19.53:499][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-22.19.53:501][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-22.19.53:503][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-22.19.53:503][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-22.19.53:504][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-22.19.53:504][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 27092 --child-id Zen_27092_Startup' +[2025.06.16-22.19.53:816][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-22.19.53:816][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.314 seconds +[2025.06.16-22.19.53:828][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-22.19.53:845][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.02 seconds. +[2025.06.16-22.19.53:846][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.15ms. RandomReadSpeed=205.63MBs, RandomWriteSpeed=91.58MBs. Assigned SpeedClass 'Local' +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-22.19.53:847][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-22.19.53:849][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/27092/). +[2025.06.16-22.19.53:849][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/D6B35C1749FE6C684F161785802C2296/'. +[2025.06.16-22.19.53:849][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-22.19.53:850][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-22.19.53:852][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-22.19.53:852][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-22.19.54:358][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-22.19.55:117][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-22.19.55:119][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-22.19.55:123][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-22.19.55:123][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-22.19.55:127][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-22.19.55:127][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-22.19.55:127][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-22.19.55:127][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-22.19.55:153][ 0]LogAssetRegistry: FAssetRegistry took 0.0052 seconds to start up +[2025.06.16-22.19.55:157][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-22.19.55:158][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-22.19.55:391][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.19.55:402][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-22.19.55:402][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-22.19.55:402][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-22.19.55:419][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-22.19.55:419][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-22.19.55:442][ 0]LogDeviceProfileManager: Active device profile: [00000B4FCBF83400][00000B4FB05BC000 66] WindowsEditor +[2025.06.16-22.19.55:442][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-22.19.55:445][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-22.19.55:450][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-22.19.55:450][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-22.19.55:521][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:523][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:524][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-22.19.55:526][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:527][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:527][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-22.19.55:527][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:527][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:527][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-22.19.55:529][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.19.55:530][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-22.19.55:530][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:530][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.19.55:530][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-22.19.55:530][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.19.55:782][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-22.19.55:782][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-22.19.55:782][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-22.19.55:782][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-22.19.55:782][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-22.19.56:225][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-22.19.56:389][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.54ms +[2025.06.16-22.19.56:427][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.47ms +[2025.06.16-22.19.56:462][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.16-22.19.56:463][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.16-22.19.56:753][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-22.19.56:753][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-22.19.56:803][ 0]LogSlate: Border +[2025.06.16-22.19.56:803][ 0]LogSlate: BreadcrumbButton +[2025.06.16-22.19.56:803][ 0]LogSlate: Brushes.Title +[2025.06.16-22.19.56:803][ 0]LogSlate: Default +[2025.06.16-22.19.56:803][ 0]LogSlate: Icons.Save +[2025.06.16-22.19.56:803][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-22.19.56:803][ 0]LogSlate: ListView +[2025.06.16-22.19.56:803][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-22.19.56:803][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-22.19.56:803][ 0]LogSlate: TableView.DarkRow +[2025.06.16-22.19.56:803][ 0]LogSlate: TableView.Row +[2025.06.16-22.19.56:803][ 0]LogSlate: TreeView +[2025.06.16-22.19.56:966][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-22.19.56:971][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 4.653 ms +[2025.06.16-22.19.56:990][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.36ms +[2025.06.16-22.19.57:020][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-22.19.57:020][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-22.19.57:020][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-22.19.57:020][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-22.19.57:117][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-22.19.57:118][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-22.19.57:118][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:50287'. +[2025.06.16-22.19.57:123][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-22.19.57:129][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-22.19.57:209][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.46ms +[2025.06.16-22.19.57:325][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 05A36208A0DA46CF8000000000007600 | Instance: 28FB0B4B4E5377B629743DA45EEEE41E (T-27092). +[2025.06.16-22.19.58:040][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-22.19.58:040][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-22.19.58:040][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-22.19.58:040][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-22.19.58:242][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-22.19.58:243][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-22.19.58:259][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-22.19.59:208][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-22.19.59:625][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.48ms +[2025.06.16-22.19.59:640][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-22.20.00:057][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.20.00:078][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-22.20.00:078][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-22.20.00:092][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.20.00:352][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-22.20.00:407][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-22.20.00:428][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-22.20.00:429][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-22.20.00:549][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-22.20.00:551][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-22.20.00:551][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-22.20.00:551][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-22.20.00:552][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-22.20.00:552][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-22.20.00:552][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-22.20.00:553][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-22.20.00:553][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-22.20.00:555][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-22.20.00:555][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-22.20.00:556][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-22.20.00:556][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-22.20.00:557][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-22.20.00:557][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-22.20.00:558][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-22.20.00:558][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-22.20.00:558][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-22.20.00:559][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-22.20.00:559][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-22.20.00:560][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-22.20.00:562][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-22.20.00:563][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-22.20.00:563][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-22.20.00:564][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-22.20.00:564][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-22.20.00:565][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-22.20.00:565][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-22.20.00:566][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-22.20.00:567][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-22.20.00:567][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-22.20.00:567][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-22.20.00:568][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-22.20.00:569][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-22.20.00:569][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-22.20.00:775][ 0]LogCollectionManager: Loaded 0 collections in 0.000638 seconds +[2025.06.16-22.20.00:776][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-22.20.00:776][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-22.20.00:776][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-22.20.00:888][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-22.20.00:888][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-22.20.00:890][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-22.20.00:890][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-22.20.00:890][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-22.20.00:890][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-22.20.00:914][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-22.20.00:914][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-22.20.00:927][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T22:20:00.927Z using C +[2025.06.16-22.20.00:927][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-22.20.00:929][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-22.20.00:930][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-22.20.00:940][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-22.20.00:943][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-22.20.00:943][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-22.20.00:944][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000326 +[2025.06.16-22.20.00:945][ 0]LogFab: Display: Logging in using persist +[2025.06.16-22.20.00:984][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.16-22.20.00:984][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-22.20.00:995][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-22.20.00:995][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-22.20.01:105][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:105][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:109][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-22.20.01:118][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:134][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:140][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.20.01:142][ 0]LogEngine: Initializing Engine... +[2025.06.16-22.20.01:150][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-22.20.01:150][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-22.20.01:221][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-22.20.01:242][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-22.20.01:274][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-22.20.01:274][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-22.20.01:286][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-22.20.01:292][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-22.20.01:302][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-22.20.01:302][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.20.01:303][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.20.01:303][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.20.01:312][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.20.01:355][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.20.01:356][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.20.01:358][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.20.01:358][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.20.01:359][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-22.20.01:359][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-22.20.01:361][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-22.20.01:361][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-22.20.01:361][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-22.20.01:361][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-22.20.01:361][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-22.20.01:373][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-22.20.01:377][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-22.20.01:378][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-22.20.01:397][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-22.20.01:511][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.44ms +[2025.06.16-22.20.01:512][ 0]LocalizationService: Localization service is disabled +[2025.06.16-22.20.01:540][ 0]LogTimingProfiler: Initialize +[2025.06.16-22.20.01:542][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-22.20.01:542][ 0]LoadingProfiler: Initialize +[2025.06.16-22.20.01:542][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-22.20.01:543][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-22.20.01:544][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-22.20.01:544][ 0]LogMemoryProfiler: Initialize +[2025.06.16-22.20.01:544][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-22.20.01:783][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-22.20.01:819][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-22.20.01:819][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-22.20.01:823][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-22.20.02:560][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-22.20.02:607][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-22.20.02:669][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-22.20.02:669][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-22.20.02:709][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-22.20.02:881][ 0]LogEditorDataStorage: Initializing +[2025.06.16-22.20.02:883][ 0]LogEditorDataStorage: Initialized +[2025.06.16-22.20.02:908][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-22.20.02:914][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.20.02:915][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 13.505 +[2025.06.16-22.20.02:919][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-22.20.02:923][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.20.02:923][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.20.02:928][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-22.20.02:942][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-22.20.03:640][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-22.20.04:535][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-22.20.04:546][ 0]LogSkeletalMesh: Built Skeletal Mesh [5.34s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-22.20.04:564][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.20.04:570][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.43ms +[2025.06.16-22.20.04:584][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-22.20.04:584][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-22.20.04:588][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-22.20.04:588][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.20.04:588][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.20.04:661][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-22.20.04:679][ 0]LogWorldPartition: Display: WorldPartition initialize took 91.237 ms +[2025.06.16-22.20.04:694][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-22.20.04:706][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-22.20.04:706][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-22.20.04:707][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.529ms to complete. +[2025.06.16-22.20.04:715][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 15.306 +[2025.06.16-22.20.04:845][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-22.20.04:922][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.20.04:955][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.20.04:987][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.20.05:020][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.20.05:030][ 0]LogSlate: Took 0.000778 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-22.20.05:048][ 0]LogSlate: Took 0.001174 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-22.20.05:052][ 0]LogSlate: Took 0.003381 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-22.20.05:162][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:163][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-22.20.05:165][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:166][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-22.20.05:166][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:167][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:168][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:168][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:170][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:171][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-22.20.05:171][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:172][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:172][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:173][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-22.20.05:173][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:173][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:174][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:174][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:175][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.20.05:175][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-22.20.05:391][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:391][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:391][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:392][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:392][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:392][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:392][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:393][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.20.05:585][ 0]LogSlate: Took 0.000495 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-22.20.05:587][ 0]LogSlate: Took 0.000514 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-22.20.05:616][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-22.20.05:622][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-22.20.05:622][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-22.20.05:622][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-22.20.05:679][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-22.20.05:679][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-22.20.05:681][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-22.20.05:682][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-22.20.05:682][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-22.20.05:710][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-22.20.05:710][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-22.20.05:752][ 0]LogSlate: Took 0.000626 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-22.20.05:809][ 0]LogSlate: Took 0.000456 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-22.20.05:921][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 107.26 ms. Compile time 27.67 ms, link time 79.49 ms. +[2025.06.16-22.20.06:040][ 0]LogStall: Startup... +[2025.06.16-22.20.06:042][ 0]LogStall: Startup complete. +[2025.06.16-22.20.06:051][ 0]LogLoad: (Engine Initialization) Total time: 16.64 seconds +[2025.06.16-22.20.06:186][ 0]LogAssetRegistry: AssetRegistryGather time 0.1429s: AssetDataDiscovery 0.0808s, AssetDataGather 0.0152s, StoreResults 0.0469s. Wall time 11.0380s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7498. NumUncachedFiles 9. + BackgroundTickInterruptions 0. +[2025.06.16-22.20.06:205][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-22.20.06:207][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-22.20.06:208][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-22.20.06:208][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-22.20.06:250][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.20.06:255][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-22.20.06:321][ 0]LogPython: registering + +[2025.06.16-22.20.06:324][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 68.040 ms +[2025.06.16-22.20.06:453][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.248254 seconds (Found 7482 uncontrolled assets) +[2025.06.16-22.20.07:200][ 5]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.20.07:573][ 6]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.305384 +[2025.06.16-22.20.07:574][ 6]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-22.20.07:575][ 6]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6.629953 +[2025.06.16-22.20.08:862][ 10]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.20.08:909][ 10]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-22.20.09:196][ 11]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-22.20.09:285][ 12]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.293477 +[2025.06.16-22.20.09:287][ 12]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-22.20.09:287][ 12]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.293477, Update Interval: 343.413788 +[2025.06.16-22.20.09:625][ 14]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-22.20.09:955][ 15]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.16-22.20.09:969][ 15]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.17-00.20.08 Remaining: 7200.62] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15479685.57] State: Valid +[2025.06.16-22.20.10:297][ 16]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-22.20.10:636][ 17]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.16-22.20.11:344][ 21]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-22.20.11:344][ 21]LogFab: Display: User logged in +[2025.06.16-22.20.11:344][ 21]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-22.20.11:998][ 23]LogStreaming: Display: FlushAsyncLoading(365): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.20.12:020][ 23]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer +[2025.06.16-22.20.12:021][ 23]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.16-22.20.12:028][ 23]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_5 +[2025.06.16-22.20.12:035][ 23]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.16-22.20.12:915][ 23]LogSlate: Took 0.000913 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-22.20.12:941][ 23]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.16-22.20.12:942][ 23]LogSlate: Took 0.000631 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-22.20.12:961][ 23]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-mXtQhe-wCkKu7puEZfxuiA-TYtZgO2Kdkm6P7nVluYXkQ] +[2025.06.16-22.20.58:800][193]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-22.20.59:489][258]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.20.59:537][258]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.20.59:539][258]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.20.59:539][258]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.20.59:539][258]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.20.59:546][258]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.20.59:547][258]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer247F2F5541FFF13DD5D6C0931B9E2B55.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.20.59:557][258]LogFileHelpers: InternalPromptForCheckoutAndSave took 67.122 ms +[2025.06.16-22.20.59:618][258]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.20.59:618][258]LogContentValidation: Enabled validators: +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.20.59:618][258]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.20.59:619][258]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.21.53:848][613]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.16-22.21.56:761][943]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.21.57:413][ 8]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.21.57:469][ 8]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.21.57:471][ 8]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.21.57:471][ 8]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.21.57:471][ 8]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.21.57:476][ 8]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.21.57:476][ 8]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer50955E994C3E0F796D8DD3AF6DB675DF.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.21.57:486][ 8]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.120 ms (total: 140.243 ms) +[2025.06.16-22.21.57:535][ 8]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.21.57:535][ 8]LogContentValidation: Enabled validators: +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.21.57:535][ 8]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.21.57:535][ 8]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.22.00:020][279]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.16-22.22.00:022][279]LogStreaming: Display: FlushAsyncLoading(537): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.22.00:093][279]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.22.00:094][279]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-22.22.00:094][279]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.22.00:094][279]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.22.00:172][279]LogWorldPartition: Display: WorldPartition initialize took 78.329 ms (total: 169.566 ms) +[2025.06.16-22.22.00:177][279]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.16-22.22.00:178][279]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-22.22.00:232][279]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.22.00:233][279]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.00:233][279]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.16-22.22.00:253][279]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.22.00:256][279]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.16-22.22.00:257][279]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.22.00:257][279]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.00:257][279]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-22.22.00:272][279]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-22.22.00:285][279]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-22.22.00:299][279]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.16-22.22.00:299][279]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.22.00:300][279]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-22.22.00:300][279]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.22.00:300][279]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.22.00:309][279]LogWorldPartition: Display: WorldPartition initialize took 8.515 ms (total: 178.082 ms) +[2025.06.16-22.22.00:336][279]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-22.22.00:353][279]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-22.22.00:360][279]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-22.22.00:360][279]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.488ms to complete. +[2025.06.16-22.22.01:295][363]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.22.01:316][363]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.22.01:316][363]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.22.01:318][363]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 2.167 ms +[2025.06.16-22.22.01:318][363]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.22.01:322][363]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.16-22.22.01:322][363]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.16-22.22.01:322][363]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.22.01:326][363]LogPlayLevel: PIE: StaticDuplicateObject took: (0.003680s) +[2025.06.16-22.22.01:326][363]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.003710s) +[2025.06.16-22.22.01:339][363]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.16-22.22.01:341][363]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.22.01:342][363]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.22.01:342][363]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.22.01:342][363]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.22.01:342][363]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.22.01:343][363]LogWorldPartition: Display: WorldPartition initialize took 795 us (total: 178.877 ms) +[2025.06.16-22.22.01:343][363]LogPlayLevel: PIE: World Init took: (0.001872s) +[2025.06.16-22.22.01:343][363]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.16-22.22.01:343][363]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.22.01:344][363]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.22.01:344][363]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.22.01:344][363]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.22.01:344][363]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.22.01:344][363]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.22.01:345][363]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.22.01:371][363]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.22.01:371][363]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.22.01:371][363]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.22.01:371][363]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.22.01:371][363]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.16-22.22.01:371][363]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.16-22.22.01:373][363]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.16-22.22.01:373][363]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.16-22.22.01:373][363]LogInit: FAudioDevice initialized with ID 2. +[2025.06.16-22.22.01:373][363]LogAudio: Display: Audio Device (ID: 2) registered with world 'Dabaza'. +[2025.06.16-22.22.01:373][363]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-22.22.01:375][363]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.22.01:376][363]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.22.01 +[2025.06.16-22.22.01:378][363]LogWorld: Bringing up level for play took: 0.002405 +[2025.06.16-22.22.01:380][363]LogOnline: OSS: Created online subsystem instance for: :Context_7 +[2025.06.16-22.22.01:387][363]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.22.01:387][363]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.22.01:389][363]PIE: Server logged in +[2025.06.16-22.22.01:390][363]PIE: Play in editor total start time 0.089 seconds. +[2025.06.16-22.22.06:015][889]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.22.06:015][889]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.22.06:015][889]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.22.06:015][889]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.06:015][889]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.22.06:018][889]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.22.06:021][889]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.06:036][889]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.22.06:036][889]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.16-22.22.06:037][889]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-22.22.06:038][889]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.16-22.22.06:043][889]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.22.06:070][890]LogPlayLevel: Display: Destroying online subsystem :Context_7 +[2025.06.16-22.22.19:322][438]LogAssetEditorSubsystem: Opening Asset editor for DataTable /Game/DataTable/PawnSkills.PawnSkills +[2025.06.16-22.22.19:382][438]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.22.28:237][465]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.22.30:272][704]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.22.45:957][332]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.22.45:962][332]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.22.45:962][332]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.22.45:965][332]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.338 ms (total: 3.505 ms) +[2025.06.16-22.22.45:965][332]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.22.45:965][332]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.22.45:967][332]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002294s) +[2025.06.16-22.22.45:967][332]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002318s) +[2025.06.16-22.22.45:987][332]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.16-22.22.45:989][332]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.22.45:989][332]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.22.45:989][332]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.22.45:989][332]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.22.45:989][332]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.22.45:990][332]LogWorldPartition: Display: WorldPartition initialize took 838 us (total: 179.716 ms) +[2025.06.16-22.22.45:990][332]LogPlayLevel: PIE: World Init took: (0.002052s) +[2025.06.16-22.22.45:991][332]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.22.45:991][332]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.22.45:991][332]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.22.45:991][332]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.22.45:991][332]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.22.45:991][332]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.22.45:992][332]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.22.46:018][332]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.22.46:018][332]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.22.46:018][332]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.22.46:018][332]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.22.46:019][332]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.16-22.22.46:019][332]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.16-22.22.46:020][332]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.16-22.22.46:020][332]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.16-22.22.46:020][332]LogInit: FAudioDevice initialized with ID 3. +[2025.06.16-22.22.46:020][332]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.16-22.22.46:020][332]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-22.22.46:023][332]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.22.46:024][332]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.22.46 +[2025.06.16-22.22.46:024][332]LogWorld: Bringing up level for play took: 0.001105 +[2025.06.16-22.22.46:026][332]LogOnline: OSS: Created online subsystem instance for: :Context_8 +[2025.06.16-22.22.46:028][332]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.22.46:028][332]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.22.46:028][332]PIE: Server logged in +[2025.06.16-22.22.46:030][332]PIE: Play in editor total start time 0.067 seconds. +[2025.06.16-22.22.51:951][991]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-22.22.54:920][342]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.22.54:920][342]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.22.54:920][342]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.22.54:921][342]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.54:921][342]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.22.54:923][342]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.22.54:926][342]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.22.54:940][342]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.22.54:940][342]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.16-22.22.54:940][342]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-22.22.54:943][342]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.16-22.22.54:946][342]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.22.54:947][342]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.22.55:017][344]LogPlayLevel: Display: Destroying online subsystem :Context_8 +[2025.06.16-22.23.12:676][383]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-22.23.13:250][441]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.23.13:318][441]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.23.13:320][441]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.23.13:320][441]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.23.13:320][441]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.23.13:326][441]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.23.13:327][441]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer25DA223D47891D2130AAD39653857118.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.23.13:336][441]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.169 ms (total: 226.412 ms) +[2025.06.16-22.23.13:397][441]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.23.13:397][441]LogContentValidation: Enabled validators: +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.23.13:397][441]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.23.13:398][441]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.23.14:402][537]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.23.14:408][537]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.23.14:408][537]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.23.14:409][537]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.269 ms (total: 4.775 ms) +[2025.06.16-22.23.14:409][537]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.23.14:409][537]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.23.14:411][537]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002279s) +[2025.06.16-22.23.14:411][537]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002299s) +[2025.06.16-22.23.14:424][537]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-22.23.14:426][537]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.23.14:427][537]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.23.14:427][537]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.23.14:427][537]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.23.14:427][537]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.23.14:428][537]LogWorldPartition: Display: WorldPartition initialize took 799 us (total: 180.515 ms) +[2025.06.16-22.23.14:428][537]LogPlayLevel: PIE: World Init took: (0.001925s) +[2025.06.16-22.23.14:428][537]LogAudio: Display: Creating Audio Device: Id: 4, Scope: Unique, Realtime: True +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.23.14:428][537]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.23.14:428][537]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.23.14:428][537]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.23.14:428][537]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.23.14:428][537]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.23.14:429][537]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.23.14:452][537]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.23.14:453][537]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.23.14:453][537]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.23.14:453][537]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.23.14:453][537]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=4 +[2025.06.16-22.23.14:453][537]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=4 +[2025.06.16-22.23.14:455][537]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=4 +[2025.06.16-22.23.14:455][537]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=4 +[2025.06.16-22.23.14:455][537]LogInit: FAudioDevice initialized with ID 4. +[2025.06.16-22.23.14:455][537]LogAudio: Display: Audio Device (ID: 4) registered with world 'Dabaza'. +[2025.06.16-22.23.14:455][537]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-22.23.14:457][537]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.23.14:458][537]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.23.14 +[2025.06.16-22.23.14:458][537]LogWorld: Bringing up level for play took: 0.001076 +[2025.06.16-22.23.14:460][537]LogOnline: OSS: Created online subsystem instance for: :Context_9 +[2025.06.16-22.23.14:462][537]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.23.14:462][537]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.23.14:464][537]PIE: Server logged in +[2025.06.16-22.23.14:464][537]PIE: Play in editor total start time 0.056 seconds. +[2025.06.16-22.23.20:397][231]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.20:397][231]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.20:397][231]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-22.23.26:403][934]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.26:403][934]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.26:403][934]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-22.23.26:762][971]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.23.32:546][647]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.32:546][647]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.32:546][647]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-22.23.34:541][883]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2 释放技能效果SkillEnduranceRestore +[2025.06.16-22.23.38:553][339]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.38:553][339]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.16-22.23.38:553][339]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.16-22.23.38:553][339]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 玩家死亡 +[2025.06.16-22.23.39:240][411]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.23.39:241][411]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.23.39:241][411]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.23.39:241][411]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.23.39:241][411]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.23.39:245][411]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.23.39:250][411]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.23.39:263][411]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.23.39:263][411]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.16-22.23.39:263][411]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-22.23.39:265][411]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.16-22.23.39:269][411]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.23.39:271][411]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.23.39:310][412]LogPlayLevel: Display: Destroying online subsystem :Context_9 +[2025.06.16-22.23.46:865][188]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.23.46:870][188]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.23.46:870][188]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.23.46:872][188]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.247 ms (total: 6.022 ms) +[2025.06.16-22.23.46:872][188]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.23.46:872][188]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.23.46:874][188]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002143s) +[2025.06.16-22.23.46:874][188]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002164s) +[2025.06.16-22.23.46:885][188]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-22.23.46:886][188]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.23.46:887][188]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.23.46:887][188]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.23.46:887][188]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.23.46:887][188]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.23.46:888][188]LogWorldPartition: Display: WorldPartition initialize took 780 us (total: 181.296 ms) +[2025.06.16-22.23.46:888][188]LogPlayLevel: PIE: World Init took: (0.001877s) +[2025.06.16-22.23.46:889][188]LogAudio: Display: Creating Audio Device: Id: 5, Scope: Unique, Realtime: True +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.23.46:889][188]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.23.46:889][188]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.23.46:889][188]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.23.46:889][188]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.23.46:889][188]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.23.46:890][188]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.23.46:916][188]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.23.46:916][188]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.23.46:916][188]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.23.46:916][188]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.23.46:917][188]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=5 +[2025.06.16-22.23.46:917][188]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=5 +[2025.06.16-22.23.46:918][188]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=5 +[2025.06.16-22.23.46:918][188]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=5 +[2025.06.16-22.23.46:918][188]LogInit: FAudioDevice initialized with ID 5. +[2025.06.16-22.23.46:918][188]LogAudio: Display: Audio Device (ID: 5) registered with world 'Dabaza'. +[2025.06.16-22.23.46:919][188]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-22.23.46:920][188]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.23.46:921][188]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.23.46 +[2025.06.16-22.23.46:921][188]LogWorld: Bringing up level for play took: 0.001073 +[2025.06.16-22.23.46:924][188]LogOnline: OSS: Created online subsystem instance for: :Context_10 +[2025.06.16-22.23.46:926][188]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.23.46:926][188]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.23.46:926][188]PIE: Server logged in +[2025.06.16-22.23.46:927][188]PIE: Play in editor total start time 0.057 seconds. +[2025.06.16-22.24.00:350][756]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.24.00:350][756]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.24.00:350][756]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.24.00:350][756]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.24.00:350][756]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.24.00:353][756]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.24.00:356][756]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.24.00:370][756]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.24.00:370][756]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.16-22.24.00:370][756]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-22.24.00:372][756]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.16-22.24.00:378][756]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.16-22.24.00:447][758]LogPlayLevel: Display: Destroying online subsystem :Context_10 +[2025.06.16-22.24.06:338][373]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.24.20:264][845]LogSelectionDetails: Warning: NavigateToFunctionSource: Unable to find source file and line number for 'UGridPanel::SetColumnFill' [找不到元素。] +[2025.06.16-22.24.38:717][688]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_9 +[2025.06.16-22.24.38:756][689]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_10 +[2025.06.16-22.24.47:721][590]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_11 +[2025.06.16-22.24.47:779][591]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_12 +[2025.06.16-22.24.47:796][592]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_13 +[2025.06.16-22.24.47:817][593]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_14 +[2025.06.16-22.24.47:952][598]LogSlate: Warning: Unable to rasterize '../../../Engine/Content/Editor/Slate/Starship/AssetIcons/SkeletalMesh_64.svg'. File could not be found +[2025.06.16-22.24.47:956][599]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_15 +[2025.06.16-22.24.48:010][600]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_16 +[2025.06.16-22.24.48:028][601]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_17 +[2025.06.16-22.24.48:045][602]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_18 +[2025.06.16-22.24.48:061][603]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_19 +[2025.06.16-22.24.48:078][604]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_20 +[2025.06.16-22.24.48:096][605]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_21 +[2025.06.16-22.24.48:113][606]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_22 +[2025.06.16-22.24.48:131][607]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_23 +[2025.06.16-22.25.03:614][252]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.16-22.25.03:614][252]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_24 +[2025.06.16-22.25.03:667][252]LogStreaming: Display: FlushAsyncLoading(591): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.25.24:639][638]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-22.25.25:578][730]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.25.25:640][730]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.16-22.25.25:640][730]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.16-22.25.25:640][730]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.16-22.25.25:655][730]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.16-22.25.25:655][730]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode36ACFF4F4A156B2DC3AFB5B06385CAF0.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.16-22.25.25:665][730]LogFileHelpers: InternalPromptForCheckoutAndSave took 87.196 ms (total: 313.609 ms) +[2025.06.16-22.25.25:722][730]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.25.25:722][730]LogContentValidation: Enabled validators: +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.25.25:722][730]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.25.25:722][730]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.16-22.25.27:093][867]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.25.27:098][867]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.25.27:098][867]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.25.27:099][867]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.227 ms (total: 7.249 ms) +[2025.06.16-22.25.27:099][867]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.25.27:099][867]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.25.27:102][867]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002240s) +[2025.06.16-22.25.27:102][867]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002261s) +[2025.06.16-22.25.27:115][867]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.25.27:117][867]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.25.27:118][867]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.25.27:118][867]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.25.27:118][867]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.25.27:118][867]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.25.27:118][867]LogWorldPartition: Display: WorldPartition initialize took 816 us (total: 182.113 ms) +[2025.06.16-22.25.27:118][867]LogPlayLevel: PIE: World Init took: (0.001947s) +[2025.06.16-22.25.27:119][867]LogAudio: Display: Creating Audio Device: Id: 6, Scope: Unique, Realtime: True +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.25.27:119][867]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.25.27:119][867]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.25.27:119][867]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.25.27:119][867]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.25.27:119][867]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.25.27:121][867]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.25.27:148][867]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.25.27:148][867]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.25.27:148][867]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.25.27:148][867]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.25.27:148][867]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=6 +[2025.06.16-22.25.27:148][867]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=6 +[2025.06.16-22.25.27:150][867]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=6 +[2025.06.16-22.25.27:150][867]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=6 +[2025.06.16-22.25.27:150][867]LogInit: FAudioDevice initialized with ID 6. +[2025.06.16-22.25.27:150][867]LogAudio: Display: Audio Device (ID: 6) registered with world 'Dabaza'. +[2025.06.16-22.25.27:150][867]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-22.25.27:152][867]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.25.27:153][867]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.25.27 +[2025.06.16-22.25.27:153][867]LogWorld: Bringing up level for play took: 0.001100 +[2025.06.16-22.25.27:155][867]LogOnline: OSS: Created online subsystem instance for: :Context_27 +[2025.06.16-22.25.27:157][867]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.25.27:157][867]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.25.27:159][867]PIE: Server logged in +[2025.06.16-22.25.27:159][867]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-22.25.33:810][627]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.25.33:810][627]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.25.33:810][627]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.25.33:810][627]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.25.33:810][627]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.25.33:814][627]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.25.33:817][627]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.25.33:832][627]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.25.33:832][627]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.16-22.25.33:832][627]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-22.25.33:834][627]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.16-22.25.33:837][627]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.25.33:838][627]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.16-22.25.33:882][628]LogPlayLevel: Display: Destroying online subsystem :Context_27 +[2025.06.16-22.25.44:398][683]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.25.44:403][683]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.25.44:403][683]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.25.44:405][683]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.225 ms (total: 8.475 ms) +[2025.06.16-22.25.44:405][683]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.25.44:405][683]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.25.44:407][683]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002178s) +[2025.06.16-22.25.44:407][683]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002199s) +[2025.06.16-22.25.44:419][683]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-22.25.44:420][683]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.25.44:421][683]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.25.44:421][683]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.25.44:421][683]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.25.44:421][683]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.25.44:422][683]LogWorldPartition: Display: WorldPartition initialize took 778 us (total: 182.891 ms) +[2025.06.16-22.25.44:422][683]LogPlayLevel: PIE: World Init took: (0.001839s) +[2025.06.16-22.25.44:423][683]LogAudio: Display: Creating Audio Device: Id: 7, Scope: Unique, Realtime: True +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.25.44:423][683]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.25.44:423][683]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.25.44:423][683]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.25.44:423][683]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.25.44:423][683]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.25.44:424][683]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.25.44:450][683]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.25.44:450][683]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.25.44:450][683]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.25.44:450][683]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.25.44:451][683]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=7 +[2025.06.16-22.25.44:451][683]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=7 +[2025.06.16-22.25.44:452][683]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=7 +[2025.06.16-22.25.44:452][683]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=7 +[2025.06.16-22.25.44:452][683]LogInit: FAudioDevice initialized with ID 7. +[2025.06.16-22.25.44:452][683]LogAudio: Display: Audio Device (ID: 7) registered with world 'Dabaza'. +[2025.06.16-22.25.44:452][683]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-22.25.44:455][683]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.25.44:456][683]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.25.44 +[2025.06.16-22.25.44:456][683]LogWorld: Bringing up level for play took: 0.001095 +[2025.06.16-22.25.44:458][683]LogOnline: OSS: Created online subsystem instance for: :Context_28 +[2025.06.16-22.25.44:461][683]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.25.44:461][683]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.25.44:461][683]PIE: Server logged in +[2025.06.16-22.25.44:462][683]PIE: Play in editor total start time 0.058 seconds. +[2025.06.16-22.25.46:350][882]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.25.46:350][882]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.25.46:350][882]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.25.46:350][882]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.25.46:350][882]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.25.46:353][882]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.25.46:356][882]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.25.46:370][882]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.25.46:370][882]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.16-22.25.46:370][882]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-22.25.46:372][882]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.16-22.25.46:377][882]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-22.25.46:421][883]LogPlayLevel: Display: Destroying online subsystem :Context_28 +[2025.06.16-22.25.52:665][533]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 351.721649 +[2025.06.16-22.25.52:923][560]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-22.25.52:923][560]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 351.969818, Update Interval: 356.566681 +[2025.06.16-22.26.00:322][303]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.26.00:326][303]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.26.00:326][303]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.26.00:328][303]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.176 ms (total: 9.651 ms) +[2025.06.16-22.26.00:328][303]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.26.00:328][303]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.00:330][303]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002153s) +[2025.06.16-22.26.00:330][303]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002174s) +[2025.06.16-22.26.00:342][303]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-22.26.00:343][303]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.26.00:344][303]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.26.00:344][303]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.26.00:344][303]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.26.00:344][303]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.26.00:345][303]LogWorldPartition: Display: WorldPartition initialize took 794 us (total: 183.686 ms) +[2025.06.16-22.26.00:345][303]LogPlayLevel: PIE: World Init took: (0.001888s) +[2025.06.16-22.26.00:345][303]LogAudio: Display: Creating Audio Device: Id: 8, Scope: Unique, Realtime: True +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.26.00:345][303]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.26.00:345][303]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.26.00:345][303]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.26.00:345][303]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.26.00:346][303]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.26.00:347][303]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.26.00:372][303]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.26.00:372][303]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.26.00:372][303]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.26.00:372][303]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.26.00:372][303]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=8 +[2025.06.16-22.26.00:372][303]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=8 +[2025.06.16-22.26.00:374][303]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=8 +[2025.06.16-22.26.00:374][303]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=8 +[2025.06.16-22.26.00:374][303]LogInit: FAudioDevice initialized with ID 8. +[2025.06.16-22.26.00:374][303]LogAudio: Display: Audio Device (ID: 8) registered with world 'Dabaza'. +[2025.06.16-22.26.00:374][303]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-22.26.00:378][303]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.26.00:378][303]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.26.00 +[2025.06.16-22.26.00:379][303]LogWorld: Bringing up level for play took: 0.001063 +[2025.06.16-22.26.00:380][303]LogOnline: OSS: Created online subsystem instance for: :Context_29 +[2025.06.16-22.26.00:383][303]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.26.00:383][303]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.26.00:384][303]PIE: Server logged in +[2025.06.16-22.26.00:385][303]PIE: Play in editor total start time 0.058 seconds. +[2025.06.16-22.26.05:670][885]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.05:670][885]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.05:671][885]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.26.05:671][885]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.05:671][885]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.26.05:673][885]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.26.05:676][885]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.05:690][885]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.05:690][885]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.16-22.26.05:690][885]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-22.26.05:692][885]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.16-22.26.05:696][885]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.16-22.26.05:740][886]LogPlayLevel: Display: Destroying online subsystem :Context_29 +[2025.06.16-22.26.06:219][923]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_25 +[2025.06.16-22.26.06:998][992]LogD3D12RHI: Creating RTPSO with 21 shaders (13 cached, 8 new) took 24.24 ms. Compile time 22.44 ms, link time 1.77 ms. +[2025.06.16-22.26.07:047][992]LogD3D12RHI: Creating RTPSO with 19 shaders (0 cached, 19 new) took 80.70 ms. Compile time 72.24 ms, link time 8.43 ms. +[2025.06.16-22.26.07:148][993]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-22.26.08:063][ 86]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.26.08:069][ 86]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.26.08:069][ 86]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.26.08:070][ 86]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.388 ms (total: 11.040 ms) +[2025.06.16-22.26.08:071][ 86]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.26.08:110][ 86]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.08:112][ 86]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002826s) +[2025.06.16-22.26.08:112][ 86]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002859s) +[2025.06.16-22.26.08:129][ 86]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-22.26.08:130][ 86]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.26.08:132][ 86]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.26.08:132][ 86]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.26.08:132][ 86]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.26.08:132][ 86]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.26.08:132][ 86]LogWorldPartition: Display: WorldPartition initialize took 781 us (total: 184.467 ms) +[2025.06.16-22.26.08:132][ 86]LogPlayLevel: PIE: World Init took: (0.001953s) +[2025.06.16-22.26.08:133][ 86]LogAudio: Display: Creating Audio Device: Id: 9, Scope: Unique, Realtime: True +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.26.08:133][ 86]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.26.08:133][ 86]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.26.08:133][ 86]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.26.08:133][ 86]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.26.08:133][ 86]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.26.08:135][ 86]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.26.08:159][ 86]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.26.08:159][ 86]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.26.08:159][ 86]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.26.08:159][ 86]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.26.08:160][ 86]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=9 +[2025.06.16-22.26.08:160][ 86]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=9 +[2025.06.16-22.26.08:162][ 86]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=9 +[2025.06.16-22.26.08:162][ 86]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=9 +[2025.06.16-22.26.08:162][ 86]LogInit: FAudioDevice initialized with ID 9. +[2025.06.16-22.26.08:162][ 86]LogAudio: Display: Audio Device (ID: 9) registered with world 'Dabaza'. +[2025.06.16-22.26.08:162][ 86]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-22.26.08:165][ 86]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.26.08:166][ 86]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.26.08 +[2025.06.16-22.26.08:167][ 86]LogWorld: Bringing up level for play took: 0.001089 +[2025.06.16-22.26.08:169][ 86]LogOnline: OSS: Created online subsystem instance for: :Context_31 +[2025.06.16-22.26.08:172][ 86]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.26.08:172][ 86]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.26.08:173][ 86]PIE: Server logged in +[2025.06.16-22.26.08:175][ 86]PIE: Play in editor total start time 0.105 seconds. +[2025.06.16-22.26.13:070][500]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.13:070][500]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.13:070][500]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.26.13:071][500]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.13:071][500]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.26.13:073][500]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.26.13:076][500]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.13:092][500]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.13:092][500]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.16-22.26.13:092][500]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-22.26.13:093][500]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.16-22.26.13:098][500]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-22.26.13:141][501]LogPlayLevel: Display: Destroying online subsystem :Context_31 +[2025.06.16-22.26.14:763][657]LogRenderer: Display: Invalidated clipmap due to WPO threshold change. This can occur due to resolution or FOV changes. +[2025.06.16-22.26.18:058][984]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.26.18:063][984]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.26.18:063][984]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.26.18:064][984]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.175 ms (total: 12.216 ms) +[2025.06.16-22.26.18:064][984]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.26.18:064][984]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.18:066][984]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002189s) +[2025.06.16-22.26.18:066][984]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002210s) +[2025.06.16-22.26.18:078][984]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-22.26.18:080][984]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.26.18:081][984]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.26.18:081][984]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.26.18:081][984]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.26.18:081][984]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.26.18:081][984]LogWorldPartition: Display: WorldPartition initialize took 781 us (total: 185.249 ms) +[2025.06.16-22.26.18:082][984]LogPlayLevel: PIE: World Init took: (0.001871s) +[2025.06.16-22.26.18:082][984]LogAudio: Display: Creating Audio Device: Id: 10, Scope: Unique, Realtime: True +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.26.18:082][984]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.26.18:082][984]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.26.18:082][984]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.26.18:082][984]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.26.18:082][984]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.26.18:084][984]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.26.18:110][984]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.26.18:110][984]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.26.18:110][984]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.26.18:110][984]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.26.18:110][984]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=10 +[2025.06.16-22.26.18:110][984]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=10 +[2025.06.16-22.26.18:112][984]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=10 +[2025.06.16-22.26.18:112][984]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=10 +[2025.06.16-22.26.18:112][984]LogInit: FAudioDevice initialized with ID 10. +[2025.06.16-22.26.18:112][984]LogAudio: Display: Audio Device (ID: 10) registered with world 'Dabaza'. +[2025.06.16-22.26.18:112][984]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-22.26.18:114][984]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.26.18:115][984]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.26.18 +[2025.06.16-22.26.18:115][984]LogWorld: Bringing up level for play took: 0.001055 +[2025.06.16-22.26.18:117][984]LogOnline: OSS: Created online subsystem instance for: :Context_32 +[2025.06.16-22.26.18:120][984]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.26.18:120][984]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.26.18:120][984]PIE: Server logged in +[2025.06.16-22.26.18:121][984]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.26.23:300][556]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.23:300][556]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.23:300][556]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.26.23:300][556]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.23:300][556]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.26.23:303][556]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.26.23:307][556]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.23:320][556]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.23:321][556]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.16-22.26.23:321][556]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-22.26.23:322][556]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.16-22.26.23:327][556]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.26.23:390][557]LogPlayLevel: Display: Destroying online subsystem :Context_32 +[2025.06.16-22.26.36:400][ 67]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.16-22.26.37:089][130]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.26.37:154][130]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.26.37:157][130]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.26.37:157][130]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.26.37:157][130]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.26.37:162][130]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.26.37:162][130]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerCD41F60F481C92A9F3BC59ADDB8F2CF6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.26.37:171][130]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.300 ms (total: 395.909 ms) +[2025.06.16-22.26.37:231][130]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.26.37:231][130]LogContentValidation: Enabled validators: +[2025.06.16-22.26.37:231][130]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.26.37:231][130]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.26.37:231][130]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.26.37:231][130]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.26.37:232][130]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.26.37:232][130]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.26.37:232][130]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.26.38:081][212]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.26.38:086][212]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.26.38:086][212]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.26.38:087][212]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.183 ms (total: 13.400 ms) +[2025.06.16-22.26.38:087][212]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.26.38:087][212]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.38:090][212]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002476s) +[2025.06.16-22.26.38:090][212]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002497s) +[2025.06.16-22.26.38:102][212]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-22.26.38:105][212]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.26.38:106][212]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.26.38:106][212]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.26.38:106][212]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.26.38:106][212]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.26.38:107][212]LogWorldPartition: Display: WorldPartition initialize took 792 us (total: 186.042 ms) +[2025.06.16-22.26.38:107][212]LogPlayLevel: PIE: World Init took: (0.001962s) +[2025.06.16-22.26.38:107][212]LogAudio: Display: Creating Audio Device: Id: 11, Scope: Unique, Realtime: True +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.26.38:107][212]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.26.38:107][212]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.26.38:107][212]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.26.38:107][212]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.26.38:107][212]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.26.38:109][212]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.26.38:136][212]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.26.38:136][212]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.26.38:136][212]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.26.38:136][212]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.26.38:137][212]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=11 +[2025.06.16-22.26.38:137][212]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=11 +[2025.06.16-22.26.38:138][212]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=11 +[2025.06.16-22.26.38:138][212]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=11 +[2025.06.16-22.26.38:138][212]LogInit: FAudioDevice initialized with ID 11. +[2025.06.16-22.26.38:138][212]LogAudio: Display: Audio Device (ID: 11) registered with world 'Dabaza'. +[2025.06.16-22.26.38:138][212]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-22.26.38:140][212]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.26.38:141][212]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.26.38 +[2025.06.16-22.26.38:142][212]LogWorld: Bringing up level for play took: 0.001055 +[2025.06.16-22.26.38:143][212]LogOnline: OSS: Created online subsystem instance for: :Context_33 +[2025.06.16-22.26.38:147][212]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.26.38:147][212]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.26.38:148][212]PIE: Server logged in +[2025.06.16-22.26.38:148][212]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-22.26.45:090][992]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.45:090][992]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.45:090][992]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.26.45:090][992]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.45:090][992]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.26.45:093][992]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.26.45:097][992]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.26.45:110][992]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.26.45:110][992]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.16-22.26.45:110][992]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-22.26.45:112][992]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.16-22.26.45:115][992]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.26.45:117][992]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-22.26.45:191][993]LogPlayLevel: Display: Destroying online subsystem :Context_33 +[2025.06.16-22.26.53:021][762]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.26.53:026][762]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.26.53:026][762]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.26.53:027][762]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.321 ms (total: 14.721 ms) +[2025.06.16-22.26.53:027][762]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.26.53:028][762]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.26.53:029][762]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002304s) +[2025.06.16-22.26.53:029][762]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002326s) +[2025.06.16-22.26.53:043][762]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.26.53:044][762]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.26.53:045][762]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.26.53:045][762]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.26.53:045][762]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.26.53:045][762]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.26.53:046][762]LogWorldPartition: Display: WorldPartition initialize took 774 us (total: 186.816 ms) +[2025.06.16-22.26.53:046][762]LogPlayLevel: PIE: World Init took: (0.001846s) +[2025.06.16-22.26.53:046][762]LogAudio: Display: Creating Audio Device: Id: 12, Scope: Unique, Realtime: True +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.26.53:046][762]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.26.53:046][762]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.26.53:046][762]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.26.53:046][762]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.26.53:046][762]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.26.53:048][762]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.26.53:073][762]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.26.53:073][762]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.26.53:073][762]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.26.53:073][762]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.26.53:073][762]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=12 +[2025.06.16-22.26.53:073][762]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=12 +[2025.06.16-22.26.53:075][762]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=12 +[2025.06.16-22.26.53:075][762]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=12 +[2025.06.16-22.26.53:075][762]LogInit: FAudioDevice initialized with ID 12. +[2025.06.16-22.26.53:075][762]LogAudio: Display: Audio Device (ID: 12) registered with world 'Dabaza'. +[2025.06.16-22.26.53:075][762]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-22.26.53:077][762]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.26.53:079][762]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.26.53 +[2025.06.16-22.26.53:079][762]LogWorld: Bringing up level for play took: 0.001063 +[2025.06.16-22.26.53:081][762]LogOnline: OSS: Created online subsystem instance for: :Context_34 +[2025.06.16-22.26.53:084][762]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.26.53:084][762]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.26.53:084][762]PIE: Server logged in +[2025.06.16-22.26.53:085][762]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.27.00:200][568]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.27.00:200][568]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.27.00:200][568]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.27.00:200][568]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.27.00:200][568]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.27.00:203][568]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.27.00:206][568]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.27.00:220][568]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.27.00:220][568]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.16-22.27.00:221][568]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-22.27.00:222][568]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.16-22.27.00:228][568]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.27.00:297][570]LogPlayLevel: Display: Destroying online subsystem :Context_34 +[2025.06.16-22.27.44:506][233]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.27.44:512][233]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.27.44:512][233]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.27.44:513][233]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.346 ms (total: 16.067 ms) +[2025.06.16-22.27.44:513][233]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.27.44:513][233]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.27.44:515][233]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002246s) +[2025.06.16-22.27.44:515][233]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002269s) +[2025.06.16-22.27.44:527][233]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-22.27.44:529][233]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.27.44:530][233]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.27.44:530][233]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.27.44:530][233]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.27.44:530][233]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.27.44:531][233]LogWorldPartition: Display: WorldPartition initialize took 796 us (total: 187.613 ms) +[2025.06.16-22.27.44:531][233]LogPlayLevel: PIE: World Init took: (0.001944s) +[2025.06.16-22.27.44:531][233]LogAudio: Display: Creating Audio Device: Id: 13, Scope: Unique, Realtime: True +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.27.44:531][233]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.27.44:531][233]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.27.44:531][233]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.27.44:531][233]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.27.44:531][233]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.27.44:533][233]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.27.44:558][233]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.27.44:558][233]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.27.44:558][233]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.27.44:558][233]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.27.44:558][233]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=13 +[2025.06.16-22.27.44:558][233]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=13 +[2025.06.16-22.27.44:560][233]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=13 +[2025.06.16-22.27.44:560][233]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=13 +[2025.06.16-22.27.44:560][233]LogInit: FAudioDevice initialized with ID 13. +[2025.06.16-22.27.44:560][233]LogAudio: Display: Audio Device (ID: 13) registered with world 'Dabaza'. +[2025.06.16-22.27.44:560][233]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-22.27.44:563][233]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.27.44:564][233]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.27.44 +[2025.06.16-22.27.44:564][233]LogWorld: Bringing up level for play took: 0.001103 +[2025.06.16-22.27.44:566][233]LogOnline: OSS: Created online subsystem instance for: :Context_35 +[2025.06.16-22.27.44:569][233]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.27.44:569][233]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.27.44:569][233]PIE: Server logged in +[2025.06.16-22.27.44:570][233]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.27.52:650][159]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.27.52:650][159]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.27.52:650][159]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.27.52:651][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.27.52:651][159]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.27.52:653][159]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.27.52:656][159]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.27.52:670][159]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.27.52:670][159]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.16-22.27.52:670][159]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-22.27.52:672][159]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.16-22.27.52:676][159]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-22.27.52:719][160]LogPlayLevel: Display: Destroying online subsystem :Context_35 +[2025.06.16-22.27.57:753][690]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.27.59:035][811]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.27.59:041][811]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.27.59:041][811]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.27.59:042][811]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.311 ms (total: 17.378 ms) +[2025.06.16-22.27.59:043][811]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.27.59:043][811]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.27.59:045][811]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002177s) +[2025.06.16-22.27.59:045][811]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002199s) +[2025.06.16-22.27.59:058][811]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.16-22.27.59:059][811]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.27.59:060][811]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.27.59:060][811]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.27.59:060][811]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.27.59:060][811]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.27.59:061][811]LogWorldPartition: Display: WorldPartition initialize took 789 us (total: 188.403 ms) +[2025.06.16-22.27.59:061][811]LogPlayLevel: PIE: World Init took: (0.001911s) +[2025.06.16-22.27.59:061][811]LogAudio: Display: Creating Audio Device: Id: 14, Scope: Unique, Realtime: True +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.27.59:061][811]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.27.59:061][811]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.27.59:061][811]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.27.59:061][811]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.27.59:061][811]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.27.59:063][811]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.27.59:088][811]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.27.59:088][811]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.27.59:088][811]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.27.59:088][811]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.27.59:088][811]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=14 +[2025.06.16-22.27.59:088][811]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=14 +[2025.06.16-22.27.59:090][811]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=14 +[2025.06.16-22.27.59:090][811]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=14 +[2025.06.16-22.27.59:090][811]LogInit: FAudioDevice initialized with ID 14. +[2025.06.16-22.27.59:090][811]LogAudio: Display: Audio Device (ID: 14) registered with world 'Dabaza'. +[2025.06.16-22.27.59:090][811]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-22.27.59:093][811]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.27.59:094][811]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.27.59 +[2025.06.16-22.27.59:094][811]LogWorld: Bringing up level for play took: 0.001084 +[2025.06.16-22.27.59:095][811]LogOnline: OSS: Created online subsystem instance for: :Context_36 +[2025.06.16-22.27.59:098][811]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.27.59:098][811]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.27.59:099][811]PIE: Server logged in +[2025.06.16-22.27.59:100][811]PIE: Play in editor total start time 0.058 seconds. +[2025.06.16-22.28.01:250][ 35]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.01:250][ 35]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.01:250][ 35]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.28.01:250][ 35]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.01:250][ 35]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.28.01:253][ 35]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.28.01:256][ 35]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.01:274][ 35]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.28.01:274][ 35]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.16-22.28.01:274][ 35]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-22.28.01:275][ 35]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.16-22.28.01:278][ 35]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.01:280][ 35]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.28.01:322][ 36]LogPlayLevel: Display: Destroying online subsystem :Context_36 +[2025.06.16-22.28.19:829][996]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.28.20:379][ 37]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.28.20:433][ 37]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.28.20:434][ 37]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.28.20:435][ 37]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.28.20:435][ 37]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.28.20:440][ 37]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.28.20:440][ 37]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer0FAE4DA347747AA41BF96CB3123F935D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.28.20:451][ 37]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.975 ms (total: 466.885 ms) +[2025.06.16-22.28.20:498][ 37]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.28.20:499][ 37]LogContentValidation: Enabled validators: +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.28.20:499][ 37]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.28.20:499][ 37]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.28.21:643][141]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.28.21:647][141]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.28.21:647][141]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.28.21:648][141]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.251 ms (total: 18.630 ms) +[2025.06.16-22.28.21:649][141]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.28.21:649][141]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.21:651][141]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002193s) +[2025.06.16-22.28.21:651][141]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002214s) +[2025.06.16-22.28.21:662][141]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-22.28.21:663][141]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.28.21:664][141]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.28.21:665][141]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.28.21:665][141]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.28.21:665][141]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.28.21:665][141]LogWorldPartition: Display: WorldPartition initialize took 771 us (total: 189.175 ms) +[2025.06.16-22.28.21:665][141]LogPlayLevel: PIE: World Init took: (0.001845s) +[2025.06.16-22.28.21:666][141]LogAudio: Display: Creating Audio Device: Id: 15, Scope: Unique, Realtime: True +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.28.21:666][141]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.28.21:666][141]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.28.21:666][141]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.28.21:666][141]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.28.21:666][141]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.28.21:667][141]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.28.21:698][141]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.28.21:698][141]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.28.21:698][141]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.28.21:698][141]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.28.21:699][141]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=15 +[2025.06.16-22.28.21:699][141]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=15 +[2025.06.16-22.28.21:700][141]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=15 +[2025.06.16-22.28.21:700][141]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=15 +[2025.06.16-22.28.21:700][141]LogInit: FAudioDevice initialized with ID 15. +[2025.06.16-22.28.21:700][141]LogAudio: Display: Audio Device (ID: 15) registered with world 'Dabaza'. +[2025.06.16-22.28.21:700][141]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-22.28.21:702][141]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.28.21:703][141]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.28.21 +[2025.06.16-22.28.21:703][141]LogWorld: Bringing up level for play took: 0.001134 +[2025.06.16-22.28.21:706][141]LogOnline: OSS: Created online subsystem instance for: :Context_37 +[2025.06.16-22.28.21:708][141]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.28.21:708][141]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.28.21:709][141]PIE: Server logged in +[2025.06.16-22.28.21:710][141]PIE: Play in editor total start time 0.063 seconds. +[2025.06.16-22.28.24:780][472]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.24:780][472]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.24:780][472]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.28.24:781][472]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.24:781][472]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.28.24:783][472]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.28.24:786][472]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.24:802][472]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.28.24:802][472]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.16-22.28.24:802][472]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-22.28.24:804][472]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.16-22.28.24:806][472]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.24:808][472]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.16-22.28.24:881][474]LogPlayLevel: Display: Destroying online subsystem :Context_37 +[2025.06.16-22.28.28:536][828]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.28.28:541][828]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.28.28:541][828]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.28.28:543][828]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.273 ms (total: 19.903 ms) +[2025.06.16-22.28.28:543][828]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.28.28:543][828]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.28:545][828]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002163s) +[2025.06.16-22.28.28:545][828]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002184s) +[2025.06.16-22.28.28:558][828]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.28.28:559][828]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.28.28:560][828]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.28.28:560][828]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.28.28:560][828]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.28.28:560][828]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.28.28:560][828]LogWorldPartition: Display: WorldPartition initialize took 777 us (total: 189.952 ms) +[2025.06.16-22.28.28:561][828]LogPlayLevel: PIE: World Init took: (0.001875s) +[2025.06.16-22.28.28:561][828]LogAudio: Display: Creating Audio Device: Id: 16, Scope: Unique, Realtime: True +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.28.28:561][828]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.28.28:561][828]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.28.28:561][828]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.28.28:561][828]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.28.28:561][828]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.28.28:563][828]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.28.28:589][828]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.28.28:589][828]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.28.28:589][828]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.28.28:589][828]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.28.28:590][828]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=16 +[2025.06.16-22.28.28:590][828]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=16 +[2025.06.16-22.28.28:592][828]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=16 +[2025.06.16-22.28.28:592][828]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=16 +[2025.06.16-22.28.28:592][828]LogInit: FAudioDevice initialized with ID 16. +[2025.06.16-22.28.28:592][828]LogAudio: Display: Audio Device (ID: 16) registered with world 'Dabaza'. +[2025.06.16-22.28.28:592][828]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-22.28.28:593][828]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.28.28:594][828]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.28.28 +[2025.06.16-22.28.28:595][828]LogWorld: Bringing up level for play took: 0.001095 +[2025.06.16-22.28.28:597][828]LogOnline: OSS: Created online subsystem instance for: :Context_38 +[2025.06.16-22.28.28:600][828]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.28.28:600][828]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.28.28:600][828]PIE: Server logged in +[2025.06.16-22.28.28:601][828]PIE: Play in editor total start time 0.06 seconds. +[2025.06.16-22.28.34:650][504]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.34:650][504]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.34:650][504]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.28.34:650][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.34:650][504]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.28.34:652][504]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.28.34:657][504]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.34:670][504]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.34:671][504]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.16-22.28.34:671][504]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-22.28.34:672][504]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.16-22.28.34:677][504]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.28.34:748][506]LogPlayLevel: Display: Destroying online subsystem :Context_38 +[2025.06.16-22.28.51:295][288]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.16-22.28.51:800][328]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.28.51:859][328]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.28.51:860][328]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.28.51:860][328]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.28.51:860][328]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.28.51:866][328]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.28.51:866][328]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer1AB6B4854885BCBC1AA2868E3890CCE1.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.28.51:874][328]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.651 ms (total: 541.536 ms) +[2025.06.16-22.28.51:925][328]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.28.51:925][328]LogContentValidation: Enabled validators: +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.28.51:925][328]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.28.51:925][328]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.28.53:008][430]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.28.53:012][430]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.28.53:012][430]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.28.53:014][430]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.211 ms (total: 21.114 ms) +[2025.06.16-22.28.53:014][430]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.28.53:014][430]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.53:016][430]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002217s) +[2025.06.16-22.28.53:016][430]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002238s) +[2025.06.16-22.28.53:028][430]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.16-22.28.53:030][430]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.28.53:031][430]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.28.53:031][430]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.28.53:031][430]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.28.53:031][430]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.28.53:032][430]LogWorldPartition: Display: WorldPartition initialize took 1.074 ms (total: 191.027 ms) +[2025.06.16-22.28.53:032][430]LogPlayLevel: PIE: World Init took: (0.002186s) +[2025.06.16-22.28.53:033][430]LogAudio: Display: Creating Audio Device: Id: 17, Scope: Unique, Realtime: True +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.28.53:033][430]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.28.53:033][430]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.28.53:033][430]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.28.53:033][430]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.28.53:033][430]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.28.53:035][430]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.28.53:061][430]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.28.53:061][430]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.28.53:061][430]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.28.53:061][430]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.28.53:061][430]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=17 +[2025.06.16-22.28.53:061][430]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=17 +[2025.06.16-22.28.53:063][430]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=17 +[2025.06.16-22.28.53:063][430]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=17 +[2025.06.16-22.28.53:063][430]LogInit: FAudioDevice initialized with ID 17. +[2025.06.16-22.28.53:063][430]LogAudio: Display: Audio Device (ID: 17) registered with world 'Dabaza'. +[2025.06.16-22.28.53:063][430]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-22.28.53:065][430]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.28.53:066][430]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.28.53 +[2025.06.16-22.28.53:066][430]LogWorld: Bringing up level for play took: 0.001132 +[2025.06.16-22.28.53:068][430]LogOnline: OSS: Created online subsystem instance for: :Context_39 +[2025.06.16-22.28.53:071][430]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.28.53:071][430]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.28.53:071][430]PIE: Server logged in +[2025.06.16-22.28.53:072][430]PIE: Play in editor total start time 0.06 seconds. +[2025.06.16-22.28.59:910][194]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.59:910][194]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.28.59:910][194]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.28.59:911][194]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.59:911][194]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.28.59:913][194]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.28.59:916][194]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.28.59:932][194]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.28.59:932][194]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.16-22.28.59:932][194]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-22.28.59:935][194]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.16-22.28.59:938][194]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.28.59:939][194]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.28.59:983][195]LogPlayLevel: Display: Destroying online subsystem :Context_39 +[2025.06.16-22.30.30:480][388]LogUObjectHash: Compacting FUObjectHashTables data took 1.06ms +[2025.06.16-22.30.31:012][426]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.30.31:078][426]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.30.31:082][426]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.30.31:082][426]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.30.31:082][426]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.30.31:089][426]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.30.31:089][426]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerFECB1DB44D5CDC9CB591B995D8BBAD44.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.30.31:099][426]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.546 ms (total: 628.083 ms) +[2025.06.16-22.30.31:157][426]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.30.31:157][426]LogContentValidation: Enabled validators: +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.30.31:157][426]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.30.31:158][426]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.30.32:060][506]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.30.32:065][506]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.30.32:066][506]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.30.32:067][506]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.403 ms (total: 22.518 ms) +[2025.06.16-22.30.32:067][506]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.30.32:067][506]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.30.32:069][506]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002307s) +[2025.06.16-22.30.32:069][506]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002330s) +[2025.06.16-22.30.32:082][506]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.16-22.30.32:084][506]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.30.32:085][506]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.30.32:085][506]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.30.32:085][506]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.30.32:085][506]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.30.32:086][506]LogWorldPartition: Display: WorldPartition initialize took 804 us (total: 191.832 ms) +[2025.06.16-22.30.32:086][506]LogPlayLevel: PIE: World Init took: (0.002060s) +[2025.06.16-22.30.32:087][506]LogAudio: Display: Creating Audio Device: Id: 18, Scope: Unique, Realtime: True +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.30.32:087][506]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.30.32:087][506]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.30.32:087][506]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.30.32:087][506]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.30.32:087][506]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.30.32:088][506]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.30.32:122][506]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.30.32:122][506]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.30.32:122][506]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.30.32:122][506]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.30.32:123][506]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=18 +[2025.06.16-22.30.32:123][506]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=18 +[2025.06.16-22.30.32:124][506]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=18 +[2025.06.16-22.30.32:124][506]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=18 +[2025.06.16-22.30.32:124][506]LogInit: FAudioDevice initialized with ID 18. +[2025.06.16-22.30.32:124][506]LogAudio: Display: Audio Device (ID: 18) registered with world 'Dabaza'. +[2025.06.16-22.30.32:124][506]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-22.30.32:127][506]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.30.32:128][506]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.30.32 +[2025.06.16-22.30.32:128][506]LogWorld: Bringing up level for play took: 0.001214 +[2025.06.16-22.30.32:130][506]LogOnline: OSS: Created online subsystem instance for: :Context_40 +[2025.06.16-22.30.32:133][506]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.30.32:133][506]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.30.32:134][506]PIE: Server logged in +[2025.06.16-22.30.32:135][506]PIE: Play in editor total start time 0.07 seconds. +[2025.06.16-22.30.36:350][969]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.30.36:350][969]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.30.36:351][969]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.30.36:351][969]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.30.36:351][969]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.30.36:353][969]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.30.36:356][969]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.30.36:370][969]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.30.36:370][969]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.16-22.30.36:370][969]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-22.30.36:371][969]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.16-22.30.36:376][969]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.30.36:377][969]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.30.36:448][971]LogPlayLevel: Display: Destroying online subsystem :Context_40 +[2025.06.16-22.30.44:487][812]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.30.44:948][849]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.30.45:006][849]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.30.45:010][849]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.30.45:010][849]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.30.45:010][849]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.30.45:016][849]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.30.45:016][849]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerFC69A2EF4E3A809BBDA88DB1700EA443.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.30.45:025][849]LogFileHelpers: InternalPromptForCheckoutAndSave took 76.678 ms (total: 704.761 ms) +[2025.06.16-22.30.45:084][849]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.30.45:084][849]LogContentValidation: Enabled validators: +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.30.45:084][849]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.30.45:086][849]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.30.46:221][952]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.30.46:226][952]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.30.46:226][952]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.30.46:227][952]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.332 ms (total: 23.851 ms) +[2025.06.16-22.30.46:227][952]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.30.46:227][952]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.30.46:231][952]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002196s) +[2025.06.16-22.30.46:231][952]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002216s) +[2025.06.16-22.30.46:241][952]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.30.46:244][952]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.30.46:245][952]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.30.46:245][952]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.30.46:245][952]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.30.46:245][952]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.30.46:246][952]LogWorldPartition: Display: WorldPartition initialize took 793 us (total: 192.625 ms) +[2025.06.16-22.30.46:246][952]LogPlayLevel: PIE: World Init took: (0.001917s) +[2025.06.16-22.30.46:247][952]LogAudio: Display: Creating Audio Device: Id: 19, Scope: Unique, Realtime: True +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.30.46:247][952]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.30.46:247][952]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.30.46:247][952]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.30.46:247][952]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.30.46:247][952]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.30.46:249][952]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.30.46:274][952]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.30.46:274][952]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.30.46:274][952]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.30.46:274][952]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.30.46:274][952]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=19 +[2025.06.16-22.30.46:274][952]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=19 +[2025.06.16-22.30.46:276][952]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=19 +[2025.06.16-22.30.46:276][952]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=19 +[2025.06.16-22.30.46:276][952]LogInit: FAudioDevice initialized with ID 19. +[2025.06.16-22.30.46:276][952]LogAudio: Display: Audio Device (ID: 19) registered with world 'Dabaza'. +[2025.06.16-22.30.46:277][952]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-22.30.46:279][952]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.30.46:280][952]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.30.46 +[2025.06.16-22.30.46:280][952]LogWorld: Bringing up level for play took: 0.001102 +[2025.06.16-22.30.46:282][952]LogOnline: OSS: Created online subsystem instance for: :Context_41 +[2025.06.16-22.30.46:284][952]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.30.46:284][952]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.30.46:285][952]PIE: Server logged in +[2025.06.16-22.30.46:286][952]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.30.50:050][368]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.30.50:050][368]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.30.50:050][368]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.30.50:051][368]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.30.50:051][368]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.30.50:053][368]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.30.50:057][368]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.30.50:070][368]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.30.50:070][368]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.16-22.30.50:070][368]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-22.30.50:072][368]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.16-22.30.50:075][368]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.30.50:076][368]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.30.50:121][369]LogPlayLevel: Display: Destroying online subsystem :Context_41 +[2025.06.16-22.31.06:610][168]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.16-22.31.07:169][221]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.31.07:220][221]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.31.07:223][221]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.31.07:223][221]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.31.07:224][221]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.31.07:230][221]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.31.07:230][221]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerC0ED16BA437F52AB5FCDA096FE66DFD5.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.31.07:239][221]LogFileHelpers: InternalPromptForCheckoutAndSave took 70.969 ms (total: 775.731 ms) +[2025.06.16-22.31.07:303][221]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.31.07:303][221]LogContentValidation: Enabled validators: +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.31.07:303][221]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.31.07:304][221]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.31.09:775][486]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.31.09:780][486]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.31.09:780][486]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.31.09:781][486]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.428 ms (total: 25.279 ms) +[2025.06.16-22.31.09:781][486]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.31.09:781][486]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.31.09:784][486]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002190s) +[2025.06.16-22.31.09:784][486]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002212s) +[2025.06.16-22.31.09:797][486]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.16-22.31.09:801][486]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.31.09:802][486]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.31.09:802][486]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.31.09:802][486]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.31.09:802][486]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.31.09:803][486]LogWorldPartition: Display: WorldPartition initialize took 815 us (total: 193.440 ms) +[2025.06.16-22.31.09:803][486]LogPlayLevel: PIE: World Init took: (0.001971s) +[2025.06.16-22.31.09:803][486]LogAudio: Display: Creating Audio Device: Id: 20, Scope: Unique, Realtime: True +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.31.09:803][486]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.31.09:803][486]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.31.09:803][486]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.31.09:803][486]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.31.09:803][486]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.31.09:805][486]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.31.09:830][486]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.31.09:830][486]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.31.09:830][486]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.31.09:830][486]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.31.09:830][486]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=20 +[2025.06.16-22.31.09:830][486]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=20 +[2025.06.16-22.31.09:832][486]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=20 +[2025.06.16-22.31.09:832][486]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=20 +[2025.06.16-22.31.09:832][486]LogInit: FAudioDevice initialized with ID 20. +[2025.06.16-22.31.09:832][486]LogAudio: Display: Audio Device (ID: 20) registered with world 'Dabaza'. +[2025.06.16-22.31.09:832][486]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-22.31.09:834][486]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.31.09:835][486]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.31.09 +[2025.06.16-22.31.09:836][486]LogWorld: Bringing up level for play took: 0.001079 +[2025.06.16-22.31.09:838][486]LogOnline: OSS: Created online subsystem instance for: :Context_42 +[2025.06.16-22.31.09:840][486]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.31.09:840][486]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.31.09:841][486]PIE: Server logged in +[2025.06.16-22.31.09:842][486]PIE: Play in editor total start time 0.062 seconds. +[2025.06.16-22.31.20:690][724]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.31.20:690][724]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.31.20:690][724]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.31.20:691][724]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.31.20:691][724]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.31.20:693][724]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.31.20:696][724]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.31.20:711][724]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.31.20:711][724]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.16-22.31.20:711][724]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-22.31.20:713][724]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.16-22.31.20:717][724]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.31.20:719][724]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.31.20:763][725]LogPlayLevel: Display: Destroying online subsystem :Context_42 +[2025.06.16-22.31.31:741][840]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.31.32:385][911]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.31.32:443][911]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.31.32:445][911]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.31.32:445][911]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.31.32:445][911]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.31.32:452][911]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.31.32:452][911]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer39E8263644A01B66D7F38FB172F8AE21.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.31.32:461][911]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.662 ms (total: 851.393 ms) +[2025.06.16-22.31.32:522][911]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.31.32:522][911]LogContentValidation: Enabled validators: +[2025.06.16-22.31.32:522][911]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.31.32:522][911]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.31.32:523][911]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.31.32:523][911]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.31.32:523][911]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.31.32:523][911]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.31.32:523][911]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.31.33:749][ 30]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.31.33:753][ 30]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.31.33:753][ 30]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.31.33:754][ 30]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.215 ms (total: 26.494 ms) +[2025.06.16-22.31.33:754][ 30]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.31.33:754][ 30]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.31.33:757][ 30]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002224s) +[2025.06.16-22.31.33:757][ 30]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002243s) +[2025.06.16-22.31.33:769][ 30]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.31.33:771][ 30]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.31.33:772][ 30]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.31.33:772][ 30]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.31.33:772][ 30]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.31.33:772][ 30]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.31.33:773][ 30]LogWorldPartition: Display: WorldPartition initialize took 772 us (total: 194.213 ms) +[2025.06.16-22.31.33:773][ 30]LogPlayLevel: PIE: World Init took: (0.001836s) +[2025.06.16-22.31.33:773][ 30]LogAudio: Display: Creating Audio Device: Id: 21, Scope: Unique, Realtime: True +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.31.33:773][ 30]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.31.33:773][ 30]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.31.33:773][ 30]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.31.33:773][ 30]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.31.33:773][ 30]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.31.33:775][ 30]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=21 +[2025.06.16-22.31.33:800][ 30]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=21 +[2025.06.16-22.31.33:802][ 30]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=21 +[2025.06.16-22.31.33:803][ 30]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=21 +[2025.06.16-22.31.33:803][ 30]LogInit: FAudioDevice initialized with ID 21. +[2025.06.16-22.31.33:803][ 30]LogAudio: Display: Audio Device (ID: 21) registered with world 'Dabaza'. +[2025.06.16-22.31.33:803][ 30]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-22.31.33:805][ 30]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.31.33:806][ 30]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.31.33 +[2025.06.16-22.31.33:807][ 30]LogWorld: Bringing up level for play took: 0.001084 +[2025.06.16-22.31.33:808][ 30]LogOnline: OSS: Created online subsystem instance for: :Context_43 +[2025.06.16-22.31.33:810][ 30]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.31.33:810][ 30]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.31.33:811][ 30]PIE: Server logged in +[2025.06.16-22.31.33:812][ 30]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.31.35:380][194]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.31.35:380][194]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.31.35:381][194]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.31.35:381][194]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.31.35:381][194]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.31.35:383][194]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.31.35:386][194]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.31.35:399][194]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.31.35:399][194]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.16-22.31.35:399][194]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-22.31.35:401][194]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.16-22.31.35:404][194]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.31.35:406][194]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.31.35:480][196]LogPlayLevel: Display: Destroying online subsystem :Context_43 +[2025.06.16-22.31.51:961][ 14]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 711.017273 +[2025.06.16-22.31.52:244][ 44]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.16-22.31.52:244][ 44]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 711.292175, Update Interval: 333.696106 +[2025.06.16-22.32.16:045][755]LogEditorTransaction: Undo Remove Widget +[2025.06.16-22.32.16:082][755]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fffc17d085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff49411b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff49539f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4976b005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff496fdc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff4932b5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff493a1288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff3f2dc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff3f995881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-22.32.20:033][135]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.16-22.32.20:769][207]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.16-22.32.20:834][207]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.16-22.32.20:836][207]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.16-22.32.20:836][207]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.16-22.32.20:836][207]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.16-22.32.20:842][207]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.16-22.32.20:842][207]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerEE230C454FA32FF169AEA9820E14B434.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.16-22.32.20:853][207]LogFileHelpers: InternalPromptForCheckoutAndSave took 82.464 ms (total: 933.858 ms) +[2025.06.16-22.32.20:913][207]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.16-22.32.20:913][207]LogContentValidation: Enabled validators: +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.16-22.32.20:913][207]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.16-22.32.20:913][207]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.16-22.32.21:927][304]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.32.21:932][304]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.32.21:932][304]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.32.21:933][304]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.225 ms (total: 27.719 ms) +[2025.06.16-22.32.21:933][304]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.32.21:933][304]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.32.21:935][304]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002177s) +[2025.06.16-22.32.21:935][304]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002198s) +[2025.06.16-22.32.21:947][304]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.16-22.32.21:950][304]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.32.21:951][304]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.32.21:952][304]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.32.21:952][304]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.32.21:952][304]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.32.21:952][304]LogWorldPartition: Display: WorldPartition initialize took 774 us (total: 194.987 ms) +[2025.06.16-22.32.21:952][304]LogPlayLevel: PIE: World Init took: (0.001863s) +[2025.06.16-22.32.21:953][304]LogAudio: Display: Creating Audio Device: Id: 22, Scope: Unique, Realtime: True +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.32.21:953][304]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.32.21:953][304]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.32.21:953][304]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.32.21:953][304]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.32.21:953][304]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.32.21:955][304]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.32.21:979][304]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.32.21:979][304]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.32.21:979][304]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.32.21:979][304]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.32.21:980][304]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=22 +[2025.06.16-22.32.21:980][304]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=22 +[2025.06.16-22.32.21:982][304]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=22 +[2025.06.16-22.32.21:982][304]LogInit: FAudioDevice initialized with ID 22. +[2025.06.16-22.32.21:982][304]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=22 +[2025.06.16-22.32.21:982][304]LogAudio: Display: Audio Device (ID: 22) registered with world 'Dabaza'. +[2025.06.16-22.32.21:982][304]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-22.32.21:984][304]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.32.21:985][304]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.32.21 +[2025.06.16-22.32.21:985][304]LogWorld: Bringing up level for play took: 0.001109 +[2025.06.16-22.32.21:987][304]LogOnline: OSS: Created online subsystem instance for: :Context_44 +[2025.06.16-22.32.21:991][304]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.32.21:991][304]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.32.21:991][304]PIE: Server logged in +[2025.06.16-22.32.21:992][304]PIE: Play in editor total start time 0.061 seconds. +[2025.06.16-22.32.24:590][586]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.32.24:590][586]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.32.24:591][586]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.32.24:591][586]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.32.24:591][586]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.32.24:593][586]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.32.24:596][586]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.32.24:613][586]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.32.24:613][586]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.16-22.32.24:613][586]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-22.32.24:614][586]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.16-22.32.24:618][586]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.32.24:619][586]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.32.24:664][587]LogPlayLevel: Display: Destroying online subsystem :Context_44 +[2025.06.16-22.32.28:453][952]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.16-22.32.28:457][952]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.16-22.32.28:457][952]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.16-22.32.28:460][952]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.389 ms (total: 29.108 ms) +[2025.06.16-22.32.28:460][952]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.16-22.32.28:460][952]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.32.28:463][952]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002545s) +[2025.06.16-22.32.28:463][952]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002568s) +[2025.06.16-22.32.28:475][952]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.16-22.32.28:477][952]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.16-22.32.28:478][952]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.16-22.32.28:478][952]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.32.28:478][952]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.32.28:478][952]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.16-22.32.28:478][952]LogWorldPartition: Display: WorldPartition initialize took 789 us (total: 195.776 ms) +[2025.06.16-22.32.28:478][952]LogPlayLevel: PIE: World Init took: (0.002089s) +[2025.06.16-22.32.28:479][952]LogAudio: Display: Creating Audio Device: Id: 23, Scope: Unique, Realtime: True +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.32.28:479][952]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.32.28:479][952]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.32.28:479][952]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.32.28:479][952]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.32.28:479][952]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.32.28:481][952]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.32.28:506][952]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.32.28:506][952]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.32.28:506][952]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.32.28:506][952]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.32.28:506][952]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=23 +[2025.06.16-22.32.28:506][952]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=23 +[2025.06.16-22.32.28:508][952]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=23 +[2025.06.16-22.32.28:508][952]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=23 +[2025.06.16-22.32.28:508][952]LogInit: FAudioDevice initialized with ID 23. +[2025.06.16-22.32.28:508][952]LogAudio: Display: Audio Device (ID: 23) registered with world 'Dabaza'. +[2025.06.16-22.32.28:508][952]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-22.32.28:510][952]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.16-22.32.28:511][952]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-06.32.28 +[2025.06.16-22.32.28:511][952]LogWorld: Bringing up level for play took: 0.001079 +[2025.06.16-22.32.28:513][952]LogOnline: OSS: Created online subsystem instance for: :Context_45 +[2025.06.16-22.32.28:516][952]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.16-22.32.28:516][952]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.16-22.32.28:517][952]PIE: Server logged in +[2025.06.16-22.32.28:517][952]PIE: Play in editor total start time 0.059 seconds. +[2025.06.16-22.32.30:790][187]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.32.30:790][187]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.16-22.32.30:790][187]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.32.30:790][187]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.32.30:791][187]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.16-22.32.30:793][187]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.16-22.32.30:796][187]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.32.30:812][187]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.32.30:812][187]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.16-22.32.30:812][187]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-22.32.30:814][187]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.16-22.32.30:818][187]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.32.30:864][188]LogPlayLevel: Display: Destroying online subsystem :Context_45 +[2025.06.16-22.33.03:764][359]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.16-22.33.04:782][359]LogSlate: Window 'Save Content' being destroyed +[2025.06.16-22.33.04:835][359]LogStall: Shutdown... +[2025.06.16-22.33.04:835][359]LogStall: Shutdown complete. +[2025.06.16-22.33.04:861][359]LogWorld: UWorld::CleanupWorld for World_5, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.04:861][359]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.04:867][359]LogWorld: UWorld::CleanupWorld for World_4, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.04:867][359]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.04:888][359]LogSlate: Window 'PawnSkills' being destroyed +[2025.06.16-22.33.04:923][359]LogWorld: UWorld::CleanupWorld for World_24, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.04:923][359]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.04:967][359]LogSlate: Window 'Open Asset' being destroyed +[2025.06.16-22.33.04:972][359]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.16-22.33.04:974][359]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.33.05:066][359]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.16-22.33.05:080][360]Cmd: QUIT_EDITOR +[2025.06.16-22.33.05:080][360]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.16-22.33.05:084][360]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.16-22.33.05:085][360]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.16-22.33.05:085][360]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.16-22.33.05:085][360]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:086][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:086][360]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.16-22.33.05:093][360]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.16-22.33.05:094][360]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.16-22.33.05:096][360]LogWorld: UWorld::CleanupWorld for World_20, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:096][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:100][360]LogWorld: UWorld::CleanupWorld for World_19, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:100][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:102][360]LogWorld: UWorld::CleanupWorld for World_18, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:102][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:104][360]LogWorld: UWorld::CleanupWorld for World_17, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:104][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:105][360]LogWorld: UWorld::CleanupWorld for World_16, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:106][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:107][360]LogWorld: UWorld::CleanupWorld for World_15, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:107][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:109][360]LogWorld: UWorld::CleanupWorld for World_14, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:109][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:110][360]LogWorld: UWorld::CleanupWorld for World_13, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:111][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:112][360]LogWorld: UWorld::CleanupWorld for World_12, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:112][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:114][360]LogWorld: UWorld::CleanupWorld for World_11, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:114][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:117][360]LogWorld: UWorld::CleanupWorld for World_10, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:117][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:118][360]LogWorld: UWorld::CleanupWorld for World_9, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:118][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:120][360]LogWorld: UWorld::CleanupWorld for World_25, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:120][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:122][360]LogWorld: UWorld::CleanupWorld for World_23, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:122][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:124][360]LogWorld: UWorld::CleanupWorld for World_3, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:124][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:126][360]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:126][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:128][360]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:128][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:130][360]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:130][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:134][360]LogWorld: UWorld::CleanupWorld for World_21, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:134][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:136][360]LogWorld: UWorld::CleanupWorld for World_22, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.05:136][360]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.05:139][360]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.16-22.33.05:140][360]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.16-22.33.05:140][360]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.16-22.33.05:140][360]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.16-22.33.06:148][360]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.16-22.33.06:148][360]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.16-22.33.06:148][360]LogAudio: Display: Audio Device unregistered from world 'Dabaza'. +[2025.06.16-22.33.06:148][360]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.16-22.33.06:148][360]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-22.33.06:149][360]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-22.33.06:153][360]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.16-22.33.06:153][360]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.16-22.33.06:156][360]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.16-22.33.06:156][360]LogExit: Preparing to exit. +[2025.06.16-22.33.06:183][360]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.16-22.33.06:184][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:184][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:184][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:185][360]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.16-22.33.06:666][360]LogEditorDataStorage: Deinitializing +[2025.06.16-22.33.06:846][360]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.16-22.33.06:861][360]LogExit: Editor shut down +[2025.06.16-22.33.06:863][360]LogExit: Transaction tracking system shut down +[2025.06.16-22.33.06:990][360]LogExit: Object subsystem successfully closed. +[2025.06.16-22.33.07:068][360]LogShaderCompilers: Display: Shaders left to compile 0 +[2025.06.16-22.33.07:123][360]LogMemoryProfiler: Shutdown +[2025.06.16-22.33.07:124][360]LogNetworkingProfiler: Shutdown +[2025.06.16-22.33.07:124][360]LoadingProfiler: Shutdown +[2025.06.16-22.33.07:124][360]LogTimingProfiler: Shutdown +[2025.06.16-22.33.07:449][360]LogChaosDD: Chaos Debug Draw Shutdown +[2025.06.16-22.33.07:453][360]LogStudioTelemetry: Display: Shutdown StudioTelemetry Module +[2025.06.16-22.33.07:453][360]LogNFORDenoise: NFORDenoise function shutting down +[2025.06.16-22.33.07:453][360]RenderDocPlugin: plugin has been unloaded. +[2025.06.16-22.33.07:472][360]LogHttp: Warning: [FHttpManager::Shutdown] Unbinding delegates for 1 outstanding Http Requests: +[2025.06.16-22.33.07:474][360]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B53DD9867-49B0-5C74-1937-9B927DF81BDE%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.5.4-40574608%2B%2B%2BUE5%2BRelease-5.5&UserID=2be356334d8ddcb1f8647180700f1260%7C7c48bd058d394a9b9827119f4ec4df20%7C391af7e5-d023-4a12-bd83-a39d12e0079d&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[2] status=Processing +[2025.06.16-22.33.08:531][360]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] +[2025.06.16-22.33.08:532][360]LogXGEController: Cleaning working directory: C:/Users/99714/AppData/Local/Temp/UnrealXGEWorkingDir/ +[2025.06.16-22.33.08:534][360]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +[2025.06.16-22.33.08:534][360]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +[2025.06.16-22.33.08:534][360]LogPakFile: Destroying PakPlatformFile +[2025.06.16-22.33.08:750][360]LogD3D12RHI: ~FD3D12DynamicRHI +[2025.06.16-22.33.08:791][360]LogExit: Exiting. +[2025.06.16-22.33.08:802][360]Log file closed, 06/17/25 06:33:08 diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.34.05.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.34.05.log new file mode 100644 index 0000000..a582f4d --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.16-22.34.05.log @@ -0,0 +1,1473 @@ +Log file open, 06/17/25 06:33:38 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=39964) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.504188 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-CBF1110747B06C68558D5D8177E49994 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading Mac ini files took 0.03 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.03 seconds +LogConfig: Display: Loading IOS ini files took 0.03 seconds +LogConfig: Display: Loading Android ini files took 0.03 seconds +LogConfig: Display: Loading Unix ini files took 0.04 seconds +LogConfig: Display: Loading Windows ini files took 0.04 seconds +LogConfig: Display: Loading VisionOS ini files took 0.04 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogConfig: Display: Loading TVOS ini files took 0.04 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.04 seconds +LogConfig: Display: Loading Linux ini files took 0.04 seconds +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.46ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.06ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-22.33.38:978][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-22.33.38:981][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-22.33.38:983][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-22.33.38:983][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-22.33.38:983][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-22.33.38:988][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-22.33.38:988][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-22.33.39:147][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.33.39:148][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.33.39:148][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-22.33.39:148][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.33.39:148][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.33.39:154][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-22.33.39:154][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.33.39:154][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.33.39:256][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.33.39:256][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.33.39:256][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.33.39:256][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.33.39:256][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-22.33.39:347][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-22.33.39:347][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-22.33.39:347][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-22.33.39:347][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-22.33.39:347][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-22.33.39:347][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-22.33.39:347][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-22.33.39:347][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-22.33.39:347][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-22.33.39:347][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-22.33.39:347][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-22.33.39:347][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-22.33.39:347][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-22.33.39:347][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-22.33.39:347][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-22.33.39:347][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-22.33.39:347][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-22.33.39:347][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-22.33.39:347][ 0]LogInit: Computer: T +[2025.06.16-22.33.39:347][ 0]LogInit: User: 99714 +[2025.06.16-22.33.39:347][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-22.33.39:347][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-22.33.39:679][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-22.33.39:679][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-22.33.39:679][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-22.33.39:679][ 0]LogMemory: Process Physical Memory: 616.89 MB used, 628.91 MB peak +[2025.06.16-22.33.39:679][ 0]LogMemory: Process Virtual Memory: 664.49 MB used, 664.49 MB peak +[2025.06.16-22.33.39:679][ 0]LogMemory: Physical Memory: 12726.34 MB used, 19782.96 MB free, 32509.30 MB total +[2025.06.16-22.33.39:679][ 0]LogMemory: Virtual Memory: 23190.95 MB used, 29798.35 MB free, 52989.30 MB total +[2025.06.16-22.33.39:679][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-22.33.39:683][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-22.33.39:689][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-22.33.39:689][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-22.33.39:690][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-22.33.39:690][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-22.33.39:692][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-22.33.39:932][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-22.33.39:932][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.33.39:933][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-22.33.39:933][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-22.33.39:933][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.33.39:941][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-22.33.39:941][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-22.33.40:045][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-22.33.40:045][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-22.33.40:045][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-22.33.40:045][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-22.33.40:045][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-22.33.40:045][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-22.33.40:046][ 0]LogWindows: Attached monitors: +[2025.06.16-22.33.40:046][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-22.33.40:046][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-22.33.40:046][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-22.33.40:046][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-22.33.40:046][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-22.33.40:046][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-22.33.40:046][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-22.33.40:046][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-22.33.40:046][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-22.33.40:046][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-22.33.40:111][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-22.33.40:111][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-22.33.40:160][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-22.33.40:160][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-22.33.40:160][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-22.33.40:214][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000004815FC72300) +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000004815FC72580) +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000004815FC72800) +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-22.33.40:215][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-22.33.40:215][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-22.33.40:223][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-22.33.40:224][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-22.33.40:231][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-22.33.40:231][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-22.33.40:252][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-22.33.40:252][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-22.33.40:252][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-22.33.40:252][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-22.33.40:252][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-22.33.40:252][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-22.33.40:252][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-22.33.40:252][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-22.33.40:253][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-22.33.40:282][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-22.33.40:301][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-22.33.40:301][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-22.33.40:318][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-22.33.40:318][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-22.33.40:318][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-22.33.40:318][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-22.33.40:336][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-22.33.40:336][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-22.33.40:336][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-22.33.40:353][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-22.33.40:353][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-22.33.40:353][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-22.33.40:353][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-22.33.40:369][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-22.33.40:369][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-22.33.40:390][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-22.33.40:390][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-22.33.40:390][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-22.33.40:390][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-22.33.40:390][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-22.33.40:430][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-22.33.40:432][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-22.33.40:432][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-22.33.40:432][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-22.33.40:434][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-22.33.40:434][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-22.33.40:434][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-22.33.40:434][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-22.33.40:434][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-22.33.40:482][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-22.33.40:482][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-22.33.40:482][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-22.33.40:482][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-22.33.40:483][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-22.33.40:483][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-22.33.40:483][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.16-22.33.40:483][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 8756 --child-id Zen_8756_Startup' +[2025.06.16-22.33.40:660][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-22.33.40:660][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.178 seconds +[2025.06.16-22.33.40:661][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=2011.00MBs, RandomWriteSpeed=183.53MBs. Assigned SpeedClass 'Local' +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-22.33.40:668][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-22.33.40:668][ 0]LogShaderCompilers: Guid format shader working directory is 19 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/8756/). +[2025.06.16-22.33.40:668][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/EDCB5FFF48B2A2D190ACCF90CEB8627F/'. +[2025.06.16-22.33.40:669][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-22.33.40:669][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-22.33.40:669][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-22.33.40:670][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-22.33.41:333][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-22.33.41:615][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-22.33.41:615][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-22.33.41:616][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-22.33.41:616][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-22.33.41:617][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-22.33.41:617][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-22.33.41:617][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-22.33.41:617][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-22.33.41:632][ 0]LogAssetRegistry: FAssetRegistry took 0.0023 seconds to start up +[2025.06.16-22.33.41:635][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-22.33.41:638][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-22.33.41:766][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.33.41:767][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-22.33.41:767][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-22.33.41:767][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-22.33.41:781][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-22.33.41:781][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-22.33.41:800][ 0]LogDeviceProfileManager: Active device profile: [000004817D753E00][0000048161DCC000 66] WindowsEditor +[2025.06.16-22.33.41:800][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-22.33.41:800][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-22.33.41:804][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-22.33.41:804][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-22.33.41:831][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:831][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-22.33.41:831][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:832][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-22.33.41:833][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-22.33.41:834][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-22.33.41:835][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-22.33.41:970][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-22.33.41:971][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-22.33.41:971][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-22.33.41:971][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-22.33.41:971][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-22.33.42:166][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.16-22.33.42:181][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.16-22.33.42:192][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.16-22.33.42:193][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-22.33.42:343][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-22.33.42:343][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-22.33.42:365][ 0]LogSlate: Border +[2025.06.16-22.33.42:365][ 0]LogSlate: BreadcrumbButton +[2025.06.16-22.33.42:365][ 0]LogSlate: Brushes.Title +[2025.06.16-22.33.42:365][ 0]LogSlate: Default +[2025.06.16-22.33.42:365][ 0]LogSlate: Icons.Save +[2025.06.16-22.33.42:365][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-22.33.42:365][ 0]LogSlate: ListView +[2025.06.16-22.33.42:365][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-22.33.42:365][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-22.33.42:365][ 0]LogSlate: TableView.DarkRow +[2025.06.16-22.33.42:365][ 0]LogSlate: TableView.Row +[2025.06.16-22.33.42:365][ 0]LogSlate: TreeView +[2025.06.16-22.33.42:441][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-22.33.42:443][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.827 ms +[2025.06.16-22.33.42:454][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.58ms +[2025.06.16-22.33.42:469][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-22.33.42:469][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-22.33.42:469][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-22.33.42:528][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.16-22.33.42:673][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 42A662083F3D4B0F800000000000BB00 | Instance: 6F6EA0BD48156D72C132BEA57CA4351A (T-8756). +[2025.06.16-22.33.42:685][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-22.33.42:714][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-22.33.42:714][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-22.33.42:714][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:63793'. +[2025.06.16-22.33.42:719][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-22.33.42:724][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-22.33.42:819][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-22.33.42:819][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-22.33.42:832][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-22.33.43:040][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-22.33.43:040][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-22.33.43:040][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-22.33.43:040][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-22.33.43:637][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-22.33.43:839][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.33.43:852][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.33.43:873][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-22.33.43:880][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.36ms +[2025.06.16-22.33.44:158][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-22.33.44:173][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-22.33.44:173][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-22.33.44:230][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-22.33.44:230][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-22.33.44:236][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-22.33.44:236][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-22.33.44:236][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-22.33.44:237][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-22.33.44:237][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-22.33.44:237][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-22.33.44:238][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-22.33.44:238][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-22.33.44:238][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-22.33.44:238][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-22.33.44:239][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-22.33.44:239][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-22.33.44:239][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-22.33.44:239][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-22.33.44:240][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-22.33.44:240][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-22.33.44:240][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-22.33.44:241][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-22.33.44:241][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-22.33.44:241][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-22.33.44:241][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-22.33.44:242][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-22.33.44:242][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-22.33.44:242][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-22.33.44:243][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-22.33.44:243][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-22.33.44:243][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-22.33.44:244][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-22.33.44:244][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-22.33.44:245][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-22.33.44:245][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-22.33.44:245][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-22.33.44:246][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-22.33.44:246][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-22.33.44:246][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-22.33.44:266][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-22.33.44:391][ 0]LogCollectionManager: Loaded 0 collections in 0.000657 seconds +[2025.06.16-22.33.44:392][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-22.33.44:395][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-22.33.44:396][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-22.33.44:441][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-22.33.44:441][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-22.33.44:442][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-22.33.44:442][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-22.33.44:442][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-22.33.44:442][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-22.33.44:466][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-22.33.44:466][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-22.33.44:475][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T22:33:44.475Z using C +[2025.06.16-22.33.44:475][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-22.33.44:475][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-22.33.44:475][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-22.33.44:478][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-22.33.44:478][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-22.33.44:478][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-22.33.44:478][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000035 +[2025.06.16-22.33.44:479][ 0]LogFab: Display: Logging in using persist +[2025.06.16-22.33.44:501][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.16-22.33.44:501][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-22.33.44:510][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-22.33.44:510][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-22.33.44:574][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:574][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:575][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-22.33.44:583][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:600][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-22.33.44:601][ 0]LogEngine: Initializing Engine... +[2025.06.16-22.33.44:603][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-22.33.44:604][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-22.33.44:663][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-22.33.44:677][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-22.33.44:685][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-22.33.44:685][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-22.33.44:693][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-22.33.44:697][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-22.33.44:704][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-22.33.44:704][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-22.33.44:705][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-22.33.44:705][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-22.33.44:709][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-22.33.44:744][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-22.33.44:744][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-22.33.44:745][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-22.33.44:745][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-22.33.44:747][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-22.33.44:747][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-22.33.44:748][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-22.33.44:748][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-22.33.44:748][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-22.33.44:748][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-22.33.44:748][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-22.33.44:752][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-22.33.44:755][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-22.33.44:755][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-22.33.44:765][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-22.33.44:813][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.46ms +[2025.06.16-22.33.44:814][ 0]LocalizationService: Localization service is disabled +[2025.06.16-22.33.44:824][ 0]LogTimingProfiler: Initialize +[2025.06.16-22.33.44:824][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-22.33.44:824][ 0]LoadingProfiler: Initialize +[2025.06.16-22.33.44:825][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-22.33.44:825][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-22.33.44:825][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-22.33.44:825][ 0]LogMemoryProfiler: Initialize +[2025.06.16-22.33.44:825][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-22.33.44:970][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-22.33.44:990][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-22.33.45:677][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-22.33.45:685][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-22.33.45:699][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-22.33.45:699][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-22.33.45:748][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-22.33.45:801][ 0]LogEditorDataStorage: Initializing +[2025.06.16-22.33.45:802][ 0]LogEditorDataStorage: Initialized +[2025.06.16-22.33.45:813][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-22.33.45:822][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-22.33.45:824][ 0]SourceControl: Revision control is disabled +[2025.06.16-22.33.45:824][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 7.821 +[2025.06.16-22.33.45:825][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-22.33.45:826][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.33.45:826][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.45:843][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-22.33.46:071][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-22.33.46:071][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-22.33.46:525][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-22.33.48:695][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-22.33.48:705][ 0]LogSkeletalMesh: Built Skeletal Mesh [5.07s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-22.33.48:715][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-22.33.48:716][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.52ms +[2025.06.16-22.33.48:723][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-22.33.48:723][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-22.33.48:725][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-22.33.48:725][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-22.33.48:725][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-22.33.48:777][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-22.33.48:783][ 0]LogWorldPartition: Display: WorldPartition initialize took 57.872 ms +[2025.06.16-22.33.48:789][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-22.33.48:798][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-22.33.48:799][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-22.33.48:799][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.42ms to complete. +[2025.06.16-22.33.48:803][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 10.800 +[2025.06.16-22.33.48:939][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-22.33.48:993][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.33.49:026][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.33.49:064][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.33.49:095][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-22.33.49:105][ 0]LogSlate: Took 0.000187 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-22.33.49:124][ 0]LogSlate: Took 0.000228 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-22.33.49:126][ 0]LogSlate: Took 0.001448 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-22.33.49:202][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:203][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-22.33.49:203][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:203][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-22.33.49:203][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:203][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:203][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:204][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:204][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:204][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-22.33.49:204][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:204][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:205][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:205][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-22.33.49:205][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:205][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:205][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:205][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:205][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-22.33.49:206][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-22.33.49:305][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:305][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:305][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:305][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:305][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:306][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:306][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:307][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-22.33.49:415][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-22.33.49:447][ 0]LogSlate: Took 0.000219 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-22.33.49:448][ 0]LogSlate: Took 0.000155 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-22.33.49:474][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-22.33.49:476][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-22.33.49:476][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-22.33.49:476][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-22.33.49:506][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-22.33.49:506][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-22.33.49:507][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-22.33.49:507][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-22.33.49:507][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-22.33.49:534][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-22.33.49:534][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-22.33.49:566][ 0]LogSlate: Took 0.000215 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-22.33.49:610][ 0]LogSlate: Took 0.000292 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-22.33.49:713][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 90.16 ms. Compile time 22.80 ms, link time 67.27 ms. +[2025.06.16-22.33.49:834][ 0]LogStall: Startup... +[2025.06.16-22.33.49:836][ 0]LogStall: Startup complete. +[2025.06.16-22.33.49:839][ 0]LogLoad: (Engine Initialization) Total time: 11.84 seconds +[2025.06.16-22.33.49:964][ 0]LogAssetRegistry: AssetRegistryGather time 0.0634s: AssetDataDiscovery 0.0220s, AssetDataGather 0.0072s, StoreResults 0.0342s. Wall time 8.3330s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7505. NumUncachedFiles 2. + BackgroundTickInterruptions 0. +[2025.06.16-22.33.49:982][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-22.33.49:984][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-22.33.49:984][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-22.33.49:984][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-22.33.50:019][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.33.50:021][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-22.33.50:047][ 0]LogPython: registering + +[2025.06.16-22.33.50:057][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 36.247 ms +[2025.06.16-22.33.50:094][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.112552 seconds (Found 7482 uncontrolled assets) +[2025.06.16-22.33.50:270][ 1]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.33.51:054][ 9]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-22.33.51:165][ 10]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.590166 +[2025.06.16-22.33.51:166][ 10]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-22.33.51:166][ 10]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6.686882 +[2025.06.16-22.33.52:447][ 14]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-22.33.52:483][ 14]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-22.33.52:780][ 15]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-22.33.53:115][ 16]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.16-22.33.53:132][ 16]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.325920 +[2025.06.16-22.33.53:134][ 16]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-22.33.53:135][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.325920, Update Interval: 318.417297 +[2025.06.16-22.33.53:194][ 19]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.16-22.33.53:444][ 34]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.17-00.33.52 Remaining: 7200.46] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15478861.57] State: Valid +[2025.06.16-22.33.53:452][ 35]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-22.33.53:719][ 67]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-22.33.53:719][ 67]LogFab: Display: User logged in +[2025.06.16-22.33.53:719][ 67]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-22.33.53:977][ 98]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-IvIzRbwJ40G3fEGfqGwH3Q-nnFe1MyoO0GJhTQzNRfW3g] +[2025.06.16-22.34.01:607][986]LogUObjectHash: Compacting FUObjectHashTables data took 0.37ms +[2025.06.16-22.34.01:641][986]LogStall: Shutdown... +[2025.06.16-22.34.01:641][986]LogStall: Shutdown complete. +[2025.06.16-22.34.01:670][986]LogSlate: Window 'Open Asset' being destroyed +[2025.06.16-22.34.01:675][986]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.16-22.34.01:678][986]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-22.34.01:717][986]Cmd: QUIT_EDITOR +[2025.06.16-22.34.01:717][987]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.16-22.34.01:721][987]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.16-22.34.01:721][987]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.16-22.34.01:721][987]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.16-22.34.01:721][987]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.34.01:721][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.34.01:721][987]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.16-22.34.01:727][987]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.16-22.34.01:727][987]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.16-22.34.01:728][987]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.34.01:728][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.34.01:728][987]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.34.01:728][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.34.01:728][987]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.34.01:728][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.34.01:728][987]LogWorld: UWorld::CleanupWorld for World_3, bSessionEnded=true, bCleanupResources=true +[2025.06.16-22.34.01:728][987]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-22.34.01:728][987]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.16-22.34.01:729][987]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.16-22.34.01:729][987]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.16-22.34.01:729][987]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.16-22.34.01:730][987]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.16-22.34.01:730][987]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.16-22.34.01:730][987]LogAudio: Display: Audio Device unregistered from world 'TopDownMap'. +[2025.06.16-22.34.01:730][987]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.16-22.34.01:730][987]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-22.34.01:732][987]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.16-22.34.01:738][987]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.16-22.34.01:738][987]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.16-22.34.01:740][987]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.16-22.34.01:740][987]LogExit: Preparing to exit. +[2025.06.16-22.34.01:753][987]LogUObjectHash: Compacting FUObjectHashTables data took 0.46ms +[2025.06.16-22.34.02:792][987]LogEditorDataStorage: Deinitializing +[2025.06.16-22.34.02:903][987]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.16-22.34.02:911][987]LogExit: Editor shut down +[2025.06.16-22.34.02:912][987]LogExit: Transaction tracking system shut down +[2025.06.16-22.34.02:951][987]LogExit: Object subsystem successfully closed. +[2025.06.16-22.34.03:036][987]LogShaderCompilers: Display: Shaders left to compile 0 +[2025.06.16-22.34.03:946][987]LogMemoryProfiler: Shutdown +[2025.06.16-22.34.03:946][987]LogNetworkingProfiler: Shutdown +[2025.06.16-22.34.03:946][987]LoadingProfiler: Shutdown +[2025.06.16-22.34.03:946][987]LogTimingProfiler: Shutdown +[2025.06.16-22.34.04:251][987]LogChaosDD: Chaos Debug Draw Shutdown +[2025.06.16-22.34.04:273][987]LogHttp: Warning: [FHttpManager::Shutdown] Unbinding delegates for 1 outstanding Http Requests: +[2025.06.16-22.34.04:273][987]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B37E30977-43E1-2B9C-7248-2E9985EE5F86%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.5.4-40574608%2B%2B%2BUE5%2BRelease-5.5&UserID=2be356334d8ddcb1f8647180700f1260%7C7c48bd058d394a9b9827119f4ec4df20%7C391af7e5-d023-4a12-bd83-a39d12e0079d&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[2] status=Processing +[2025.06.16-22.34.05:348][987]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] +[2025.06.16-22.34.05:352][987]LogStudioTelemetry: Display: Shutdown StudioTelemetry Module +[2025.06.16-22.34.05:352][987]LogNFORDenoise: NFORDenoise function shutting down +[2025.06.16-22.34.05:352][987]RenderDocPlugin: plugin has been unloaded. +[2025.06.16-22.34.05:355][987]LogXGEController: Cleaning working directory: C:/Users/99714/AppData/Local/Temp/UnrealXGEWorkingDir/ +[2025.06.16-22.34.05:356][987]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +[2025.06.16-22.34.05:356][987]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +[2025.06.16-22.34.05:356][987]LogPakFile: Destroying PakPlatformFile +[2025.06.16-22.34.05:483][987]LogD3D12RHI: ~FD3D12DynamicRHI +[2025.06.16-22.34.05:515][987]LogExit: Exiting. +[2025.06.16-22.34.05:527][987]Log file closed, 06/17/25 06:34:05 diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-07.18.46.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-07.18.46.log new file mode 100644 index 0000000..3b70fc9 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-07.18.46.log @@ -0,0 +1,5530 @@ +Log file open, 06/17/25 10:52:54 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=15464) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 1.062508 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-942CEC8847F1D8D38DDEC4AAB581A843 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogConfig: Display: Loading VulkanPC ini files took 0.07 seconds +LogConfig: Display: Loading Android ini files took 0.07 seconds +LogConfig: Display: Loading IOS ini files took 0.07 seconds +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogConfig: Display: Loading Mac ini files took 0.08 seconds +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading Unix ini files took 0.08 seconds +LogConfig: Display: Loading TVOS ini files took 0.09 seconds +LogConfig: Display: Loading VisionOS ini files took 0.09 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogConfig: Display: Loading Windows ini files took 0.09 seconds +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading LinuxArm64 ini files took 0.09 seconds +LogConfig: Display: Loading Linux ini files took 0.09 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.50ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.16ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.18ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.15ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.06ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.17-02.52.55:265][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.17-02.52.55:265][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.17-02.52.55:265][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.17-02.52.55:265][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.17-02.52.55:266][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.17-02.52.55:266][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.17-02.52.55:266][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.17-02.52.55:266][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.17-02.52.55:267][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.17-02.52.55:267][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.17-02.52.55:269][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.17-02.52.55:270][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.17-02.52.55:275][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.17-02.52.55:275][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.17-02.52.55:275][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.17-02.52.55:275][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.17-02.52.55:275][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.17-02.52.55:277][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.17-02.52.55:278][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.17-02.52.55:280][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.17-02.52.55:281][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.17-02.52.55:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.17-02.52.55:283][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.17-02.52.55:284][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.17-02.52.55:285][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.17-02.52.55:290][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-02.52.55:290][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-02.52.55:290][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-02.52.55:305][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.17-02.52.55:306][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-02.52.55:534][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-02.52.55:534][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-02.52.55:534][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.17-02.52.55:534][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-02.52.55:534][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-02.52.55:548][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.17-02.52.55:548][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-02.52.55:548][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-02.52.55:658][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-02.52.55:658][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-02.52.55:658][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-02.52.55:658][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-02.52.55:658][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-02.52.55:780][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-02.52.55:780][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-02.52.55:780][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-02.52.55:781][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-02.52.55:781][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-02.52.55:787][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.17-02.52.55:787][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.17-02.52.55:787][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-02.52.55:787][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.17-02.52.55:787][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.17-02.52.55:787][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.17-02.52.55:787][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.17-02.52.55:787][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.17-02.52.55:787][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.17-02.52.55:787][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-02.52.55:788][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.17-02.52.55:788][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.17-02.52.55:788][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.17-02.52.55:788][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.17-02.52.55:788][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.17-02.52.55:788][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-02.52.55:788][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.17-02.52.55:788][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.17-02.52.55:788][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.17-02.52.55:788][ 0]LogInit: Computer: T +[2025.06.17-02.52.55:788][ 0]LogInit: User: 99714 +[2025.06.17-02.52.55:788][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.17-02.52.55:788][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.17-02.52.56:052][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.17-02.52.56:052][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.17-02.52.56:052][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.17-02.52.56:053][ 0]LogMemory: Process Physical Memory: 616.13 MB used, 629.28 MB peak +[2025.06.17-02.52.56:053][ 0]LogMemory: Process Virtual Memory: 662.89 MB used, 662.89 MB peak +[2025.06.17-02.52.56:053][ 0]LogMemory: Physical Memory: 24730.60 MB used, 7778.71 MB free, 32509.30 MB total +[2025.06.17-02.52.56:053][ 0]LogMemory: Virtual Memory: 37279.42 MB used, 15709.89 MB free, 52989.30 MB total +[2025.06.17-02.52.56:053][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.17-02.52.56:059][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.17-02.52.56:083][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.17-02.52.56:083][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.17-02.52.56:084][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.17-02.52.56:084][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.17-02.52.56:086][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.17-02.52.56:365][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.17-02.52.56:365][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-02.52.56:365][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.17-02.52.56:365][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.17-02.52.56:365][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-02.52.56:385][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.17-02.52.56:385][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.17-02.52.56:650][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-02.52.56:650][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-02.52.56:650][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-02.52.56:650][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-02.52.56:650][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-02.52.56:651][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.17-02.52.56:652][ 0]LogWindows: Attached monitors: +[2025.06.17-02.52.56:652][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.17-02.52.56:652][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.17-02.52.56:652][ 0]LogWindows: Found 2 attached monitors. +[2025.06.17-02.52.56:652][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.17-02.52.56:653][ 0]LogRHI: RHI Adapter Info: +[2025.06.17-02.52.56:653][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.17-02.52.56:653][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-02.52.56:653][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.17-02.52.56:653][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.17-02.52.56:653][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.17-02.52.56:759][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.17-02.52.56:760][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.17-02.52.56:820][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.17-02.52.56:820][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.17-02.52.56:821][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.17-02.52.56:822][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.17-02.52.56:902][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000071241C52300) +[2025.06.17-02.52.56:902][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000071241C52580) +[2025.06.17-02.52.56:903][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000071241C52800) +[2025.06.17-02.52.56:903][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.17-02.52.56:903][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.17-02.52.56:905][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.17-02.52.56:905][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.17-02.52.56:905][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.17-02.52.56:949][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.17-02.52.56:956][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.17-02.52.56:980][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.17-02.52.56:980][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.17-02.52.57:040][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.17-02.52.57:041][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.17-02.52.57:041][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.17-02.52.57:041][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.17-02.52.57:041][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.17-02.52.57:041][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.17-02.52.57:041][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.17-02.52.57:046][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.17-02.52.57:052][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.17-02.52.57:095][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.17-02.52.57:095][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.17-02.52.57:095][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.17-02.52.57:095][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.17-02.52.57:096][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.17-02.52.57:130][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.17-02.52.57:130][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.17-02.52.57:165][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.17-02.52.57:165][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.17-02.52.57:165][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.17-02.52.57:165][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.17-02.52.57:200][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.17-02.52.57:200][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.17-02.52.57:200][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.17-02.52.57:233][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.17-02.52.57:233][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.17-02.52.57:233][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.17-02.52.57:233][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.17-02.52.57:271][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.17-02.52.57:271][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.17-02.52.57:342][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.17-02.52.57:342][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.17-02.52.57:342][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.17-02.52.57:342][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.17-02.52.57:342][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.17-02.52.57:535][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.17-02.52.57:548][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.17-02.52.57:549][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.17-02.52.57:549][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.17-02.52.57:549][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.17-02.52.57:552][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.17-02.52.57:553][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.17-02.52.57:553][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.17-02.52.57:553][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-02.52.57:553][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.17-02.52.57:624][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.17-02.52.57:624][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-02.52.57:625][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.17-02.52.57:628][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.17-02.52.57:629][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-02.52.57:629][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-02.52.57:629][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.17-02.52.57:631][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 7584 --child-id Zen_7584_Startup' +[2025.06.17-02.52.57:870][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.17-02.52.57:870][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.241 seconds +[2025.06.17-02.52.57:871][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.17-02.52.57:884][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.17-02.52.57:884][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.03ms. RandomReadSpeed=258.72MBs, RandomWriteSpeed=113.74MBs. Assigned SpeedClass 'Local' +[2025.06.17-02.52.57:885][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.17-02.52.57:885][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.17-02.52.57:885][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.17-02.52.57:886][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.17-02.52.57:886][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.17-02.52.57:886][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.17-02.52.57:886][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.17-02.52.57:888][ 0]LogShaderCompilers: Guid format shader working directory is 19 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/7584/). +[2025.06.17-02.52.57:888][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/07A8DA0F469BBBEC6066FB9879443CB8/'. +[2025.06.17-02.52.57:888][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.17-02.52.57:888][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.17-02.52.57:890][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.17-02.52.57:891][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.17-02.52.58:424][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.17-02.52.59:714][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.17-02.52.59:715][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.17-02.52.59:718][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-02.52.59:718][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-02.52.59:719][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-02.52.59:719][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-02.52.59:719][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-02.52.59:721][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-02.52.59:760][ 0]LogAssetRegistry: FAssetRegistry took 0.0029 seconds to start up +[2025.06.17-02.52.59:762][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.17-02.52.59:770][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.004s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.17-02.53.00:003][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.53.00:007][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.17-02.53.00:007][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.17-02.53.00:007][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.17-02.53.00:020][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.17-02.53.00:020][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.17-02.53.00:041][ 0]LogDeviceProfileManager: Active device profile: [000007125F656C00][0000071243DBC000 66] WindowsEditor +[2025.06.17-02.53.00:041][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.17-02.53.00:042][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.17-02.53.00:053][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.17-02.53.00:053][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.17-02.53.00:103][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:104][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:106][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.17-02.53.00:108][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.17-02.53.00:109][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:111][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.17-02.53.00:112][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.17-02.53.00:113][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-02.53.00:114][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.17-02.53.00:114][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:114][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-02.53.00:114][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.17-02.53.00:114][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-02.53.00:440][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.17-02.53.00:440][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.17-02.53.00:440][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.17-02.53.00:440][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.17-02.53.00:441][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.17-02.53.01:099][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.17-02.53.01:125][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.54ms +[2025.06.17-02.53.01:164][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.17-02.53.01:207][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.17-02.53.01:208][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-02.53.01:573][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.17-02.53.01:574][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.17-02.53.01:646][ 0]LogSlate: Border +[2025.06.17-02.53.01:646][ 0]LogSlate: BreadcrumbButton +[2025.06.17-02.53.01:646][ 0]LogSlate: Brushes.Title +[2025.06.17-02.53.01:647][ 0]LogSlate: Default +[2025.06.17-02.53.01:647][ 0]LogSlate: Icons.Save +[2025.06.17-02.53.01:647][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.17-02.53.01:647][ 0]LogSlate: ListView +[2025.06.17-02.53.01:647][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.17-02.53.01:647][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.17-02.53.01:647][ 0]LogSlate: TableView.DarkRow +[2025.06.17-02.53.01:647][ 0]LogSlate: TableView.Row +[2025.06.17-02.53.01:647][ 0]LogSlate: TreeView +[2025.06.17-02.53.01:916][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.17-02.53.01:920][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 4.591 ms +[2025.06.17-02.53.01:950][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-02.53.02:006][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.17-02.53.02:006][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.17-02.53.02:006][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.17-02.53.02:006][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.17-02.53.02:399][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.44ms +[2025.06.17-02.53.03:007][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.17-02.53.03:007][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.17-02.53.03:007][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.17-02.53.03:007][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.17-02.53.03:038][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 04E362084D694249800000000000D200 | Instance: 12E12CF943A559A6A473DDB5BF791C8F (T-7584). +[2025.06.17-02.53.04:194][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.17-02.53.04:194][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.17-02.53.04:194][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:57073'. +[2025.06.17-02.53.04:199][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.17-02.53.04:218][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.17-02.53.04:497][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.17-02.53.04:498][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.17-02.53.04:516][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.17-02.53.05:565][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.17-02.53.06:114][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.48ms +[2025.06.17-02.53.06:146][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.17-02.53.07:131][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.17-02.53.07:207][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-02.53.07:207][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-02.53.07:481][ 0]SourceControl: Revision control is disabled +[2025.06.17-02.53.07:632][ 0]SourceControl: Revision control is disabled +[2025.06.17-02.53.07:763][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.17-02.53.07:799][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-02.53.07:799][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-02.53.08:061][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.17-02.53.08:062][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.17-02.53.08:063][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.17-02.53.08:063][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.17-02.53.08:064][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.17-02.53.08:065][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.17-02.53.08:065][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.17-02.53.08:067][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.17-02.53.08:067][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.17-02.53.08:068][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.17-02.53.08:069][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.17-02.53.08:070][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.17-02.53.08:070][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.17-02.53.08:072][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.17-02.53.08:072][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.17-02.53.08:073][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.17-02.53.08:075][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.17-02.53.08:076][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.17-02.53.08:076][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.17-02.53.08:077][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.17-02.53.08:077][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.17-02.53.08:077][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.17-02.53.08:078][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.17-02.53.08:078][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.17-02.53.08:079][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.17-02.53.08:080][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.17-02.53.08:080][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.17-02.53.08:081][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.17-02.53.08:082][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.17-02.53.08:082][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.17-02.53.08:083][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.17-02.53.08:084][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.17-02.53.08:084][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.17-02.53.08:084][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.17-02.53.08:086][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.17-02.53.08:238][ 0]LogCollectionManager: Loaded 0 collections in 0.000846 seconds +[2025.06.17-02.53.08:241][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.17-02.53.08:241][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.17-02.53.08:241][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.17-02.53.08:385][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-02.53.08:385][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-02.53.08:388][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-02.53.08:388][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-02.53.08:388][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-02.53.08:388][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-02.53.08:416][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-02.53.08:417][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-02.53.08:436][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-17T02:53:08.436Z using C +[2025.06.17-02.53.08:437][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.17-02.53.08:440][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-02.53.08:442][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.17-02.53.08:457][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.17-02.53.08:461][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.17-02.53.08:462][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.17-02.53.08:462][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000725 +[2025.06.17-02.53.08:463][ 0]LogFab: Display: Logging in using persist +[2025.06.17-02.53.08:516][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.17-02.53.08:517][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.17-02.53.08:526][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.17-02.53.08:526][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.17-02.53.08:646][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:646][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:651][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.17-02.53.08:663][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:679][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.17-02.53.08:684][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:685][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-02.53.08:687][ 0]LogEngine: Initializing Engine... +[2025.06.17-02.53.08:696][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.17-02.53.08:697][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.17-02.53.08:770][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.17-02.53.08:794][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.17-02.53.08:846][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.17-02.53.08:846][ 0]LogInit: Texture streaming: Enabled +[2025.06.17-02.53.08:881][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.17-02.53.08:889][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.17-02.53.08:914][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.17-02.53.08:915][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.17-02.53.08:915][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.17-02.53.08:915][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-02.53.08:915][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-02.53.08:917][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-02.53.08:917][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-02.53.08:917][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-02.53.08:917][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-02.53.08:938][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-02.53.08:984][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-02.53.08:985][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-02.53.08:988][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-02.53.08:988][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-02.53.08:989][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.17-02.53.08:989][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.17-02.53.08:990][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.17-02.53.08:990][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.17-02.53.08:990][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.17-02.53.08:990][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.17-02.53.08:990][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.17-02.53.09:009][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.17-02.53.09:013][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.17-02.53.09:013][ 0]LogInit: Transaction tracking system initialized +[2025.06.17-02.53.09:041][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.17-02.53.09:220][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.67ms +[2025.06.17-02.53.09:222][ 0]LocalizationService: Localization service is disabled +[2025.06.17-02.53.09:262][ 0]LogTimingProfiler: Initialize +[2025.06.17-02.53.09:265][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.17-02.53.09:265][ 0]LoadingProfiler: Initialize +[2025.06.17-02.53.09:266][ 0]LoadingProfiler: OnSessionChanged +[2025.06.17-02.53.09:266][ 0]LogNetworkingProfiler: Initialize +[2025.06.17-02.53.09:267][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.17-02.53.09:268][ 0]LogMemoryProfiler: Initialize +[2025.06.17-02.53.09:268][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.17-02.53.09:641][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.17-02.53.09:731][ 0]LogPython: Using Python 3.11.8 +[2025.06.17-02.53.09:953][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.17-02.53.09:953][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.17-02.53.10:486][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.17-02.53.10:512][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.17-02.53.10:603][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.17-02.53.10:603][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.17-02.53.10:702][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.17-02.53.11:013][ 0]LogEditorDataStorage: Initializing +[2025.06.17-02.53.11:018][ 0]LogEditorDataStorage: Initialized +[2025.06.17-02.53.11:055][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.17-02.53.11:056][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.17-02.53.11:062][ 0]SourceControl: Revision control is disabled +[2025.06.17-02.53.11:063][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 18.220 +[2025.06.17-02.53.11:067][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-02.53.11:071][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.17-02.53.11:075][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-02.53.11:095][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.17-02.53.11:788][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.17-02.53.12:938][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.17-02.53.12:952][ 0]LogSkeletalMesh: Built Skeletal Mesh [7.39s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.17-02.53.12:972][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-02.53.12:987][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.39ms +[2025.06.17-02.53.13:002][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.17-02.53.13:002][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.17-02.53.13:005][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-02.53.13:005][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-02.53.13:005][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-02.53.13:082][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.17-02.53.13:094][ 0]LogWorldPartition: Display: WorldPartition initialize took 88.188 ms +[2025.06.17-02.53.13:119][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-02.53.13:136][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.37ms +[2025.06.17-02.53.13:136][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-02.53.13:138][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.732ms to complete. +[2025.06.17-02.53.13:150][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 20.307 +[2025.06.17-02.53.13:307][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.17-02.53.13:379][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-02.53.13:410][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-02.53.13:442][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-02.53.13:472][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-02.53.13:481][ 0]LogSlate: Took 0.000567 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.17-02.53.13:500][ 0]LogSlate: Took 0.000781 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.17-02.53.13:504][ 0]LogSlate: Took 0.003206 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.17-02.53.13:620][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:621][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.17-02.53.13:622][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:623][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.17-02.53.13:624][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:624][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:625][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:625][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:628][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:628][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.17-02.53.13:628][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:630][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:630][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:631][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.17-02.53.13:631][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:632][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:632][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:633][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:633][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-02.53.13:634][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.17-02.53.13:801][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:801][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:802][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:802][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:802][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:803][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:803][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:803][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-02.53.13:989][ 0]LogSlate: Took 0.000507 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.17-02.53.13:991][ 0]LogSlate: Took 0.000477 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.17-02.53.14:022][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.17-02.53.14:028][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.17-02.53.14:028][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.17-02.53.14:029][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-02.53.14:097][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-02.53.14:097][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.17-02.53.14:098][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.17-02.53.14:098][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.17-02.53.14:098][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-02.53.14:130][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-02.53.14:130][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.17-02.53.14:173][ 0]LogSlate: Took 0.000514 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-02.53.14:222][ 0]LogSlate: Took 0.000214 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-02.53.14:376][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 118.89 ms. Compile time 29.85 ms, link time 88.92 ms. +[2025.06.17-02.53.14:581][ 0]LogStall: Startup... +[2025.06.17-02.53.14:584][ 0]LogStall: Startup complete. +[2025.06.17-02.53.14:607][ 0]LogLoad: (Engine Initialization) Total time: 21.76 seconds +[2025.06.17-02.53.14:751][ 0]LogAssetRegistry: AssetRegistryGather time 0.1185s: AssetDataDiscovery 0.0398s, AssetDataGather 0.0330s, StoreResults 0.0457s. Wall time 14.9940s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7507. NumUncachedFiles 0. + BackgroundTickInterruptions 1. +[2025.06.17-02.53.14:773][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.17-02.53.14:776][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.17-02.53.14:782][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.17-02.53.14:782][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.17-02.53.14:828][ 0]LogAutomationController: Ignoring very large delta of 16794029.59 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-02.53.14:829][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-02.53.14:841][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.17-02.53.14:891][ 0]LogPython: registering + +[2025.06.17-02.53.14:899][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.122499 seconds (Found 7482 uncontrolled assets) +[2025.06.17-02.53.14:899][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 58.076 ms +[2025.06.17-02.53.15:739][ 4]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.53.16:097][ 5]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.53.16:409][ 6]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.17-02.53.16:438][ 6]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.671709 +[2025.06.17-02.53.16:441][ 6]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.17-02.53.16:444][ 6]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.975856 +[2025.06.17-02.53.16:828][ 9]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.17-02.53.17:159][ 10]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.17-02.53.17:514][ 11]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.17-02.53.17:533][ 11]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-02.53.18:230][ 15]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 9.450080 +[2025.06.17-02.53.18:232][ 15]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.17-02.53.18:232][ 15]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9.450080, Update Interval: 323.509644 +[2025.06.17-02.53.19:236][ 18]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.17-04.53.18 Remaining: 7200.06] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15552000.06] State: Valid +[2025.06.17-02.53.19:569][ 19]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.17-02.53.20:570][ 22]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.17-02.53.20:571][ 22]LogFab: Display: User logged in +[2025.06.17-02.53.20:571][ 22]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.17-02.53.21:223][ 24]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-aOZEiRsnRUm15pHCrYq4wg-5ySN63Iy3EqXoBF33UY5wQ] +[2025.06.17-02.54.06:527][489]LogStreaming: Display: FlushAsyncLoading(365): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.54.06:554][489]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard +[2025.06.17-02.54.06:555][489]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.17-02.54.06:563][489]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_5 +[2025.06.17-02.54.06:570][489]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.17-02.54.07:516][489]LogSlate: Took 0.000656 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.17-02.54.07:521][489]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.17-02.54.07:522][489]LogSlate: Took 0.000676 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.17-02.54.48:709][675]LogSlate: Window 'Color Picker' being destroyed +[2025.06.17-02.54.48:738][675]LogAutomationController: Ignoring very large delta of 3.83 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-02.55.01:065][ 83]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.002 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-02.55.11:868][309]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.17-02.55.12:691][383]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.55.12:756][383]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.17-02.55.12:759][383]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.17-02.55.12:759][383]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.17-02.55.12:760][383]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.17-02.55.12:777][383]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.17-02.55.12:779][383]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardAEF1BE8B4D5CBB1CB43B2FA484BE5020.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.17-02.55.12:791][383]LogFileHelpers: InternalPromptForCheckoutAndSave took 100.433 ms +[2025.06.17-02.55.12:844][383]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.55.12:844][383]LogContentValidation: Enabled validators: +[2025.06.17-02.55.12:844][383]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.55.12:844][383]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.55.12:844][383]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.55.12:845][383]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.55.12:845][383]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.55.12:845][383]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.55.12:847][383]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.17-02.55.34:323][873]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.17-02.55.34:806][920]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.55.34:867][920]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.17-02.55.34:868][920]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.17-02.55.34:868][920]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.17-02.55.34:868][920]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.17-02.55.34:879][920]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.17-02.55.34:880][920]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard05E57B3A4CF6A4A5E18DE7AF33CF1804.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.17-02.55.34:887][920]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.150 ms (total: 181.583 ms) +[2025.06.17-02.55.34:943][920]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.55.34:944][920]LogContentValidation: Enabled validators: +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.55.34:944][920]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.55.34:944][920]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.17-02.55.37:384][192]LogStreaming: Display: FlushAsyncLoading(537): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.55.37:390][192]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer +[2025.06.17-02.55.37:391][192]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_8 +[2025.06.17-02.55.37:395][192]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_9 +[2025.06.17-02.55.57:910][490]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-02.55.58:427][535]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.55.58:484][535]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-02.55.58:486][535]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-02.55.58:486][535]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-02.55.58:486][535]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-02.55.58:491][535]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-02.55.58:492][535]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer27B9B68E427CD97B188577B7A46B976B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-02.55.58:499][535]LogFileHelpers: InternalPromptForCheckoutAndSave took 72.712 ms (total: 254.296 ms) +[2025.06.17-02.55.58:549][535]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.55.58:549][535]LogContentValidation: Enabled validators: +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.55.58:549][535]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.55.58:550][535]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-02.56.15:474][475]LogStreaming: Display: FlushAsyncLoading(538): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-02.56.15:545][475]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.17-02.56.15:545][475]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_11 +[2025.06.17-02.56.39:408][212]LogSlate: Took 0.000838 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf' (160K) +[2025.06.17-02.56.43:429][639]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-02.56.43:831][675]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.56.43:901][675]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-02.56.43:901][675]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-02.56.43:901][675]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-02.56.43:917][675]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-02.56.43:918][675]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeDF0F01964839C600D731E6B6688338C4.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-02.56.43:929][675]LogFileHelpers: InternalPromptForCheckoutAndSave took 97.572 ms (total: 351.868 ms) +[2025.06.17-02.56.43:987][675]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.56.43:987][675]LogContentValidation: Enabled validators: +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.56.43:987][675]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.56.43:987][675]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-02.56.46:586][967]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-02.56.46:804][978]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-02.58.12:316][234]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-02.58.12:446][237]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-02.58.13:080][294]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.58.13:145][294]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-02.58.13:146][294]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-02.58.13:146][294]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-02.58.13:146][294]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-02.58.13:153][294]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-02.58.13:153][294]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer233812024B3A0CADC394AC8D98314591.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-02.58.13:162][294]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.061 ms (total: 432.930 ms) +[2025.06.17-02.58.13:213][294]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.58.13:213][294]LogContentValidation: Enabled validators: +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.58.13:213][294]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.58.13:214][294]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-02.58.41:431][649]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 332.970337 +[2025.06.17-02.58.41:707][677]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-02.58.41:707][677]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 333.238708, Update Interval: 313.046661 +[2025.06.17-02.58.59:525][733]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-02.58.59:586][733]OBJ SavePackage: Generating thumbnails for [1] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-02.58.59:586][733]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-02.58.59:586][733]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-02.58.59:592][733]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-02.58.59:593][733]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerD7721FBA4C7245B0A36D549FFDC060CE.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-02.58.59:601][733]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.749 ms (total: 508.680 ms) +[2025.06.17-02.58.59:663][733]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-02.58.59:664][733]LogContentValidation: Enabled validators: +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-02.58.59:664][733]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-02.58.59:664][733]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.01.27:269][ 39]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.17-03.01.27:865][ 99]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.01.27:905][ 99]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.01.27:906][ 99]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.01.27:906][ 99]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.01.27:906][ 99]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.01.27:914][ 99]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.01.27:914][ 99]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerBE02784D423AC98B8FDDBD83EBF545FD.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.01.27:922][ 99]LogFileHelpers: InternalPromptForCheckoutAndSave took 56.696 ms (total: 565.376 ms) +[2025.06.17-03.01.27:971][ 99]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.01.27:971][ 99]LogContentValidation: Enabled validators: +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.01.27:971][ 99]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.01.27:972][ 99]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.03.58:214][864]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 649.757751 +[2025.06.17-03.03.58:499][893]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.03.58:499][893]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 650.035034, Update Interval: 322.216858 +[2025.06.17-03.08.36:604][822]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.08.45:690][850]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.09.28:610][755]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 980.154602 +[2025.06.17-03.09.28:867][786]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.09.28:867][786]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 980.404236, Update Interval: 324.326294 +[2025.06.17-03.10.00:337][391]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.10.01:941][568]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.10.04:119][814]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.10.06:579][ 69]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.10.49:109][ 3]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.17-03.10.49:576][ 46]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.10.49:634][ 46]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.10.49:634][ 46]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.10.49:634][ 46]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.10.49:634][ 46]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.10.49:644][ 46]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.10.49:645][ 46]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer51F347B4454380E49829F5A80D3E717C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.10.49:653][ 46]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.150 ms (total: 642.527 ms) +[2025.06.17-03.10.49:717][ 46]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.10.49:717][ 46]LogContentValidation: Enabled validators: +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.10.49:717][ 46]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.10.49:717][ 46]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.10.54:655][606]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-03.10.57:383][606]LogSlate: Window 'Save Content' being destroyed +[2025.06.17-03.10.57:394][606]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.10.57:458][606]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.10.57:458][606]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.10.57:458][606]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-03.10.57:472][606]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-03.10.57:472][606]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeCC0DF23E454ECF618A06D8A5A351814C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-03.10.57:539][606]LogFileHelpers: InternalPromptForCheckoutAndSave took 145.818 ms (total: 788.345 ms) +[2025.06.17-03.10.57:541][606]LogStreaming: Display: FlushAsyncLoading(541): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-03.10.57:575][606]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.10.57:576][606]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-03.10.57:576][606]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.10.57:576][606]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.10.57:590][606]LogWorldPartition: Display: WorldPartition initialize took 13.333 ms (total: 101.522 ms) +[2025.06.17-03.10.57:595][606]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.17-03.10.57:596][606]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-03.10.57:615][606]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.10.57:615][606]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.10.57:617][606]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.17-03.10.57:642][606]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.10.57:650][606]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.10.57:652][606]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.10.57:653][606]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.10.57:653][606]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-03.10.57:668][606]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.10.57:682][606]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-03.10.57:699][606]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.17-03.10.57:699][606]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.10.57:701][606]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-03.10.57:701][606]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.10.57:701][606]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.10.57:710][606]LogWorldPartition: Display: WorldPartition initialize took 8.811 ms (total: 110.333 ms) +[2025.06.17-03.10.57:739][606]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-03.10.57:762][606]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.10.57:768][606]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-03.10.57:769][606]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.508ms to complete. +[2025.06.17-03.10.57:841][606]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.10.57:841][606]LogContentValidation: Enabled validators: +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.10.57:841][606]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.10.57:841][606]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-03.10.57:867][606]LogAutomationController: Ignoring very large delta of 3.25 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.11.00:264][846]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_16 +[2025.06.17-03.11.00:330][847]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_17 +[2025.06.17-03.11.10:119][969]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.11.10:141][969]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.11.10:141][969]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.11.10:144][969]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 3.637 ms +[2025.06.17-03.11.10:148][969]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.11.10:154][969]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.17-03.11.10:154][969]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.17-03.11.10:155][969]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.11.10:160][969]LogPlayLevel: PIE: StaticDuplicateObject took: (0.005111s) +[2025.06.17-03.11.10:160][969]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.005260s) +[2025.06.17-03.11.10:174][969]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-03.11.10:178][969]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.11.10:180][969]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.11.10:180][969]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.11.10:180][969]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.11.10:180][969]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.11.10:181][969]LogWorldPartition: Display: WorldPartition initialize took 1.407 ms (total: 111.740 ms) +[2025.06.17-03.11.10:181][969]LogPlayLevel: PIE: World Init took: (0.003660s) +[2025.06.17-03.11.10:182][969]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.11.10:182][969]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.11.10:182][969]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.11.10:182][969]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.11.10:182][969]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.11.10:182][969]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.11.10:184][969]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.11.10:210][969]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.11.10:210][969]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.11.10:210][969]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.11.10:210][969]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.11.10:211][969]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.17-03.11.10:211][969]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.17-03.11.10:213][969]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.17-03.11.10:213][969]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.17-03.11.10:213][969]LogInit: FAudioDevice initialized with ID 2. +[2025.06.17-03.11.10:213][969]LogAudio: Display: Audio Device (ID: 2) registered with world 'Dabaza'. +[2025.06.17-03.11.10:213][969]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.17-03.11.10:217][969]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.11.10:219][969]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.11.10 +[2025.06.17-03.11.10:222][969]LogWorld: Bringing up level for play took: 0.003689 +[2025.06.17-03.11.10:224][969]LogOnline: OSS: Created online subsystem instance for: :Context_12 +[2025.06.17-03.11.10:245][969]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.11.10:245][969]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.11.10:246][969]PIE: Server logged in +[2025.06.17-03.11.10:247][969]PIE: Play in editor total start time 0.108 seconds. +[2025.06.17-03.11.12:174][170]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.11.12:175][170]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.11.12:176][170]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.11.12:177][170]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.11.12:177][170]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.11.12:181][170]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.11.12:185][170]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.11.12:203][170]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.11.12:203][170]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.17-03.11.12:205][170]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.17-03.11.12:207][170]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.17-03.11.12:213][170]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.11.12:216][170]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.11.12:262][171]LogPlayLevel: Display: Destroying online subsystem :Context_12 +[2025.06.17-03.12.01:441][804]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.12.02:105][865]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.12.02:160][865]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.12.02:163][865]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.12.02:163][865]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.12.02:163][865]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.12.02:172][865]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.12.02:173][865]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer4BA0E4464F67F6FEAB1F539F4C5429C4.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.12.02:180][865]LogFileHelpers: InternalPromptForCheckoutAndSave took 75.276 ms (total: 863.622 ms) +[2025.06.17-03.12.02:245][865]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.12.02:245][865]LogContentValidation: Enabled validators: +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.12.02:245][865]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.12.02:247][865]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.15.07:755][629]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1319.285889 +[2025.06.17-03.15.08:756][632]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.15.08:756][632]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1319.952515, Update Interval: 329.583435 +[2025.06.17-03.17.10:165][ 99]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.17.10:172][ 99]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.17.10:172][ 99]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.17.10:173][ 99]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.600 ms (total: 5.238 ms) +[2025.06.17-03.17.10:174][ 99]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.17.10:174][ 99]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.17.10:176][ 99]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002597s) +[2025.06.17-03.17.10:176][ 99]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002729s) +[2025.06.17-03.17.10:191][ 99]LogUObjectHash: Compacting FUObjectHashTables data took 0.96ms +[2025.06.17-03.17.10:194][ 99]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.17.10:195][ 99]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.17.10:195][ 99]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.17.10:195][ 99]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.17.10:195][ 99]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.17.10:195][ 99]LogWorldPartition: Display: WorldPartition initialize took 1.011 ms (total: 112.752 ms) +[2025.06.17-03.17.10:197][ 99]LogPlayLevel: PIE: World Init took: (0.002446s) +[2025.06.17-03.17.10:197][ 99]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.17-03.17.10:197][ 99]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.17.10:197][ 99]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.17.10:198][ 99]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.17.10:198][ 99]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.17.10:198][ 99]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.17.10:198][ 99]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.17.10:198][ 99]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.17.10:198][ 99]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.17.10:198][ 99]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.17.10:198][ 99]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.17.10:198][ 99]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.17.10:201][ 99]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.17.10:228][ 99]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.17.10:228][ 99]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.17.10:228][ 99]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.17.10:228][ 99]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.17.10:229][ 99]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.17-03.17.10:229][ 99]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.17-03.17.10:230][ 99]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.17-03.17.10:230][ 99]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.17-03.17.10:230][ 99]LogInit: FAudioDevice initialized with ID 3. +[2025.06.17-03.17.10:230][ 99]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.17-03.17.10:231][ 99]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.17-03.17.10:233][ 99]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.17.10:235][ 99]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.17.10 +[2025.06.17-03.17.10:235][ 99]LogWorld: Bringing up level for play took: 0.001304 +[2025.06.17-03.17.10:237][ 99]LogOnline: OSS: Created online subsystem instance for: :Context_13 +[2025.06.17-03.17.10:240][ 99]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.17.10:240][ 99]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.17.22:335][ 99]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.17.22:335][ 99]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.17.41:506][ 99]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Engine/EditorBlueprintResources/StandardMacros.StandardMacros +[2025.06.17-03.17.41:507][ 99]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_19 +[2025.06.17-03.17.58:006][ 99]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.17.58:006][ 99]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.17.58:007][ 99]PIE: Server logged in +[2025.06.17-03.17.58:007][ 99]PIE: Play in editor total start time 47.836 seconds. +[2025.06.17-03.17.58:023][ 99]LogAutomationController: Ignoring very large delta of 47.86 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2|Skill_3|Skill_4 释放技能效果SkillEnduranceRestore +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |Skill_5 释放技能效果ModifyCooldown +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |Skill_5 释放技能效果Charge +[2025.06.17-03.17.58:161][100]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Damage +[2025.06.17-03.17.58:210][103]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.18.05:036][910]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.18.05:036][910]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.18.05:036][910]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.18.05:037][910]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.18.05:037][910]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.18.05:040][910]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.18.05:044][910]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.18.05:061][910]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.18.05:061][910]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.17-03.18.05:062][910]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.17-03.18.05:063][910]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.17-03.18.05:067][910]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.18.05:085][910]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.18.05:128][911]LogPlayLevel: Display: Destroying online subsystem :Context_13 +[2025.06.17-03.19.32:810][904]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\UI\WBP_SkillContainer.uasset: [Compiler] This blueprint (self) is not a GridPanel, therefore ' Target ' must have a connection. +[2025.06.17-03.19.32:831][904]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.19.33:342][948]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.19.33:404][948]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.19.33:405][948]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.19.33:405][948]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.19.33:405][948]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.19.33:416][948]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.19.33:417][948]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerA0CE9C374CC5964416EF15BC48B4F190.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.19.33:425][948]LogFileHelpers: InternalPromptForCheckoutAndSave took 83.675 ms (total: 947.297 ms) +[2025.06.17-03.19.33:483][948]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.19.33:483][948]LogContentValidation: Enabled validators: +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.19.33:483][948]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.19.33:483][948]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.19.37:661][410]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.19.38:132][446]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.19.38:189][446]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.19.38:191][446]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.19.38:191][446]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.19.38:191][446]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.19.38:202][446]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.19.38:202][446]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer12B877CD4B763F04E3220FB3CB33DD0A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.19.38:211][446]LogFileHelpers: InternalPromptForCheckoutAndSave took 79.433 ms (total: 1.02 sec) +[2025.06.17-03.19.38:268][446]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.19.38:268][446]LogContentValidation: Enabled validators: +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.19.38:268][446]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.19.38:268][446]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.19.39:150][541]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.19.39:155][541]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.19.39:155][541]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.19.39:156][541]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.306 ms (total: 6.544 ms) +[2025.06.17-03.19.39:156][541]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.19.39:157][541]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.19.39:160][541]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002245s) +[2025.06.17-03.19.39:160][541]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002402s) +[2025.06.17-03.19.39:173][541]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.17-03.19.39:174][541]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.19.39:176][541]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.19.39:176][541]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.19.39:176][541]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.19.39:176][541]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.19.39:176][541]LogWorldPartition: Display: WorldPartition initialize took 1.132 ms (total: 113.885 ms) +[2025.06.17-03.19.39:178][541]LogPlayLevel: PIE: World Init took: (0.002647s) +[2025.06.17-03.19.39:178][541]LogAudio: Display: Creating Audio Device: Id: 4, Scope: Unique, Realtime: True +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.19.39:178][541]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.19.39:178][541]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.19.39:179][541]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.19.39:179][541]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.19.39:179][541]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.19.39:180][541]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.19.39:208][541]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.19.39:208][541]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.19.39:208][541]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.19.39:208][541]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.19.39:209][541]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=4 +[2025.06.17-03.19.39:209][541]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=4 +[2025.06.17-03.19.39:211][541]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=4 +[2025.06.17-03.19.39:211][541]LogInit: FAudioDevice initialized with ID 4. +[2025.06.17-03.19.39:211][541]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=4 +[2025.06.17-03.19.39:211][541]LogAudio: Display: Audio Device (ID: 4) registered with world 'Dabaza'. +[2025.06.17-03.19.39:211][541]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.17-03.19.39:214][541]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.19.39:214][541]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.19.39 +[2025.06.17-03.19.39:215][541]LogWorld: Bringing up level for play took: 0.001154 +[2025.06.17-03.19.39:217][541]LogOnline: OSS: Created online subsystem instance for: :Context_15 +[2025.06.17-03.19.39:220][541]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.19.39:220][541]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.19.40:713][541]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.19.40:713][541]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.19.41:724][541]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.19.41:724][541]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.19.41:725][541]PIE: Server logged in +[2025.06.17-03.19.41:726][541]PIE: Play in editor total start time 2.571 seconds. +[2025.06.17-03.19.41:744][541]LogAutomationController: Ignoring very large delta of 2.60 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.19.45:149][929]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.19.45:756][997]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.19.45:756][997]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.19.45:756][997]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.19.45:756][997]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.19.45:758][997]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.19.45:760][997]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.19.45:763][997]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.19.45:779][997]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.19.45:780][997]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.17-03.19.45:780][997]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.17-03.19.45:782][997]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.17-03.19.45:785][997]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.19.45:788][997]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.19.45:829][998]LogPlayLevel: Display: Destroying online subsystem :Context_15 +[2025.06.17-03.20.11:388][851]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.20.11:831][883]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.20.11:882][883]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.17-03.20.11:884][883]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.17-03.20.11:885][883]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.17-03.20.11:885][883]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.17-03.20.11:896][883]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.17-03.20.11:896][883]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCard7219FD8141FC3B539F8A848664DBC8F6.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.17-03.20.11:905][883]LogFileHelpers: InternalPromptForCheckoutAndSave took 74.219 ms (total: 1.10 sec) +[2025.06.17-03.20.11:965][883]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.20.11:965][883]LogContentValidation: Enabled validators: +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.20.11:965][883]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.20.11:967][883]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.17-03.20.12:958][991]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.20.12:964][991]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.20.12:964][991]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.20.12:965][991]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.284 ms (total: 7.829 ms) +[2025.06.17-03.20.12:965][991]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.20.12:965][991]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.12:968][991]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002277s) +[2025.06.17-03.20.12:968][991]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002425s) +[2025.06.17-03.20.12:979][991]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-03.20.12:982][991]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.20.12:983][991]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.20.12:983][991]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.20.12:983][991]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.20.12:984][991]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.20.12:984][991]LogWorldPartition: Display: WorldPartition initialize took 1.009 ms (total: 114.895 ms) +[2025.06.17-03.20.12:984][991]LogPlayLevel: PIE: World Init took: (0.002337s) +[2025.06.17-03.20.12:985][991]LogAudio: Display: Creating Audio Device: Id: 5, Scope: Unique, Realtime: True +[2025.06.17-03.20.12:985][991]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.20.12:985][991]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.20.12:985][991]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.20.12:985][991]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.20.12:985][991]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.20.12:986][991]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.20.12:986][991]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.20.12:986][991]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.20.12:986][991]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.20.12:986][991]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.20.12:986][991]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.20.12:988][991]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.20.13:012][991]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.20.13:014][991]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.20.13:014][991]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.20.13:014][991]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.20.13:014][991]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=5 +[2025.06.17-03.20.13:014][991]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=5 +[2025.06.17-03.20.13:016][991]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=5 +[2025.06.17-03.20.13:016][991]LogInit: FAudioDevice initialized with ID 5. +[2025.06.17-03.20.13:017][991]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=5 +[2025.06.17-03.20.13:017][991]LogAudio: Display: Audio Device (ID: 5) registered with world 'Dabaza'. +[2025.06.17-03.20.13:017][991]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.17-03.20.13:019][991]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.20.13:020][991]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.20.13 +[2025.06.17-03.20.13:020][991]LogWorld: Bringing up level for play took: 0.001274 +[2025.06.17-03.20.13:022][991]LogOnline: OSS: Created online subsystem instance for: :Context_16 +[2025.06.17-03.20.13:026][991]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.20.13:026][991]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.20.13:026][991]PIE: Server logged in +[2025.06.17-03.20.13:026][991]PIE: Play in editor total start time 0.063 seconds. +[2025.06.17-03.20.14:467][146]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.14:467][146]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.14:467][146]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.20.14:467][146]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.14:467][146]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.20.14:470][146]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.20.14:473][146]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.14:489][146]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.20.14:489][146]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.17-03.20.14:489][146]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.17-03.20.14:491][146]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.17-03.20.14:494][146]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.14:496][146]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.17-03.20.14:539][147]LogPlayLevel: Display: Destroying online subsystem :Context_16 +[2025.06.17-03.20.24:225][264]LogAssetEditorSubsystem: Opening Asset editor for DataTable /Game/DataTable/PawnSkills.PawnSkills +[2025.06.17-03.20.24:307][264]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.20.33:764][166]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.20.39:570][730]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.20.39:577][730]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.20.39:577][730]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.20.39:578][730]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.428 ms (total: 9.257 ms) +[2025.06.17-03.20.39:578][730]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.20.39:578][730]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.39:581][730]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002262s) +[2025.06.17-03.20.39:581][730]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002417s) +[2025.06.17-03.20.39:613][730]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-03.20.39:614][730]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.20.39:616][730]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.20.39:616][730]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.20.39:616][730]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.20.39:616][730]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.20.39:617][730]LogWorldPartition: Display: WorldPartition initialize took 966 us (total: 115.861 ms) +[2025.06.17-03.20.39:617][730]LogPlayLevel: PIE: World Init took: (0.002323s) +[2025.06.17-03.20.39:617][730]LogAudio: Display: Creating Audio Device: Id: 6, Scope: Unique, Realtime: True +[2025.06.17-03.20.39:617][730]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.20.39:618][730]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.20.39:618][730]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.20.39:618][730]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.20.39:618][730]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.20.39:618][730]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.20.39:620][730]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.20.39:648][730]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.20.39:648][730]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.20.39:648][730]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.20.39:648][730]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.20.39:648][730]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=6 +[2025.06.17-03.20.39:648][730]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=6 +[2025.06.17-03.20.39:651][730]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=6 +[2025.06.17-03.20.39:651][730]LogInit: FAudioDevice initialized with ID 6. +[2025.06.17-03.20.39:651][730]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=6 +[2025.06.17-03.20.39:651][730]LogAudio: Display: Audio Device (ID: 6) registered with world 'Dabaza'. +[2025.06.17-03.20.39:651][730]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.17-03.20.39:653][730]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.20.39:654][730]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.20.39 +[2025.06.17-03.20.39:654][730]LogWorld: Bringing up level for play took: 0.001257 +[2025.06.17-03.20.39:657][730]LogOnline: OSS: Created online subsystem instance for: :Context_17 +[2025.06.17-03.20.39:661][730]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.20.39:661][730]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.20.39:662][730]PIE: Server logged in +[2025.06.17-03.20.39:662][730]PIE: Play in editor total start time 0.086 seconds. +[2025.06.17-03.20.41:107][870]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.41:107][870]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.41:107][870]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.20.41:108][870]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.41:108][870]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.20.41:112][870]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.20.41:114][870]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.41:131][870]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.20.41:132][870]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 6 +[2025.06.17-03.20.41:132][870]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.17-03.20.41:134][870]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=6 +[2025.06.17-03.20.41:136][870]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.41:138][870]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.20.41:182][871]LogPlayLevel: Display: Destroying online subsystem :Context_17 +[2025.06.17-03.20.42:793][ 21]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.20.46:837][403]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.20.46:842][403]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.20.46:842][403]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.20.46:844][403]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.365 ms (total: 10.623 ms) +[2025.06.17-03.20.46:844][403]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.20.46:844][403]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.46:846][403]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002191s) +[2025.06.17-03.20.46:846][403]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002333s) +[2025.06.17-03.20.46:861][403]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.20.46:863][403]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.20.46:864][403]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.20.46:864][403]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.20.46:864][403]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.20.46:864][403]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.20.46:865][403]LogWorldPartition: Display: WorldPartition initialize took 1.096 ms (total: 116.957 ms) +[2025.06.17-03.20.46:865][403]LogPlayLevel: PIE: World Init took: (0.002444s) +[2025.06.17-03.20.46:866][403]LogAudio: Display: Creating Audio Device: Id: 7, Scope: Unique, Realtime: True +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.20.46:866][403]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.20.46:866][403]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.20.46:866][403]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.20.46:866][403]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.20.46:866][403]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.20.46:869][403]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.20.46:893][403]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.20.46:894][403]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.20.46:894][403]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.20.46:894][403]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.20.46:894][403]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=7 +[2025.06.17-03.20.46:894][403]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=7 +[2025.06.17-03.20.46:897][403]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=7 +[2025.06.17-03.20.46:897][403]LogInit: FAudioDevice initialized with ID 7. +[2025.06.17-03.20.46:897][403]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=7 +[2025.06.17-03.20.46:897][403]LogAudio: Display: Audio Device (ID: 7) registered with world 'Dabaza'. +[2025.06.17-03.20.46:897][403]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.17-03.20.46:900][403]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.20.46:901][403]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.20.46 +[2025.06.17-03.20.46:901][403]LogWorld: Bringing up level for play took: 0.001174 +[2025.06.17-03.20.46:903][403]LogOnline: OSS: Created online subsystem instance for: :Context_18 +[2025.06.17-03.20.46:906][403]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.20.46:906][403]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.20.46:907][403]PIE: Server logged in +[2025.06.17-03.20.46:907][403]PIE: Play in editor total start time 0.066 seconds. +[2025.06.17-03.20.49:396][666]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.49:396][666]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.20.49:397][666]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.20.49:397][666]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.49:397][666]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.20.49:400][666]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.20.49:403][666]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.20.49:418][666]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.20.49:418][666]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 7 +[2025.06.17-03.20.49:419][666]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.17-03.20.49:420][666]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=7 +[2025.06.17-03.20.49:425][666]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.20.49:497][668]LogPlayLevel: Display: Destroying online subsystem :Context_18 +[2025.06.17-03.20.54:068][112]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1665.600830 +[2025.06.17-03.20.54:339][139]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.20.54:340][139]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1665.861938, Update Interval: 345.045319 +[2025.06.17-03.21.00:820][765]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.21.02:634][942]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.21.12:251][861]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.21.12:257][861]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.21.12:257][861]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.21.12:258][861]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.422 ms (total: 12.045 ms) +[2025.06.17-03.21.12:258][861]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.21.12:258][861]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.21.12:260][861]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002248s) +[2025.06.17-03.21.12:260][861]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002397s) +[2025.06.17-03.21.12:274][861]LogUObjectHash: Compacting FUObjectHashTables data took 0.98ms +[2025.06.17-03.21.12:277][861]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.21.12:278][861]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.21.12:278][861]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.21.12:279][861]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.21.12:279][861]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.21.12:279][861]LogWorldPartition: Display: WorldPartition initialize took 1.101 ms (total: 118.059 ms) +[2025.06.17-03.21.12:280][861]LogPlayLevel: PIE: World Init took: (0.002461s) +[2025.06.17-03.21.12:280][861]LogAudio: Display: Creating Audio Device: Id: 8, Scope: Unique, Realtime: True +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.21.12:280][861]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.21.12:280][861]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.21.12:280][861]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.21.12:280][861]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.21.12:280][861]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.21.12:282][861]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.21.12:307][861]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.21.12:308][861]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.21.12:308][861]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.21.12:308][861]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.21.12:308][861]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=8 +[2025.06.17-03.21.12:308][861]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=8 +[2025.06.17-03.21.12:310][861]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=8 +[2025.06.17-03.21.12:311][861]LogInit: FAudioDevice initialized with ID 8. +[2025.06.17-03.21.12:311][861]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=8 +[2025.06.17-03.21.12:311][861]LogAudio: Display: Audio Device (ID: 8) registered with world 'Dabaza'. +[2025.06.17-03.21.12:311][861]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.17-03.21.12:313][861]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.21.12:314][861]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.21.12 +[2025.06.17-03.21.12:314][861]LogWorld: Bringing up level for play took: 0.001127 +[2025.06.17-03.21.12:317][861]LogOnline: OSS: Created online subsystem instance for: :Context_19 +[2025.06.17-03.21.12:320][861]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.21.12:320][861]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.21.12:321][861]PIE: Server logged in +[2025.06.17-03.21.12:321][861]PIE: Play in editor total start time 0.065 seconds. +[2025.06.17-03.21.19:057][609]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.21.19:057][609]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.21.19:057][609]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.21.19:057][609]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.21.19:058][609]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.21.19:061][609]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.21.19:064][609]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.21.19:081][609]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.21.19:081][609]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 8 +[2025.06.17-03.21.19:081][609]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.17-03.21.19:083][609]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=8 +[2025.06.17-03.21.19:086][609]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.21.19:088][609]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.17-03.21.19:135][610]LogPlayLevel: Display: Destroying online subsystem :Context_19 +[2025.06.17-03.22.40:652][807]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.23.22:809][428]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.23.23:284][463]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.23.23:340][463]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.23.23:340][463]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.23.23:340][463]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-03.23.23:354][463]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-03.23.23:355][463]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode29A53B714775D1A21869DDA454D2FB44.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-03.23.23:365][463]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.105 ms (total: 1.18 sec) +[2025.06.17-03.23.23:424][463]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.23.23:424][463]LogContentValidation: Enabled validators: +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.23.23:424][463]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.23.23:424][463]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-03.23.24:304][540]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.23.24:309][540]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.23.24:309][540]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.23.24:310][540]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.289 ms (total: 13.335 ms) +[2025.06.17-03.23.24:310][540]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.23.24:310][540]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.23.24:313][540]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002472s) +[2025.06.17-03.23.24:313][540]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002628s) +[2025.06.17-03.23.24:325][540]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.23.24:327][540]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.23.24:328][540]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.23.24:328][540]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.23.24:329][540]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.23.24:329][540]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.23.24:329][540]LogWorldPartition: Display: WorldPartition initialize took 1.070 ms (total: 119.129 ms) +[2025.06.17-03.23.24:330][540]LogPlayLevel: PIE: World Init took: (0.002413s) +[2025.06.17-03.23.24:330][540]LogAudio: Display: Creating Audio Device: Id: 9, Scope: Unique, Realtime: True +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.23.24:330][540]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.23.24:330][540]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.23.24:330][540]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.23.24:330][540]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.23.24:330][540]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.23.24:333][540]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.23.24:359][540]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.23.24:359][540]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.23.24:359][540]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.23.24:360][540]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.23.24:360][540]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=9 +[2025.06.17-03.23.24:360][540]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=9 +[2025.06.17-03.23.24:362][540]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=9 +[2025.06.17-03.23.24:362][540]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=9 +[2025.06.17-03.23.24:362][540]LogInit: FAudioDevice initialized with ID 9. +[2025.06.17-03.23.24:362][540]LogAudio: Display: Audio Device (ID: 9) registered with world 'Dabaza'. +[2025.06.17-03.23.24:362][540]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.17-03.23.24:364][540]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.23.24:365][540]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.23.24 +[2025.06.17-03.23.24:365][540]LogWorld: Bringing up level for play took: 0.001455 +[2025.06.17-03.23.24:369][540]LogOnline: OSS: Created online subsystem instance for: :Context_20 +[2025.06.17-03.23.24:372][540]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.23.24:372][540]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.23.24:373][540]PIE: Server logged in +[2025.06.17-03.23.24:373][540]PIE: Play in editor total start time 0.065 seconds. +[2025.06.17-03.23.27:026][819]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.23.27:027][819]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.23.27:027][819]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.23.27:027][819]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.23.27:027][819]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.23.27:030][819]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.23.27:033][819]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.23.27:049][819]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.23.27:049][819]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 9 +[2025.06.17-03.23.27:049][819]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.17-03.23.27:052][819]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=9 +[2025.06.17-03.23.27:055][819]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.23.27:058][819]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.17-03.23.27:104][820]LogPlayLevel: Display: Destroying online subsystem :Context_20 +[2025.06.17-03.23.38:450][918]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.23.38:455][918]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.23.38:455][918]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.23.38:456][918]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.309 ms (total: 14.644 ms) +[2025.06.17-03.23.38:456][918]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.23.38:456][918]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.23.38:459][918]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002273s) +[2025.06.17-03.23.38:459][918]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002413s) +[2025.06.17-03.23.38:471][918]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.23.38:473][918]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.23.38:474][918]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.23.38:474][918]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.23.38:474][918]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.23.38:474][918]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.23.38:475][918]LogWorldPartition: Display: WorldPartition initialize took 1.126 ms (total: 120.256 ms) +[2025.06.17-03.23.38:475][918]LogPlayLevel: PIE: World Init took: (0.002409s) +[2025.06.17-03.23.38:475][918]LogAudio: Display: Creating Audio Device: Id: 10, Scope: Unique, Realtime: True +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.23.38:476][918]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.23.38:476][918]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.23.38:476][918]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.23.38:476][918]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.23.38:476][918]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.23.38:479][918]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.23.38:504][918]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.23.38:504][918]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.23.38:504][918]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.23.38:504][918]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.23.38:504][918]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=10 +[2025.06.17-03.23.38:504][918]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=10 +[2025.06.17-03.23.38:506][918]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=10 +[2025.06.17-03.23.38:506][918]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=10 +[2025.06.17-03.23.38:506][918]LogInit: FAudioDevice initialized with ID 10. +[2025.06.17-03.23.38:506][918]LogAudio: Display: Audio Device (ID: 10) registered with world 'Dabaza'. +[2025.06.17-03.23.38:506][918]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.17-03.23.38:508][918]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.23.38:510][918]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.23.38 +[2025.06.17-03.23.38:510][918]LogWorld: Bringing up level for play took: 0.001209 +[2025.06.17-03.23.38:512][918]LogOnline: OSS: Created online subsystem instance for: :Context_21 +[2025.06.17-03.23.38:516][918]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.23.38:516][918]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.23.38:517][918]PIE: Server logged in +[2025.06.17-03.23.38:517][918]PIE: Play in editor total start time 0.063 seconds. +[2025.06.17-03.23.39:516][ 13]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.23.39:516][ 13]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.23.39:516][ 13]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.23.39:518][ 13]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.23.39:518][ 13]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.23.39:520][ 13]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.23.39:524][ 13]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.23.39:540][ 13]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.23.39:541][ 13]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 10 +[2025.06.17-03.23.39:541][ 13]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.17-03.23.39:542][ 13]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=10 +[2025.06.17-03.23.39:547][ 13]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.23.39:592][ 14]LogPlayLevel: Display: Destroying online subsystem :Context_21 +[2025.06.17-03.24.00:537][ 78]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.24.00:543][ 78]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.24.00:543][ 78]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.24.00:544][ 78]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.428 ms (total: 16.073 ms) +[2025.06.17-03.24.00:544][ 78]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.24.00:544][ 78]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.00:546][ 78]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002252s) +[2025.06.17-03.24.00:547][ 78]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002401s) +[2025.06.17-03.24.00:559][ 78]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.24.00:560][ 78]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.24.00:561][ 78]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.24.00:561][ 78]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.24.00:561][ 78]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.24.00:561][ 78]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.24.00:562][ 78]LogWorldPartition: Display: WorldPartition initialize took 1.022 ms (total: 121.279 ms) +[2025.06.17-03.24.00:562][ 78]LogPlayLevel: PIE: World Init took: (0.002420s) +[2025.06.17-03.24.00:563][ 78]LogAudio: Display: Creating Audio Device: Id: 11, Scope: Unique, Realtime: True +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.24.00:563][ 78]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.24.00:563][ 78]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.24.00:563][ 78]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.24.00:563][ 78]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.24.00:563][ 78]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.24.00:565][ 78]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=11 +[2025.06.17-03.24.00:591][ 78]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=11 +[2025.06.17-03.24.00:593][ 78]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=11 +[2025.06.17-03.24.00:594][ 78]LogInit: FAudioDevice initialized with ID 11. +[2025.06.17-03.24.00:594][ 78]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=11 +[2025.06.17-03.24.00:594][ 78]LogAudio: Display: Audio Device (ID: 11) registered with world 'Dabaza'. +[2025.06.17-03.24.00:594][ 78]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.17-03.24.00:596][ 78]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.24.00:597][ 78]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.24.00 +[2025.06.17-03.24.00:597][ 78]LogWorld: Bringing up level for play took: 0.001109 +[2025.06.17-03.24.00:600][ 78]LogOnline: OSS: Created online subsystem instance for: :Context_22 +[2025.06.17-03.24.00:603][ 78]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.24.00:603][ 78]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.24.00:604][ 78]PIE: Server logged in +[2025.06.17-03.24.00:604][ 78]PIE: Play in editor total start time 0.062 seconds. +[2025.06.17-03.24.01:897][204]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.01:897][204]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.01:897][204]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.24.01:897][204]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.01:897][204]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.24.01:900][204]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.24.01:905][204]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.01:922][204]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.01:922][204]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 11 +[2025.06.17-03.24.01:923][204]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.17-03.24.01:924][204]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=11 +[2025.06.17-03.24.01:929][204]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.24.01:975][205]LogPlayLevel: Display: Destroying online subsystem :Context_22 +[2025.06.17-03.24.12:179][201]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.24.12:184][201]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.24.12:184][201]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.24.12:185][201]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.362 ms (total: 17.436 ms) +[2025.06.17-03.24.12:185][201]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.24.12:185][201]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.12:189][201]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002237s) +[2025.06.17-03.24.12:189][201]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002379s) +[2025.06.17-03.24.12:200][201]LogUObjectHash: Compacting FUObjectHashTables data took 0.85ms +[2025.06.17-03.24.12:202][201]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.24.12:203][201]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.24.12:203][201]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.24.12:203][201]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.24.12:203][201]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.24.12:205][201]LogWorldPartition: Display: WorldPartition initialize took 1.154 ms (total: 122.433 ms) +[2025.06.17-03.24.12:205][201]LogPlayLevel: PIE: World Init took: (0.002673s) +[2025.06.17-03.24.12:205][201]LogAudio: Display: Creating Audio Device: Id: 12, Scope: Unique, Realtime: True +[2025.06.17-03.24.12:205][201]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.24.12:205][201]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.24.12:206][201]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.24.12:206][201]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.24.12:206][201]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.24.12:206][201]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.24.12:206][201]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.24.12:206][201]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.24.12:206][201]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.24.12:206][201]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.24.12:206][201]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.24.12:208][201]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.24.12:233][201]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.24.12:233][201]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.24.12:233][201]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.24.12:233][201]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.24.12:235][201]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=12 +[2025.06.17-03.24.12:235][201]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=12 +[2025.06.17-03.24.12:237][201]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=12 +[2025.06.17-03.24.12:237][201]LogInit: FAudioDevice initialized with ID 12. +[2025.06.17-03.24.12:237][201]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=12 +[2025.06.17-03.24.12:237][201]LogAudio: Display: Audio Device (ID: 12) registered with world 'Dabaza'. +[2025.06.17-03.24.12:237][201]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.17-03.24.12:239][201]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.24.12:240][201]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.24.12 +[2025.06.17-03.24.12:240][201]LogWorld: Bringing up level for play took: 0.001132 +[2025.06.17-03.24.12:242][201]LogOnline: OSS: Created online subsystem instance for: :Context_23 +[2025.06.17-03.24.12:245][201]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.24.12:245][201]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.24.12:247][201]PIE: Server logged in +[2025.06.17-03.24.12:247][201]PIE: Play in editor total start time 0.063 seconds. +[2025.06.17-03.24.14:157][394]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.14:157][394]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.14:157][394]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.24.14:158][394]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.14:158][394]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.24.14:160][394]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.24.14:163][394]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.14:180][394]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.14:180][394]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 12 +[2025.06.17-03.24.14:180][394]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.17-03.24.14:182][394]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=12 +[2025.06.17-03.24.14:187][394]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.17-03.24.14:234][395]LogPlayLevel: Display: Destroying online subsystem :Context_23 +[2025.06.17-03.24.27:565][796]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.24.29:126][938]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.24.29:132][938]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.24.29:132][938]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.24.29:133][938]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.359 ms (total: 18.795 ms) +[2025.06.17-03.24.29:134][938]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.24.29:134][938]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.29:136][938]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002216s) +[2025.06.17-03.24.29:137][938]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002340s) +[2025.06.17-03.24.29:150][938]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.24.29:152][938]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.24.29:153][938]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.24.29:153][938]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.24.29:153][938]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.24.29:153][938]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.24.29:154][938]LogWorldPartition: Display: WorldPartition initialize took 1.057 ms (total: 123.491 ms) +[2025.06.17-03.24.29:154][938]LogPlayLevel: PIE: World Init took: (0.002347s) +[2025.06.17-03.24.29:155][938]LogAudio: Display: Creating Audio Device: Id: 13, Scope: Unique, Realtime: True +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.24.29:155][938]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.24.29:155][938]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.24.29:155][938]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.24.29:156][938]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.24.29:156][938]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.24.29:157][938]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.24.29:183][938]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.24.29:183][938]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.24.29:183][938]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.24.29:183][938]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.24.29:184][938]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=13 +[2025.06.17-03.24.29:184][938]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=13 +[2025.06.17-03.24.29:185][938]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=13 +[2025.06.17-03.24.29:185][938]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=13 +[2025.06.17-03.24.29:185][938]LogInit: FAudioDevice initialized with ID 13. +[2025.06.17-03.24.29:186][938]LogAudio: Display: Audio Device (ID: 13) registered with world 'Dabaza'. +[2025.06.17-03.24.29:186][938]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.17-03.24.29:189][938]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.24.29:190][938]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.24.29 +[2025.06.17-03.24.29:190][938]LogWorld: Bringing up level for play took: 0.001118 +[2025.06.17-03.24.29:192][938]LogOnline: OSS: Created online subsystem instance for: :Context_24 +[2025.06.17-03.24.29:195][938]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.24.29:195][938]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.24.29:195][938]PIE: Server logged in +[2025.06.17-03.24.29:197][938]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.24.31:406][169]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.31:406][169]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.31:407][169]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.24.31:407][169]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.31:407][169]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.24.31:410][169]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.24.31:413][169]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.31:429][169]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.24.31:429][169]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 13 +[2025.06.17-03.24.31:429][169]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.17-03.24.31:431][169]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=13 +[2025.06.17-03.24.31:435][169]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.31:436][169]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.24.31:483][170]LogPlayLevel: Display: Destroying online subsystem :Context_24 +[2025.06.17-03.24.41:055][150]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.24.41:060][150]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.24.41:060][150]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.24.41:062][150]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.308 ms (total: 20.104 ms) +[2025.06.17-03.24.41:062][150]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.24.41:062][150]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.41:064][150]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002211s) +[2025.06.17-03.24.41:064][150]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002347s) +[2025.06.17-03.24.41:079][150]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.24.41:080][150]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.24.41:081][150]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.24.41:081][150]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.24.41:082][150]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.24.41:082][150]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.24.41:082][150]LogWorldPartition: Display: WorldPartition initialize took 994 us (total: 124.485 ms) +[2025.06.17-03.24.41:083][150]LogPlayLevel: PIE: World Init took: (0.002250s) +[2025.06.17-03.24.41:083][150]LogAudio: Display: Creating Audio Device: Id: 14, Scope: Unique, Realtime: True +[2025.06.17-03.24.41:083][150]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.24.41:083][150]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.24.41:083][150]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.24.41:083][150]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.24.41:083][150]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.24.41:084][150]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.24.41:084][150]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.24.41:084][150]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.24.41:084][150]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.24.41:084][150]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.24.41:084][150]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.24.41:086][150]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.24.41:110][150]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.24.41:111][150]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.24.41:111][150]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.24.41:111][150]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.24.41:111][150]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=14 +[2025.06.17-03.24.41:111][150]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=14 +[2025.06.17-03.24.41:114][150]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=14 +[2025.06.17-03.24.41:114][150]LogInit: FAudioDevice initialized with ID 14. +[2025.06.17-03.24.41:114][150]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=14 +[2025.06.17-03.24.41:114][150]LogAudio: Display: Audio Device (ID: 14) registered with world 'Dabaza'. +[2025.06.17-03.24.41:114][150]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.17-03.24.41:115][150]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.24.41:117][150]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.24.41 +[2025.06.17-03.24.41:118][150]LogWorld: Bringing up level for play took: 0.001116 +[2025.06.17-03.24.41:120][150]LogOnline: OSS: Created online subsystem instance for: :Context_25 +[2025.06.17-03.24.41:123][150]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.24.41:123][150]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.24.46:014][150]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.24.46:014][150]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.24.50:503][150]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.24.50:503][150]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.24.50:503][150]PIE: Server logged in +[2025.06.17-03.24.50:505][150]PIE: Play in editor total start time 9.445 seconds. +[2025.06.17-03.24.50:527][150]LogAutomationController: Ignoring very large delta of 9.47 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.24.50:528][151]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.24.51:050][193]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.17-03.24.51:065][193]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.17-03.24.53:055][412]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.17-03.24.53:466][454]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.53:466][454]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.24.53:467][454]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.24.53:467][454]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.53:467][454]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.24.53:470][454]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.24.53:474][454]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.24.53:487][454]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.24.53:488][454]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 14 +[2025.06.17-03.24.53:488][454]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.17-03.24.53:490][454]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=14 +[2025.06.17-03.24.53:495][454]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.24.53:542][455]LogPlayLevel: Display: Destroying online subsystem :Context_25 +[2025.06.17-03.25.03:019][474]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.25.03:596][517]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.25.03:661][517]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.25.03:663][517]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.25.03:663][517]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.25.03:663][517]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.25.03:673][517]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.25.03:673][517]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer1F23859247E0E9F36E57C78C4ACD5B6B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.25.03:683][517]LogFileHelpers: InternalPromptForCheckoutAndSave took 87.290 ms (total: 1.26 sec) +[2025.06.17-03.25.03:737][517]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.25.03:737][517]LogContentValidation: Enabled validators: +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.25.03:737][517]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.25.03:738][517]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.25.07:751][906]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.25.07:757][906]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.25.07:757][906]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.25.07:758][906]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.341 ms (total: 21.445 ms) +[2025.06.17-03.25.07:758][906]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.25.07:759][906]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.25.07:761][906]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002217s) +[2025.06.17-03.25.07:761][906]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002355s) +[2025.06.17-03.25.07:775][906]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.25.07:777][906]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.25.07:778][906]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.25.07:778][906]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.25.07:778][906]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.25.07:778][906]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.25.07:779][906]LogWorldPartition: Display: WorldPartition initialize took 1.085 ms (total: 125.571 ms) +[2025.06.17-03.25.07:779][906]LogPlayLevel: PIE: World Init took: (0.002410s) +[2025.06.17-03.25.07:780][906]LogAudio: Display: Creating Audio Device: Id: 15, Scope: Unique, Realtime: True +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.25.07:780][906]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.25.07:780][906]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.25.07:780][906]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.25.07:780][906]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.25.07:780][906]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.25.07:784][906]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.25.07:809][906]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.25.07:809][906]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.25.07:809][906]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.25.07:809][906]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.25.07:809][906]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=15 +[2025.06.17-03.25.07:810][906]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=15 +[2025.06.17-03.25.07:812][906]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=15 +[2025.06.17-03.25.07:812][906]LogInit: FAudioDevice initialized with ID 15. +[2025.06.17-03.25.07:812][906]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=15 +[2025.06.17-03.25.07:812][906]LogAudio: Display: Audio Device (ID: 15) registered with world 'Dabaza'. +[2025.06.17-03.25.07:812][906]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.17-03.25.07:814][906]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.25.07:815][906]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.25.07 +[2025.06.17-03.25.07:815][906]LogWorld: Bringing up level for play took: 0.001143 +[2025.06.17-03.25.07:817][906]LogOnline: OSS: Created online subsystem instance for: :Context_26 +[2025.06.17-03.25.07:819][906]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.25.07:819][906]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.25.09:863][906]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.25.09:863][906]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.25.09:865][906]PIE: Server logged in +[2025.06.17-03.25.09:866][906]PIE: Play in editor total start time 2.109 seconds. +[2025.06.17-03.25.09:885][906]LogAutomationController: Ignoring very large delta of 2.13 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.25.11:056][ 13]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.25.11:056][ 13]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.25.11:057][ 13]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.25.11:057][ 13]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.25.11:057][ 13]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.25.11:060][ 13]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.25.11:063][ 13]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.25.11:076][ 13]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.25.11:076][ 13]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 15 +[2025.06.17-03.25.11:077][ 13]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.17-03.25.11:078][ 13]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=15 +[2025.06.17-03.25.11:082][ 13]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.25.11:084][ 13]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.17-03.25.11:130][ 14]LogPlayLevel: Display: Destroying online subsystem :Context_26 +[2025.06.17-03.25.11:617][ 56]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.25.11:622][ 56]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.25.11:622][ 56]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.25.11:623][ 56]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.265 ms (total: 22.710 ms) +[2025.06.17-03.25.11:623][ 56]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.25.11:623][ 56]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.25.11:625][ 56]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002158s) +[2025.06.17-03.25.11:625][ 56]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002301s) +[2025.06.17-03.25.11:639][ 56]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.25.11:640][ 56]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.25.11:642][ 56]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.25.11:642][ 56]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.25.11:642][ 56]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.25.11:642][ 56]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.25.11:643][ 56]LogWorldPartition: Display: WorldPartition initialize took 1.057 ms (total: 126.628 ms) +[2025.06.17-03.25.11:643][ 56]LogPlayLevel: PIE: World Init took: (0.002388s) +[2025.06.17-03.25.11:643][ 56]LogAudio: Display: Creating Audio Device: Id: 16, Scope: Unique, Realtime: True +[2025.06.17-03.25.11:643][ 56]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.25.11:644][ 56]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.25.11:644][ 56]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.25.11:644][ 56]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.25.11:644][ 56]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.25.11:644][ 56]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.25.11:646][ 56]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.25.11:671][ 56]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.25.11:671][ 56]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.25.11:671][ 56]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.25.11:671][ 56]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.25.11:672][ 56]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=16 +[2025.06.17-03.25.11:672][ 56]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=16 +[2025.06.17-03.25.11:674][ 56]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=16 +[2025.06.17-03.25.11:674][ 56]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=16 +[2025.06.17-03.25.11:674][ 56]LogInit: FAudioDevice initialized with ID 16. +[2025.06.17-03.25.11:674][ 56]LogAudio: Display: Audio Device (ID: 16) registered with world 'Dabaza'. +[2025.06.17-03.25.11:674][ 56]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.17-03.25.11:676][ 56]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.25.11:678][ 56]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.25.11 +[2025.06.17-03.25.11:679][ 56]LogWorld: Bringing up level for play took: 0.001214 +[2025.06.17-03.25.11:681][ 56]LogOnline: OSS: Created online subsystem instance for: :Context_27 +[2025.06.17-03.25.11:683][ 56]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.25.11:683][ 56]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.25.27:087][ 56]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.25.27:087][ 56]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.25.28:731][ 56]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.25.28:731][ 56]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.04:147][ 56]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.26.04:147][ 56]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.26.04:148][ 56]PIE: Server logged in +[2025.06.17-03.26.04:151][ 56]PIE: Play in editor total start time 52.529 seconds. +[2025.06.17-03.26.04:197][ 56]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.26.04:197][ 56]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.26.04:197][ 56]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.26.04:197][ 56]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.26.04:197][ 56]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.26.04:272][ 56]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.26.04:275][ 56]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.26.04:290][ 56]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.26.04:290][ 56]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 16 +[2025.06.17-03.26.04:290][ 56]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.17-03.26.04:292][ 56]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=16 +[2025.06.17-03.26.04:297][ 56]LogUObjectHash: Compacting FUObjectHashTables data took 0.90ms +[2025.06.17-03.26.04:317][ 56]LogAutomationController: Ignoring very large delta of 52.70 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.26.04:330][ 57]LogPlayLevel: Display: Destroying online subsystem :Context_27 +[2025.06.17-03.26.04:359][ 59]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.26.06:324][242]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.26.06:331][242]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.26.06:331][242]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.26.06:332][242]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.362 ms (total: 24.073 ms) +[2025.06.17-03.26.06:332][242]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.26.06:332][242]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.26.06:334][242]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002305s) +[2025.06.17-03.26.06:334][242]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002449s) +[2025.06.17-03.26.06:348][242]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.26.06:350][242]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.26.06:351][242]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.26.06:351][242]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.26.06:351][242]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.26.06:351][242]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.26.06:352][242]LogWorldPartition: Display: WorldPartition initialize took 1.176 ms (total: 127.804 ms) +[2025.06.17-03.26.06:352][242]LogPlayLevel: PIE: World Init took: (0.002569s) +[2025.06.17-03.26.06:354][242]LogAudio: Display: Creating Audio Device: Id: 17, Scope: Unique, Realtime: True +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.26.06:354][242]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.26.06:354][242]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.26.06:354][242]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.26.06:354][242]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.26.06:354][242]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.26.06:356][242]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.26.06:382][242]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.26.06:382][242]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.26.06:382][242]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.26.06:382][242]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.26.06:382][242]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=17 +[2025.06.17-03.26.06:383][242]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=17 +[2025.06.17-03.26.06:384][242]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=17 +[2025.06.17-03.26.06:384][242]LogInit: FAudioDevice initialized with ID 17. +[2025.06.17-03.26.06:384][242]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=17 +[2025.06.17-03.26.06:384][242]LogAudio: Display: Audio Device (ID: 17) registered with world 'Dabaza'. +[2025.06.17-03.26.06:384][242]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.17-03.26.06:386][242]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.26.06:388][242]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.26.06 +[2025.06.17-03.26.06:388][242]LogWorld: Bringing up level for play took: 0.001156 +[2025.06.17-03.26.06:390][242]LogOnline: OSS: Created online subsystem instance for: :Context_28 +[2025.06.17-03.26.06:392][242]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.26.06:392][242]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.22:248][242]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.26.22:248][242]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.24:239][242]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.26.24:239][242]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.29:135][242]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.26.29:135][242]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.30:453][242]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.26.30:453][242]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.26.30:454][242]PIE: Server logged in +[2025.06.17-03.26.30:455][242]PIE: Play in editor total start time 24.125 seconds. +[2025.06.17-03.26.30:486][242]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.26.30:487][242]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.26.30:487][242]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.26.30:487][242]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.26.30:487][242]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.26.30:573][242]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.26.30:576][242]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.26.30:592][242]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.26.30:593][242]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 17 +[2025.06.17-03.26.30:593][242]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.17-03.26.30:594][242]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=17 +[2025.06.17-03.26.30:600][242]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.26.30:619][242]LogAutomationController: Ignoring very large delta of 24.30 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.26.30:635][243]LogPlayLevel: Display: Destroying online subsystem :Context_28 +[2025.06.17-03.26.30:715][243]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.17-03.26.30:719][243]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926_Auto1 +[2025.06.17-03.26.30:719][243]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A926_Auto17BB75A594423CD0A1FC79EAC370D1D9B.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926_Auto1.uasset' +[2025.06.17-03.26.30:721][243]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.022 +[2025.06.17-03.26.30:721][243]LogFileHelpers: Editor autosave (incl. sublevels & external actors) for all levels took 0.022 +[2025.06.17-03.26.30:721][243]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.26.30:721][243]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.26.30:721][243]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset" SILENT=false AUTOSAVING=true +[2025.06.17-03.26.30:736][243]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1 +[2025.06.17-03.26.30:736][243]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode_Auto13F2EC9D949DB9D92B735D38B93EE71A3.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset' +[2025.06.17-03.26.30:737][243]LogFileHelpers: Auto-saving content packages took 0.016 +[2025.06.17-03.26.30:770][245]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.26.32:420][402]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.26.32:425][402]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.26.32:425][402]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.26.32:427][402]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.336 ms (total: 25.409 ms) +[2025.06.17-03.26.32:427][402]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.26.32:427][402]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.26.32:429][402]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002223s) +[2025.06.17-03.26.32:429][402]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002376s) +[2025.06.17-03.26.32:441][402]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.26.32:443][402]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.26.32:445][402]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.26.32:445][402]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.26.32:445][402]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.26.32:445][402]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.26.32:446][402]LogWorldPartition: Display: WorldPartition initialize took 1.152 ms (total: 128.956 ms) +[2025.06.17-03.26.32:446][402]LogPlayLevel: PIE: World Init took: (0.002534s) +[2025.06.17-03.26.32:446][402]LogAudio: Display: Creating Audio Device: Id: 18, Scope: Unique, Realtime: True +[2025.06.17-03.26.32:446][402]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.26.32:446][402]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.26.32:446][402]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.26.32:447][402]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.26.32:447][402]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.26.32:447][402]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.26.32:447][402]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.26.32:447][402]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.26.32:447][402]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.26.32:447][402]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.26.32:447][402]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.26.32:449][402]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.26.32:475][402]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.26.32:475][402]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.26.32:475][402]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.26.32:475][402]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.26.32:475][402]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=18 +[2025.06.17-03.26.32:475][402]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=18 +[2025.06.17-03.26.32:478][402]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=18 +[2025.06.17-03.26.32:478][402]LogInit: FAudioDevice initialized with ID 18. +[2025.06.17-03.26.32:478][402]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=18 +[2025.06.17-03.26.32:478][402]LogAudio: Display: Audio Device (ID: 18) registered with world 'Dabaza'. +[2025.06.17-03.26.32:478][402]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.17-03.26.32:480][402]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.26.32:481][402]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.26.32 +[2025.06.17-03.26.32:481][402]LogWorld: Bringing up level for play took: 0.001159 +[2025.06.17-03.26.32:484][402]LogOnline: OSS: Created online subsystem instance for: :Context_29 +[2025.06.17-03.26.32:486][402]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.26.32:486][402]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.37:644][402]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.26.37:644][402]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.26.38:677][402]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.26.38:677][402]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.27.16:926][402]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.27.16:926][402]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.27.18:057][402]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.27.18:057][402]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.27.18:057][402]PIE: Server logged in +[2025.06.17-03.27.18:058][402]PIE: Play in editor total start time 45.633 seconds. +[2025.06.17-03.27.18:078][402]LogAutomationController: Ignoring very large delta of 45.66 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |Skill_3 释放技能效果Charge +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |Skill_0|Skill_1|Skill_2|Skill_3 释放技能效果SkillEnduranceRestore +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |Skill_5|Skill_6 释放技能效果SkillEnduranceRestore +[2025.06.17-03.27.18:093][403]LogTemp: 针对目标 |Skill_0 释放技能效果ModifySpeed +[2025.06.17-03.27.18:219][405]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.27.19:737][576]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.27.19:737][576]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.27.19:737][576]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.27.19:737][576]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.27.19:737][576]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.27.19:740][576]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.27.19:743][576]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.27.19:761][576]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.27.19:761][576]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 18 +[2025.06.17-03.27.19:761][576]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.17-03.27.19:763][576]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=18 +[2025.06.17-03.27.19:766][576]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.27.19:769][576]LogUObjectHash: Compacting FUObjectHashTables data took 1.04ms +[2025.06.17-03.27.19:818][577]LogPlayLevel: Display: Destroying online subsystem :Context_29 +[2025.06.17-03.27.20:355][626]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.27.20:361][626]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.27.20:361][626]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.27.20:363][626]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.324 ms (total: 26.733 ms) +[2025.06.17-03.27.20:363][626]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.27.20:363][626]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.27.20:365][626]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002178s) +[2025.06.17-03.27.20:365][626]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002325s) +[2025.06.17-03.27.20:378][626]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.27.20:380][626]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.27.20:381][626]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.27.20:381][626]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.27.20:381][626]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.27.20:381][626]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.27.20:383][626]LogWorldPartition: Display: WorldPartition initialize took 1.080 ms (total: 130.037 ms) +[2025.06.17-03.27.20:383][626]LogPlayLevel: PIE: World Init took: (0.002496s) +[2025.06.17-03.27.20:383][626]LogAudio: Display: Creating Audio Device: Id: 19, Scope: Unique, Realtime: True +[2025.06.17-03.27.20:383][626]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.27.20:383][626]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.27.20:384][626]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.27.20:384][626]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.27.20:384][626]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.27.20:384][626]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.27.20:384][626]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.27.20:384][626]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.27.20:384][626]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.27.20:384][626]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.27.20:384][626]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.27.20:385][626]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.27.20:411][626]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.27.20:411][626]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.27.20:411][626]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.27.20:411][626]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.27.20:412][626]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=19 +[2025.06.17-03.27.20:412][626]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=19 +[2025.06.17-03.27.20:414][626]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=19 +[2025.06.17-03.27.20:414][626]LogInit: FAudioDevice initialized with ID 19. +[2025.06.17-03.27.20:414][626]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=19 +[2025.06.17-03.27.20:414][626]LogAudio: Display: Audio Device (ID: 19) registered with world 'Dabaza'. +[2025.06.17-03.27.20:414][626]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.17-03.27.20:416][626]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.27.20:418][626]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.27.20 +[2025.06.17-03.27.20:418][626]LogWorld: Bringing up level for play took: 0.001208 +[2025.06.17-03.27.20:420][626]LogOnline: OSS: Created online subsystem instance for: :Context_30 +[2025.06.17-03.27.20:422][626]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.27.20:422][626]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.28.00:764][626]LogSlate: Window 'Call Stack' being destroyed +[2025.06.17-03.28.13:158][626]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.28.13:158][626]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.28.30:355][626]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.28.30:355][626]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.28.31:395][626]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.28.31:395][626]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.28.31:396][626]PIE: Server logged in +[2025.06.17-03.28.31:398][626]PIE: Play in editor total start time 71.037 seconds. +[2025.06.17-03.28.31:426][626]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.31:426][626]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.28.31:427][626]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.28.31:427][626]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.31:427][626]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.28.31:516][626]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.28.31:520][626]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.31:535][626]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.31:535][626]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 19 +[2025.06.17-03.28.31:535][626]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.17-03.28.31:538][626]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=19 +[2025.06.17-03.28.31:543][626]LogUObjectHash: Compacting FUObjectHashTables data took 0.95ms +[2025.06.17-03.28.31:563][626]LogAutomationController: Ignoring very large delta of 71.21 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.28.31:563][626]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2123.104004 +[2025.06.17-03.28.31:578][627]LogPlayLevel: Display: Destroying online subsystem :Context_30 +[2025.06.17-03.28.31:610][629]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.28.32:330][713]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.28.32:330][713]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2123.864258, Update Interval: 347.632690 +[2025.06.17-03.28.43:963][ 36]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.28.43:970][ 36]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.28.43:970][ 36]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.28.43:972][ 36]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.351 ms (total: 28.085 ms) +[2025.06.17-03.28.43:972][ 36]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.28.43:972][ 36]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.28.43:974][ 36]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002253s) +[2025.06.17-03.28.43:974][ 36]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002427s) +[2025.06.17-03.28.43:987][ 36]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.28.43:988][ 36]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.28.43:989][ 36]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.28.43:989][ 36]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.28.43:989][ 36]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.28.43:989][ 36]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.28.43:990][ 36]LogWorldPartition: Display: WorldPartition initialize took 1.198 ms (total: 131.235 ms) +[2025.06.17-03.28.43:990][ 36]LogPlayLevel: PIE: World Init took: (0.002703s) +[2025.06.17-03.28.43:990][ 36]LogAudio: Display: Creating Audio Device: Id: 20, Scope: Unique, Realtime: True +[2025.06.17-03.28.43:990][ 36]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.28.43:992][ 36]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.28.43:992][ 36]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.28.43:992][ 36]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.28.43:992][ 36]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.28.43:992][ 36]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.28.43:994][ 36]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.28.44:019][ 36]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.28.44:020][ 36]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.28.44:020][ 36]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.28.44:020][ 36]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.28.44:020][ 36]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=20 +[2025.06.17-03.28.44:020][ 36]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=20 +[2025.06.17-03.28.44:022][ 36]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=20 +[2025.06.17-03.28.44:022][ 36]LogInit: FAudioDevice initialized with ID 20. +[2025.06.17-03.28.44:022][ 36]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=20 +[2025.06.17-03.28.44:022][ 36]LogAudio: Display: Audio Device (ID: 20) registered with world 'Dabaza'. +[2025.06.17-03.28.44:022][ 36]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.17-03.28.44:025][ 36]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.28.44:026][ 36]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.28.44 +[2025.06.17-03.28.44:026][ 36]LogWorld: Bringing up level for play took: 0.001155 +[2025.06.17-03.28.44:028][ 36]LogOnline: OSS: Created online subsystem instance for: :Context_31 +[2025.06.17-03.28.44:030][ 36]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.28.44:030][ 36]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.28.46:098][ 36]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.28.46:098][ 36]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.28.46:099][ 36]PIE: Server logged in +[2025.06.17-03.28.46:099][ 36]PIE: Play in editor total start time 2.13 seconds. +[2025.06.17-03.28.46:120][ 36]LogAutomationController: Ignoring very large delta of 2.16 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.28.47:986][230]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.47:986][230]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.28.47:987][230]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.28.47:987][230]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.47:987][230]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.28.47:989][230]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.28.47:994][230]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.48:008][230]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.48:010][230]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 20 +[2025.06.17-03.28.48:010][230]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.17-03.28.48:012][230]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=20 +[2025.06.17-03.28.48:017][230]LogUObjectHash: Compacting FUObjectHashTables data took 0.83ms +[2025.06.17-03.28.48:058][231]LogPlayLevel: Display: Destroying online subsystem :Context_31 +[2025.06.17-03.28.48:546][273]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.28.48:551][273]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.28.48:551][273]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.28.48:553][273]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.251 ms (total: 29.336 ms) +[2025.06.17-03.28.48:553][273]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.28.48:553][273]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.28.48:555][273]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002176s) +[2025.06.17-03.28.48:556][273]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002322s) +[2025.06.17-03.28.48:569][273]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-03.28.48:570][273]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.28.48:572][273]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.28.48:572][273]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.28.48:572][273]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.28.48:572][273]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.28.48:573][273]LogWorldPartition: Display: WorldPartition initialize took 1.029 ms (total: 132.265 ms) +[2025.06.17-03.28.48:573][273]LogPlayLevel: PIE: World Init took: (0.002414s) +[2025.06.17-03.28.48:574][273]LogAudio: Display: Creating Audio Device: Id: 21, Scope: Unique, Realtime: True +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.28.48:574][273]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.28.48:574][273]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.28.48:574][273]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.28.48:574][273]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.28.48:574][273]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.28.48:576][273]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.28.48:601][273]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.28.48:601][273]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.28.48:602][273]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.28.48:602][273]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.28.48:602][273]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=21 +[2025.06.17-03.28.48:602][273]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=21 +[2025.06.17-03.28.48:605][273]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=21 +[2025.06.17-03.28.48:605][273]LogInit: FAudioDevice initialized with ID 21. +[2025.06.17-03.28.48:605][273]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=21 +[2025.06.17-03.28.48:605][273]LogAudio: Display: Audio Device (ID: 21) registered with world 'Dabaza'. +[2025.06.17-03.28.48:605][273]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.17-03.28.48:607][273]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.28.48:608][273]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.28.48 +[2025.06.17-03.28.48:608][273]LogWorld: Bringing up level for play took: 0.001124 +[2025.06.17-03.28.48:610][273]LogOnline: OSS: Created online subsystem instance for: :Context_32 +[2025.06.17-03.28.48:613][273]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.28.48:613][273]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.28.55:720][273]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.28.55:720][273]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.28.55:721][273]PIE: Server logged in +[2025.06.17-03.28.55:722][273]PIE: Play in editor total start time 7.17 seconds. +[2025.06.17-03.28.55:743][273]LogAutomationController: Ignoring very large delta of 7.20 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.28.56:544][350]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.28.57:116][406]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.57:116][406]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.28.57:117][406]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.28.57:117][406]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.57:117][406]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.28.57:120][406]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.28.57:123][406]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.28.57:139][406]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.28.57:139][406]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 21 +[2025.06.17-03.28.57:139][406]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.17-03.28.57:141][406]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=21 +[2025.06.17-03.28.57:146][406]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.17-03.28.57:190][407]LogPlayLevel: Display: Destroying online subsystem :Context_32 +[2025.06.17-03.29.14:723][367]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.29.14:727][367]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.29.14:727][367]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.29.14:729][367]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.360 ms (total: 30.697 ms) +[2025.06.17-03.29.14:729][367]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.29.14:729][367]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.29.14:732][367]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002198s) +[2025.06.17-03.29.14:732][367]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002364s) +[2025.06.17-03.29.14:744][367]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.17-03.29.14:745][367]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.29.14:747][367]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.29.14:747][367]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.29.14:748][367]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.29.14:748][367]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.29.14:749][367]LogWorldPartition: Display: WorldPartition initialize took 1.058 ms (total: 133.323 ms) +[2025.06.17-03.29.14:749][367]LogPlayLevel: PIE: World Init took: (0.002415s) +[2025.06.17-03.29.14:749][367]LogAudio: Display: Creating Audio Device: Id: 22, Scope: Unique, Realtime: True +[2025.06.17-03.29.14:749][367]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.29.14:749][367]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.29.14:750][367]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.29.14:750][367]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.29.14:750][367]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.29.14:750][367]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.29.14:750][367]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.29.14:750][367]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.29.14:750][367]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.29.14:750][367]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.29.14:750][367]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.29.14:752][367]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.29.14:776][367]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.29.14:778][367]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.29.14:778][367]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.29.14:778][367]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.29.14:778][367]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=22 +[2025.06.17-03.29.14:778][367]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=22 +[2025.06.17-03.29.14:780][367]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=22 +[2025.06.17-03.29.14:780][367]LogInit: FAudioDevice initialized with ID 22. +[2025.06.17-03.29.14:780][367]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=22 +[2025.06.17-03.29.14:780][367]LogAudio: Display: Audio Device (ID: 22) registered with world 'Dabaza'. +[2025.06.17-03.29.14:780][367]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.17-03.29.14:782][367]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.29.14:783][367]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.29.14 +[2025.06.17-03.29.14:784][367]LogWorld: Bringing up level for play took: 0.001409 +[2025.06.17-03.29.14:786][367]LogOnline: OSS: Created online subsystem instance for: :Context_33 +[2025.06.17-03.29.14:788][367]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_AddSkill', from offset 1079 +[2025.06.17-03.29.14:788][367]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.29.16:405][367]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.29.16:405][367]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.29.17:376][367]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_AddSkill', from offset 1079 +[2025.06.17-03.29.17:376][367]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.29.19:523][367]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.29.19:523][367]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.29.30:201][367]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.29.30:201][367]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.29.30:202][367]PIE: Server logged in +[2025.06.17-03.29.30:204][367]PIE: Play in editor total start time 15.477 seconds. +[2025.06.17-03.29.30:246][367]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.29.30:246][367]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.29.30:246][367]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.29.30:248][367]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.29.30:248][367]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.29.30:320][367]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.29.30:324][367]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.29.30:340][367]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.29.30:340][367]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 22 +[2025.06.17-03.29.30:340][367]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.17-03.29.30:342][367]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=22 +[2025.06.17-03.29.30:348][367]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.29.30:370][367]LogAutomationController: Ignoring very large delta of 15.65 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.29.30:384][368]LogPlayLevel: Display: Destroying online subsystem :Context_33 +[2025.06.17-03.29.30:405][370]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.29.31:977][516]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.29.31:983][516]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.29.31:983][516]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.29.31:984][516]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.381 ms (total: 32.079 ms) +[2025.06.17-03.29.31:984][516]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.29.31:984][516]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.29.31:986][516]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002236s) +[2025.06.17-03.29.31:986][516]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002404s) +[2025.06.17-03.29.31:998][516]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.29.31:999][516]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.29.32:000][516]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.29.32:000][516]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.29.32:000][516]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.29.32:000][516]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.29.32:002][516]LogWorldPartition: Display: WorldPartition initialize took 1.084 ms (total: 134.408 ms) +[2025.06.17-03.29.32:002][516]LogPlayLevel: PIE: World Init took: (0.002454s) +[2025.06.17-03.29.32:003][516]LogAudio: Display: Creating Audio Device: Id: 23, Scope: Unique, Realtime: True +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.29.32:003][516]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.29.32:003][516]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.29.32:003][516]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.29.32:003][516]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.29.32:003][516]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.29.32:005][516]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.29.32:030][516]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.29.32:032][516]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.29.32:032][516]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.29.32:032][516]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.29.32:032][516]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=23 +[2025.06.17-03.29.32:032][516]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=23 +[2025.06.17-03.29.32:034][516]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=23 +[2025.06.17-03.29.32:034][516]LogInit: FAudioDevice initialized with ID 23. +[2025.06.17-03.29.32:034][516]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=23 +[2025.06.17-03.29.32:034][516]LogAudio: Display: Audio Device (ID: 23) registered with world 'Dabaza'. +[2025.06.17-03.29.32:034][516]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.17-03.29.32:036][516]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.29.32:037][516]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.29.32 +[2025.06.17-03.29.32:038][516]LogWorld: Bringing up level for play took: 0.001130 +[2025.06.17-03.29.32:040][516]LogOnline: OSS: Created online subsystem instance for: :Context_34 +[2025.06.17-03.29.32:042][516]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_AddSkill', from offset 1079 +[2025.06.17-03.29.32:042][516]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.29.34:128][516]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.29.34:128][516]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.29.55:254][516]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 725 +[2025.06.17-03.29.55:254][516]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.30.55:165][516]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_AddSkill', from offset 1079 +[2025.06.17-03.30.55:165][516]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.30.56:733][516]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_FunctionEntry', from offset 5 +[2025.06.17-03.30.56:733][516]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.32.14:721][516]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.32.14:721][516]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.32.14:722][516]PIE: Server logged in +[2025.06.17-03.32.14:724][516]PIE: Play in editor total start time 162.741 seconds. +[2025.06.17-03.32.14:767][516]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.32.14:767][516]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.32.14:767][516]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.32.14:767][516]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.32.14:768][516]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.32.14:842][516]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.32.14:846][516]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.32.14:863][516]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.32.14:863][516]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 23 +[2025.06.17-03.32.14:863][516]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.17-03.32.14:865][516]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=23 +[2025.06.17-03.32.14:871][516]LogUObjectHash: Compacting FUObjectHashTables data took 0.97ms +[2025.06.17-03.32.14:892][516]LogAutomationController: Ignoring very large delta of 162.92 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.32.14:907][517]LogPlayLevel: Display: Destroying online subsystem :Context_34 +[2025.06.17-03.32.14:943][520]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.32.52:792][561]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.52:793][561]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.54:160][701]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.54:160][701]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.55:114][801]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.32.55:737][849]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.32.55:795][849]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.32.55:798][849]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.32.55:798][849]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.32.55:798][849]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.32.55:808][849]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.32.55:808][849]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer6AEE470D41C949B4D68DCCA24E04646D.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.32.55:818][849]LogFileHelpers: InternalPromptForCheckoutAndSave took 80.428 ms (total: 1.34 sec) +[2025.06.17-03.32.55:879][849]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.32.55:879][849]LogContentValidation: Enabled validators: +[2025.06.17-03.32.55:879][849]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.32.55:879][849]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.32.55:879][849]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.32.55:880][849]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.32.55:880][849]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.32.55:880][849]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.32.55:880][849]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.32.56:813][929]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.32.56:818][929]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.32.56:818][929]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.32.56:820][929]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.334 ms (total: 33.413 ms) +[2025.06.17-03.32.56:820][929]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.32.56:820][929]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.32.56:822][929]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002300s) +[2025.06.17-03.32.56:822][929]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002445s) +[2025.06.17-03.32.56:834][929]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.32.56:836][929]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.32.56:837][929]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.32.56:837][929]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.32.56:837][929]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.32.56:837][929]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.32.56:838][929]LogWorldPartition: Display: WorldPartition initialize took 1.097 ms (total: 135.505 ms) +[2025.06.17-03.32.56:838][929]LogPlayLevel: PIE: World Init took: (0.002526s) +[2025.06.17-03.32.56:839][929]LogAudio: Display: Creating Audio Device: Id: 24, Scope: Unique, Realtime: True +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.32.56:839][929]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.32.56:839][929]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.32.56:839][929]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.32.56:839][929]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.32.56:839][929]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.32.56:842][929]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.32.56:868][929]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.32.56:868][929]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.32.56:868][929]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.32.56:868][929]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.32.56:868][929]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=24 +[2025.06.17-03.32.56:868][929]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=24 +[2025.06.17-03.32.56:870][929]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=24 +[2025.06.17-03.32.56:870][929]LogInit: FAudioDevice initialized with ID 24. +[2025.06.17-03.32.56:870][929]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=24 +[2025.06.17-03.32.56:870][929]LogAudio: Display: Audio Device (ID: 24) registered with world 'Dabaza'. +[2025.06.17-03.32.56:870][929]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.17-03.32.56:872][929]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.32.56:873][929]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.32.56 +[2025.06.17-03.32.56:875][929]LogWorld: Bringing up level for play took: 0.001202 +[2025.06.17-03.32.56:877][929]LogOnline: OSS: Created online subsystem instance for: :Context_35 +[2025.06.17-03.32.56:879][929]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_AddSkill', from offset 1079 +[2025.06.17-03.32.56:879][929]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.32.58:335][929]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.58:335][929]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.32.58:948][929]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.32.58:948][929]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.32.58:949][929]PIE: Server logged in +[2025.06.17-03.32.58:949][929]PIE: Play in editor total start time 2.132 seconds. +[2025.06.17-03.32.58:970][929]LogAutomationController: Ignoring very large delta of 2.16 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.33.04:826][583]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.33.04:826][583]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.33.04:827][583]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.33.04:827][583]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.33.04:827][583]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.33.04:830][583]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.33.04:834][583]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.33.04:850][583]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.33.04:850][583]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 24 +[2025.06.17-03.33.04:850][583]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.17-03.33.04:852][583]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=24 +[2025.06.17-03.33.04:855][583]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.33.04:858][583]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.17-03.33.04:901][584]LogPlayLevel: Display: Destroying online subsystem :Context_35 +[2025.06.17-03.33.09:204][ 27]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.33.09:263][ 27]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.17-03.33.09:263][ 27]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A9263B302BF94BA09AEB970D3A96FD1901FA.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.17-03.33.09:275][ 27]LogFileHelpers: InternalPromptForCheckoutAndSave took 71.010 ms (total: 1.42 sec) +[2025.06.17-03.33.09:339][ 27]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.33.09:339][ 27]LogContentValidation: Enabled validators: +[2025.06.17-03.33.09:339][ 27]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.33.09:339][ 27]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.33.09:340][ 27]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.33.09:340][ 27]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.33.09:340][ 27]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.33.09:340][ 27]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.33.09:340][ 27]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.17-03.33.18:447][989]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.33.18:453][989]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.33.18:453][989]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.33.18:454][989]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.345 ms (total: 34.759 ms) +[2025.06.17-03.33.18:454][989]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.33.18:454][989]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.33.18:457][989]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002340s) +[2025.06.17-03.33.18:457][989]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002514s) +[2025.06.17-03.33.18:471][989]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.17-03.33.18:473][989]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.33.18:474][989]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.33.18:474][989]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.33.18:474][989]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.33.18:474][989]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.33.18:476][989]LogWorldPartition: Display: WorldPartition initialize took 1.165 ms (total: 136.671 ms) +[2025.06.17-03.33.18:476][989]LogPlayLevel: PIE: World Init took: (0.002656s) +[2025.06.17-03.33.18:477][989]LogAudio: Display: Creating Audio Device: Id: 25, Scope: Unique, Realtime: True +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.33.18:477][989]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.33.18:477][989]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.33.18:477][989]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.33.18:477][989]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.33.18:477][989]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.33.18:479][989]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.33.18:505][989]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.33.18:505][989]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.33.18:505][989]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.33.18:506][989]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.33.18:506][989]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=25 +[2025.06.17-03.33.18:506][989]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=25 +[2025.06.17-03.33.18:508][989]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=25 +[2025.06.17-03.33.18:508][989]LogInit: FAudioDevice initialized with ID 25. +[2025.06.17-03.33.18:508][989]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=25 +[2025.06.17-03.33.18:508][989]LogAudio: Display: Audio Device (ID: 25) registered with world 'Dabaza'. +[2025.06.17-03.33.18:508][989]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.17-03.33.18:510][989]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.33.18:512][989]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.33.18 +[2025.06.17-03.33.18:512][989]LogWorld: Bringing up level for play took: 0.001158 +[2025.06.17-03.33.18:514][989]LogOnline: OSS: Created online subsystem instance for: :Context_36 +[2025.06.17-03.33.18:516][989]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.33.18:516][989]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.33.18:517][989]PIE: Server logged in +[2025.06.17-03.33.18:518][989]PIE: Play in editor total start time 0.066 seconds. +[2025.06.17-03.33.20:177][166]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.33.20:177][166]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.33.20:177][166]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.33.20:177][166]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.33.20:177][166]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.33.20:180][166]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.33.20:183][166]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.33.20:201][166]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.33.20:201][166]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 25 +[2025.06.17-03.33.20:201][166]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.17-03.33.20:203][166]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=25 +[2025.06.17-03.33.20:208][166]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.33.20:255][167]LogPlayLevel: Display: Destroying online subsystem :Context_36 +[2025.06.17-03.34.37:281][128]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.34.37:287][128]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.34.37:287][128]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.34.37:288][128]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.509 ms (total: 36.269 ms) +[2025.06.17-03.34.37:288][128]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.34.37:288][128]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.34.37:291][128]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002465s) +[2025.06.17-03.34.37:291][128]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002624s) +[2025.06.17-03.34.37:306][128]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.34.37:308][128]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.34.37:309][128]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.34.37:309][128]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.34.37:309][128]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.34.37:309][128]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.34.37:310][128]LogWorldPartition: Display: WorldPartition initialize took 1.011 ms (total: 137.682 ms) +[2025.06.17-03.34.37:310][128]LogPlayLevel: PIE: World Init took: (0.002362s) +[2025.06.17-03.34.37:310][128]LogAudio: Display: Creating Audio Device: Id: 26, Scope: Unique, Realtime: True +[2025.06.17-03.34.37:310][128]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.34.37:312][128]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.34.37:312][128]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.34.37:312][128]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.34.37:312][128]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.34.37:312][128]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.34.37:314][128]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.34.37:351][128]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.34.37:352][128]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.34.37:352][128]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.34.37:352][128]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.34.37:352][128]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=26 +[2025.06.17-03.34.37:352][128]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=26 +[2025.06.17-03.34.37:355][128]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=26 +[2025.06.17-03.34.37:355][128]LogInit: FAudioDevice initialized with ID 26. +[2025.06.17-03.34.37:355][128]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=26 +[2025.06.17-03.34.37:355][128]LogAudio: Display: Audio Device (ID: 26) registered with world 'Dabaza'. +[2025.06.17-03.34.37:355][128]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.17-03.34.37:357][128]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.34.37:358][128]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.34.37 +[2025.06.17-03.34.37:359][128]LogWorld: Bringing up level for play took: 0.001142 +[2025.06.17-03.34.37:361][128]LogOnline: OSS: Created online subsystem instance for: :Context_37 +[2025.06.17-03.34.37:363][128]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.34.37:363][128]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.34.37:364][128]PIE: Server logged in +[2025.06.17-03.34.37:364][128]PIE: Play in editor total start time 0.078 seconds. +[2025.06.17-03.34.38:926][290]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.34.38:926][290]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.34.38:927][290]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.34.38:927][290]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.34.38:927][290]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.34.38:930][290]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.34.38:933][290]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.34.38:949][290]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.34.38:949][290]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 26 +[2025.06.17-03.34.38:949][290]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.17-03.34.38:952][290]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=26 +[2025.06.17-03.34.38:957][290]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.17-03.34.39:000][291]LogPlayLevel: Display: Destroying online subsystem :Context_37 +[2025.06.17-03.34.46:174][ 61]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.34.46:180][ 61]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.34.46:180][ 61]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.34.46:181][ 61]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.364 ms (total: 37.633 ms) +[2025.06.17-03.34.46:181][ 61]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.34.46:181][ 61]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.34.46:184][ 61]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002195s) +[2025.06.17-03.34.46:184][ 61]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002341s) +[2025.06.17-03.34.46:195][ 61]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.34.46:197][ 61]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.34.46:199][ 61]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.34.46:199][ 61]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.34.46:199][ 61]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.34.46:199][ 61]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.34.46:200][ 61]LogWorldPartition: Display: WorldPartition initialize took 1.127 ms (total: 138.810 ms) +[2025.06.17-03.34.46:200][ 61]LogPlayLevel: PIE: World Init took: (0.002443s) +[2025.06.17-03.34.46:200][ 61]LogAudio: Display: Creating Audio Device: Id: 27, Scope: Unique, Realtime: True +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.34.46:201][ 61]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.34.46:201][ 61]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.34.46:201][ 61]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.34.46:201][ 61]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.34.46:201][ 61]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.34.46:203][ 61]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.34.46:228][ 61]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.34.46:228][ 61]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.34.46:228][ 61]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.34.46:228][ 61]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.34.46:229][ 61]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=27 +[2025.06.17-03.34.46:229][ 61]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=27 +[2025.06.17-03.34.46:231][ 61]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=27 +[2025.06.17-03.34.46:231][ 61]LogInit: FAudioDevice initialized with ID 27. +[2025.06.17-03.34.46:231][ 61]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=27 +[2025.06.17-03.34.46:231][ 61]LogAudio: Display: Audio Device (ID: 27) registered with world 'Dabaza'. +[2025.06.17-03.34.46:231][ 61]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.17-03.34.46:234][ 61]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.34.46:234][ 61]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.34.46 +[2025.06.17-03.34.46:235][ 61]LogWorld: Bringing up level for play took: 0.001312 +[2025.06.17-03.34.46:238][ 61]LogOnline: OSS: Created online subsystem instance for: :Context_38 +[2025.06.17-03.34.46:240][ 61]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_MacroInstance', from offset 21 +[2025.06.17-03.34.46:240][ 61]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.34.49:335][ 61]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_CreateWidget', from offset 826 +[2025.06.17-03.34.49:335][ 61]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.34.51:773][ 61]LogBlueprintDebug: Warning: Hit breakpoint on node 'K2Node_MacroInstance', from offset 21 +[2025.06.17-03.34.51:773][ 61]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkill + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:ExecuteUbergraph_WBP_SkillContainer + Function /Game/UI/WBP_SkillContainer.WBP_SkillContainer_C:AddSkillUI + +[2025.06.17-03.35.10:873][ 61]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.35.10:873][ 61]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.35.10:874][ 61]PIE: Server logged in +[2025.06.17-03.35.10:876][ 61]PIE: Play in editor total start time 24.696 seconds. +[2025.06.17-03.35.10:916][ 61]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.35.10:916][ 61]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.35.10:917][ 61]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.35.10:917][ 61]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.35.10:917][ 61]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.35.10:995][ 61]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.35.10:998][ 61]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.35.11:012][ 61]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.35.11:013][ 61]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 27 +[2025.06.17-03.35.11:013][ 61]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.17-03.35.11:016][ 61]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=27 +[2025.06.17-03.35.11:021][ 61]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.35.11:040][ 61]LogAutomationController: Ignoring very large delta of 24.87 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.35.11:040][ 61]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2522.584229 +[2025.06.17-03.35.11:053][ 62]LogPlayLevel: Display: Destroying online subsystem :Context_38 +[2025.06.17-03.35.11:077][ 64]LogRHI: Error: GpuProfiler's scratch buffer is out of space for this frame (current size : 32 kB). Dropping this frame. The size can be increased dynamically with the console variable r.GpuProfilerMaxEventBufferSizeKB +[2025.06.17-03.35.11:800][147]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.35.11:801][147]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2523.338135, Update Interval: 342.697845 +[2025.06.17-03.35.20:155][ 86]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.35.20:155][ 86]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.35.22:586][358]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.36.10:714][660]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.36.10:714][660]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/UI/WBP_SkillContainer.WBP_SkillContainer without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.37.09:657][ 10]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.37.10:128][ 48]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.37.10:191][ 48]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.37.10:192][ 48]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.37.10:193][ 48]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.37.10:193][ 48]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.37.10:204][ 48]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.37.10:204][ 48]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerF42903DF44647DC40C4784888744434F.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.37.10:214][ 48]LogFileHelpers: InternalPromptForCheckoutAndSave took 86.496 ms (total: 1.50 sec) +[2025.06.17-03.37.10:267][ 48]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.37.10:267][ 48]LogContentValidation: Enabled validators: +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.37.10:267][ 48]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.37.10:269][ 48]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.37.11:382][151]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.37.11:388][151]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.37.11:388][151]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.37.11:390][151]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.307 ms (total: 38.940 ms) +[2025.06.17-03.37.11:390][151]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.37.11:390][151]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.11:392][151]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002307s) +[2025.06.17-03.37.11:392][151]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002447s) +[2025.06.17-03.37.11:406][151]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.37.11:407][151]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.37.11:409][151]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.37.11:409][151]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.37.11:409][151]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.37.11:409][151]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.37.11:410][151]LogWorldPartition: Display: WorldPartition initialize took 1.147 ms (total: 139.958 ms) +[2025.06.17-03.37.11:410][151]LogPlayLevel: PIE: World Init took: (0.002702s) +[2025.06.17-03.37.11:410][151]LogAudio: Display: Creating Audio Device: Id: 28, Scope: Unique, Realtime: True +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.37.11:411][151]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.37.11:411][151]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.37.11:411][151]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.37.11:411][151]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.37.11:411][151]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.37.11:414][151]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.37.11:440][151]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.37.11:440][151]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.37.11:440][151]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.37.11:440][151]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.37.11:441][151]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=28 +[2025.06.17-03.37.11:441][151]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=28 +[2025.06.17-03.37.11:443][151]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=28 +[2025.06.17-03.37.11:443][151]LogInit: FAudioDevice initialized with ID 28. +[2025.06.17-03.37.11:443][151]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=28 +[2025.06.17-03.37.11:443][151]LogAudio: Display: Audio Device (ID: 28) registered with world 'Dabaza'. +[2025.06.17-03.37.11:443][151]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.17-03.37.11:446][151]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.37.11:447][151]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.37.11 +[2025.06.17-03.37.11:447][151]LogWorld: Bringing up level for play took: 0.001324 +[2025.06.17-03.37.11:450][151]LogOnline: OSS: Created online subsystem instance for: :Context_39 +[2025.06.17-03.37.11:453][151]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.37.11:453][151]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.37.11:454][151]PIE: Server logged in +[2025.06.17-03.37.11:454][151]PIE: Play in editor total start time 0.066 seconds. +[2025.06.17-03.37.12:917][303]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.12:917][303]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.12:917][303]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.37.12:917][303]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.12:917][303]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.37.12:920][303]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.37.12:923][303]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.12:940][303]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.37.12:940][303]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 28 +[2025.06.17-03.37.12:940][303]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.17-03.37.12:942][303]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=28 +[2025.06.17-03.37.12:946][303]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.12:948][303]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.37.12:994][304]LogPlayLevel: Display: Destroying online subsystem :Context_39 +[2025.06.17-03.37.20:364][ 16]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.37.20:369][ 16]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.37.20:370][ 16]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.37.20:371][ 16]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.345 ms (total: 40.286 ms) +[2025.06.17-03.37.20:371][ 16]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.37.20:371][ 16]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.20:373][ 16]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002202s) +[2025.06.17-03.37.20:373][ 16]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002357s) +[2025.06.17-03.37.20:384][ 16]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.37.20:386][ 16]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.37.20:388][ 16]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.37.20:388][ 16]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.37.20:388][ 16]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.37.20:388][ 16]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.37.20:388][ 16]LogWorldPartition: Display: WorldPartition initialize took 1.077 ms (total: 141.035 ms) +[2025.06.17-03.37.20:389][ 16]LogPlayLevel: PIE: World Init took: (0.002490s) +[2025.06.17-03.37.20:389][ 16]LogAudio: Display: Creating Audio Device: Id: 29, Scope: Unique, Realtime: True +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.37.20:389][ 16]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.37.20:389][ 16]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.37.20:389][ 16]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.37.20:389][ 16]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.37.20:389][ 16]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.37.20:392][ 16]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=29 +[2025.06.17-03.37.20:417][ 16]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=29 +[2025.06.17-03.37.20:420][ 16]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=29 +[2025.06.17-03.37.20:421][ 16]LogInit: FAudioDevice initialized with ID 29. +[2025.06.17-03.37.20:421][ 16]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=29 +[2025.06.17-03.37.20:421][ 16]LogAudio: Display: Audio Device (ID: 29) registered with world 'Dabaza'. +[2025.06.17-03.37.20:421][ 16]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.17-03.37.20:423][ 16]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.37.20:424][ 16]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.37.20 +[2025.06.17-03.37.20:424][ 16]LogWorld: Bringing up level for play took: 0.001143 +[2025.06.17-03.37.20:426][ 16]LogOnline: OSS: Created online subsystem instance for: :Context_40 +[2025.06.17-03.37.20:429][ 16]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.37.20:429][ 16]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.37.20:429][ 16]PIE: Server logged in +[2025.06.17-03.37.20:430][ 16]PIE: Play in editor total start time 0.062 seconds. +[2025.06.17-03.37.25:536][596]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.25:536][596]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.25:536][596]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.37.25:538][596]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.25:538][596]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.37.25:540][596]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.37.25:544][596]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.25:559][596]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.37.25:560][596]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 29 +[2025.06.17-03.37.25:560][596]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.17-03.37.25:562][596]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=29 +[2025.06.17-03.37.25:565][596]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.25:568][596]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.17-03.37.25:613][597]LogPlayLevel: Display: Destroying online subsystem :Context_40 +[2025.06.17-03.37.27:450][772]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.37.27:455][772]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.37.27:455][772]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.37.27:457][772]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.272 ms (total: 41.558 ms) +[2025.06.17-03.37.27:457][772]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.37.27:457][772]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.27:459][772]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002221s) +[2025.06.17-03.37.27:459][772]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002378s) +[2025.06.17-03.37.27:472][772]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.37.27:473][772]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.37.27:474][772]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.37.27:474][772]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.37.27:475][772]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.37.27:475][772]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.37.27:476][772]LogWorldPartition: Display: WorldPartition initialize took 1.012 ms (total: 142.048 ms) +[2025.06.17-03.37.27:476][772]LogPlayLevel: PIE: World Init took: (0.002327s) +[2025.06.17-03.37.27:477][772]LogAudio: Display: Creating Audio Device: Id: 30, Scope: Unique, Realtime: True +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.37.27:477][772]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.37.27:477][772]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.37.27:477][772]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.37.27:477][772]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.37.27:477][772]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.37.27:479][772]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.37.27:504][772]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.37.27:504][772]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.37.27:504][772]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.37.27:504][772]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.37.27:505][772]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=30 +[2025.06.17-03.37.27:505][772]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=30 +[2025.06.17-03.37.27:508][772]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=30 +[2025.06.17-03.37.27:508][772]LogInit: FAudioDevice initialized with ID 30. +[2025.06.17-03.37.27:508][772]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=30 +[2025.06.17-03.37.27:508][772]LogAudio: Display: Audio Device (ID: 30) registered with world 'Dabaza'. +[2025.06.17-03.37.27:508][772]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 30 +[2025.06.17-03.37.27:510][772]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.37.27:511][772]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.37.27 +[2025.06.17-03.37.27:511][772]LogWorld: Bringing up level for play took: 0.001121 +[2025.06.17-03.37.27:513][772]LogOnline: OSS: Created online subsystem instance for: :Context_41 +[2025.06.17-03.37.27:516][772]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.37.27:516][772]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.37.27:516][772]PIE: Server logged in +[2025.06.17-03.37.27:517][772]PIE: Play in editor total start time 0.062 seconds. +[2025.06.17-03.37.28:667][886]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.28:667][886]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.28:667][886]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.37.28:667][886]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.28:667][886]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.37.28:670][886]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.37.28:674][886]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.37.28:689][886]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.37.28:689][886]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 30 +[2025.06.17-03.37.28:689][886]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=30 +[2025.06.17-03.37.28:693][886]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=30 +[2025.06.17-03.37.28:697][886]LogUObjectHash: Compacting FUObjectHashTables data took 0.86ms +[2025.06.17-03.37.28:746][887]LogPlayLevel: Display: Destroying online subsystem :Context_41 +[2025.06.17-03.37.38:486][761]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.37.42:320][133]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.37.44:748][370]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.37.57:072][591]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.37.57:077][591]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.37.57:077][591]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.37.57:079][591]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.283 ms (total: 42.842 ms) +[2025.06.17-03.37.57:079][591]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.37.57:079][591]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.37.57:082][591]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002258s) +[2025.06.17-03.37.57:082][591]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002411s) +[2025.06.17-03.37.57:095][591]LogUObjectHash: Compacting FUObjectHashTables data took 0.92ms +[2025.06.17-03.37.57:098][591]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.37.57:099][591]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.37.57:099][591]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.37.57:099][591]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.37.57:099][591]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.37.57:100][591]LogWorldPartition: Display: WorldPartition initialize took 989 us (total: 143.037 ms) +[2025.06.17-03.37.57:100][591]LogPlayLevel: PIE: World Init took: (0.002429s) +[2025.06.17-03.37.57:100][591]LogAudio: Display: Creating Audio Device: Id: 31, Scope: Unique, Realtime: True +[2025.06.17-03.37.57:100][591]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.37.57:100][591]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.37.57:100][591]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.37.57:101][591]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.37.57:101][591]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.37.57:101][591]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.37.57:101][591]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.37.57:101][591]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.37.57:101][591]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.37.57:101][591]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.37.57:101][591]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.37.57:103][591]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.37.57:128][591]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.37.57:129][591]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.37.57:129][591]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.37.57:129][591]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.37.57:129][591]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=31 +[2025.06.17-03.37.57:129][591]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=31 +[2025.06.17-03.37.57:131][591]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=31 +[2025.06.17-03.37.57:131][591]LogInit: FAudioDevice initialized with ID 31. +[2025.06.17-03.37.57:131][591]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=31 +[2025.06.17-03.37.57:132][591]LogAudio: Display: Audio Device (ID: 31) registered with world 'Dabaza'. +[2025.06.17-03.37.57:132][591]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 31 +[2025.06.17-03.37.57:134][591]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.37.57:135][591]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.37.57 +[2025.06.17-03.37.57:136][591]LogWorld: Bringing up level for play took: 0.001246 +[2025.06.17-03.37.57:138][591]LogOnline: OSS: Created online subsystem instance for: :Context_42 +[2025.06.17-03.37.57:140][591]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.37.57:140][591]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.37.57:141][591]PIE: Server logged in +[2025.06.17-03.37.57:142][591]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.38.03:446][304]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.38.03:446][304]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.38.03:447][304]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.38.03:447][304]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.38.03:447][304]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.38.03:450][304]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.38.03:453][304]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.38.03:468][304]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.38.03:468][304]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 31 +[2025.06.17-03.38.03:469][304]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=31 +[2025.06.17-03.38.03:471][304]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=31 +[2025.06.17-03.38.03:476][304]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.38.03:522][305]LogPlayLevel: Display: Destroying online subsystem :Context_42 +[2025.06.17-03.38.08:422][764]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.38.15:156][433]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.39.01:008][257]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.39.02:150][349]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.39.02:156][349]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.39.02:156][349]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.39.02:157][349]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.273 ms (total: 44.115 ms) +[2025.06.17-03.39.02:158][349]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.39.02:158][349]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.02:160][349]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002207s) +[2025.06.17-03.39.02:160][349]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002352s) +[2025.06.17-03.39.02:173][349]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.39.02:175][349]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.39.02:177][349]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.39.02:177][349]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.39.02:177][349]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.39.02:177][349]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.39.02:178][349]LogWorldPartition: Display: WorldPartition initialize took 1.113 ms (total: 144.151 ms) +[2025.06.17-03.39.02:178][349]LogPlayLevel: PIE: World Init took: (0.002644s) +[2025.06.17-03.39.02:179][349]LogAudio: Display: Creating Audio Device: Id: 32, Scope: Unique, Realtime: True +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.39.02:179][349]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.39.02:179][349]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.39.02:180][349]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.39.02:180][349]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.39.02:180][349]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.39.02:182][349]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.39.02:207][349]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.39.02:207][349]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.39.02:207][349]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.39.02:207][349]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.39.02:208][349]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=32 +[2025.06.17-03.39.02:208][349]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=32 +[2025.06.17-03.39.02:210][349]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=32 +[2025.06.17-03.39.02:210][349]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=32 +[2025.06.17-03.39.02:210][349]LogInit: FAudioDevice initialized with ID 32. +[2025.06.17-03.39.02:210][349]LogAudio: Display: Audio Device (ID: 32) registered with world 'Dabaza'. +[2025.06.17-03.39.02:210][349]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 32 +[2025.06.17-03.39.02:213][349]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.39.02:214][349]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.39.02 +[2025.06.17-03.39.02:214][349]LogWorld: Bringing up level for play took: 0.001147 +[2025.06.17-03.39.02:216][349]LogOnline: OSS: Created online subsystem instance for: :Context_43 +[2025.06.17-03.39.02:218][349]LogBlueprintDebug: Warning: Hit breakpoint on node 'CallFunc_PrintString', from offset 999 +[2025.06.17-03.39.02:218][349]LogBlueprintDebug: +Script call stack: + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ReceiveBeginPlay + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:InitSkills + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:ExecuteUbergraph_BP_Dabaza_GameMode + Function /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode_C:CreateSkillsForPawn + +[2025.06.17-03.39.10:720][349]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.39.10:721][349]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.39.10:721][349]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.39.10:721][349]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.39.10:722][349]PIE: Server logged in +[2025.06.17-03.39.10:724][349]PIE: Play in editor total start time 8.568 seconds. +[2025.06.17-03.39.10:766][349]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.10:766][349]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.10:766][349]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.39.10:767][349]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.10:767][349]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.39.10:841][349]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.39.10:844][349]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.10:860][349]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.39.10:860][349]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 32 +[2025.06.17-03.39.10:861][349]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=32 +[2025.06.17-03.39.10:862][349]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=32 +[2025.06.17-03.39.10:866][349]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.10:868][349]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.39.10:888][349]LogAutomationController: Ignoring very large delta of 8.74 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.17-03.39.10:902][350]LogPlayLevel: Display: Destroying online subsystem :Context_43 +[2025.06.17-03.39.24:141][706]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.39.24:141][706]LogBlueprintDebug: Display: Encountered a blueprint breakpoint in /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode without an associated node. The blueprint breakpoint has been removed +[2025.06.17-03.39.25:230][804]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.39.25:766][842]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.39.25:804][842]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.39.25:804][842]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.39.25:804][842]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-03.39.25:819][842]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-03.39.25:819][842]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode2F73299C4F37FBE4FB45589A6514055B.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-03.39.25:832][842]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.005 ms (total: 1.57 sec) +[2025.06.17-03.39.25:884][842]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.39.25:885][842]LogContentValidation: Enabled validators: +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.39.25:885][842]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.39.25:885][842]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-03.39.26:960][937]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.39.26:964][937]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.39.26:965][937]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.39.26:966][937]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.274 ms (total: 45.389 ms) +[2025.06.17-03.39.26:966][937]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.39.26:966][937]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.26:968][937]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002210s) +[2025.06.17-03.39.26:968][937]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002336s) +[2025.06.17-03.39.26:981][937]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-03.39.26:983][937]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.39.26:985][937]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.39.26:985][937]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.39.26:985][937]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.39.26:985][937]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.39.26:986][937]LogWorldPartition: Display: WorldPartition initialize took 1.086 ms (total: 145.237 ms) +[2025.06.17-03.39.26:986][937]LogPlayLevel: PIE: World Init took: (0.002461s) +[2025.06.17-03.39.26:986][937]LogAudio: Display: Creating Audio Device: Id: 33, Scope: Unique, Realtime: True +[2025.06.17-03.39.26:986][937]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.39.26:986][937]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.39.26:986][937]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.39.26:987][937]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.39.26:987][937]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.39.26:987][937]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.39.26:987][937]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.39.26:987][937]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.39.26:987][937]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.39.26:987][937]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.39.26:987][937]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.39.26:988][937]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.39.27:014][937]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.39.27:014][937]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.39.27:014][937]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.39.27:014][937]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.39.27:015][937]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=33 +[2025.06.17-03.39.27:015][937]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=33 +[2025.06.17-03.39.27:017][937]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=33 +[2025.06.17-03.39.27:018][937]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=33 +[2025.06.17-03.39.27:018][937]LogInit: FAudioDevice initialized with ID 33. +[2025.06.17-03.39.27:018][937]LogAudio: Display: Audio Device (ID: 33) registered with world 'Dabaza'. +[2025.06.17-03.39.27:018][937]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 33 +[2025.06.17-03.39.27:020][937]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.39.27:021][937]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.39.27 +[2025.06.17-03.39.27:021][937]LogWorld: Bringing up level for play took: 0.001306 +[2025.06.17-03.39.27:024][937]LogOnline: OSS: Created online subsystem instance for: :Context_44 +[2025.06.17-03.39.27:026][937]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.39.27:027][937]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.39.27:027][937]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.39.27:027][937]PIE: Server logged in +[2025.06.17-03.39.27:028][937]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.39.29:476][192]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.29:476][192]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.29:476][192]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.39.29:476][192]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.29:478][192]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.39.29:481][192]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.39.29:484][192]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.29:499][192]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.39.29:499][192]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 33 +[2025.06.17-03.39.29:499][192]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=33 +[2025.06.17-03.39.29:501][192]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=33 +[2025.06.17-03.39.29:504][192]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.29:506][192]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.17-03.39.29:553][193]LogPlayLevel: Display: Destroying online subsystem :Context_44 +[2025.06.17-03.39.41:807][387]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.39.41:813][387]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.39.41:813][387]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.39.41:814][387]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.280 ms (total: 46.670 ms) +[2025.06.17-03.39.41:814][387]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.39.41:815][387]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.41:817][387]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002259s) +[2025.06.17-03.39.41:817][387]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002431s) +[2025.06.17-03.39.41:830][387]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-03.39.41:832][387]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.39.41:834][387]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.39.41:834][387]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.39.41:834][387]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.39.41:834][387]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.39.41:835][387]LogWorldPartition: Display: WorldPartition initialize took 1.106 ms (total: 146.344 ms) +[2025.06.17-03.39.41:835][387]LogPlayLevel: PIE: World Init took: (0.002712s) +[2025.06.17-03.39.41:836][387]LogAudio: Display: Creating Audio Device: Id: 34, Scope: Unique, Realtime: True +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.39.41:836][387]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.39.41:836][387]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.39.41:836][387]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.39.41:836][387]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.39.41:836][387]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.39.41:838][387]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.39.41:864][387]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.39.41:864][387]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.39.41:864][387]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.39.41:864][387]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.39.41:865][387]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=34 +[2025.06.17-03.39.41:865][387]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=34 +[2025.06.17-03.39.41:867][387]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=34 +[2025.06.17-03.39.41:867][387]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=34 +[2025.06.17-03.39.41:867][387]LogInit: FAudioDevice initialized with ID 34. +[2025.06.17-03.39.41:867][387]LogAudio: Display: Audio Device (ID: 34) registered with world 'Dabaza'. +[2025.06.17-03.39.41:867][387]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 34 +[2025.06.17-03.39.41:869][387]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.39.41:870][387]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.39.41 +[2025.06.17-03.39.41:870][387]LogWorld: Bringing up level for play took: 0.001163 +[2025.06.17-03.39.41:872][387]LogOnline: OSS: Created online subsystem instance for: :Context_45 +[2025.06.17-03.39.41:874][387]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.39.41:876][387]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.39.41:876][387]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.39.41:877][387]PIE: Server logged in +[2025.06.17-03.39.41:877][387]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.39.44:366][649]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.44:366][649]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.39.44:366][649]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.39.44:366][649]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.44:368][649]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.39.44:371][649]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.39.44:374][649]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.39.44:390][649]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.39.44:391][649]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 34 +[2025.06.17-03.39.44:391][649]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=34 +[2025.06.17-03.39.44:392][649]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=34 +[2025.06.17-03.39.44:397][649]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.39.44:443][650]LogPlayLevel: Display: Destroying online subsystem :Context_45 +[2025.06.17-03.39.59:845][217]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.40.02:223][445]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.40.02:228][445]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.40.02:228][445]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.40.02:229][445]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.344 ms (total: 48.014 ms) +[2025.06.17-03.40.02:229][445]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.40.02:230][445]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.40.02:232][445]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002250s) +[2025.06.17-03.40.02:232][445]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002416s) +[2025.06.17-03.40.02:246][445]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.40.02:248][445]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.40.02:249][445]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.40.02:249][445]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.40.02:250][445]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.40.02:250][445]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.40.02:252][445]LogWorldPartition: Display: WorldPartition initialize took 1.130 ms (total: 147.474 ms) +[2025.06.17-03.40.02:252][445]LogPlayLevel: PIE: World Init took: (0.002648s) +[2025.06.17-03.40.02:252][445]LogAudio: Display: Creating Audio Device: Id: 35, Scope: Unique, Realtime: True +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.40.02:252][445]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.40.02:252][445]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.40.02:253][445]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.40.02:253][445]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.40.02:253][445]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.40.02:255][445]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.40.02:280][445]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.40.02:280][445]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.40.02:280][445]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.40.02:280][445]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.40.02:281][445]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=35 +[2025.06.17-03.40.02:281][445]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=35 +[2025.06.17-03.40.02:283][445]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=35 +[2025.06.17-03.40.02:283][445]LogInit: FAudioDevice initialized with ID 35. +[2025.06.17-03.40.02:283][445]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=35 +[2025.06.17-03.40.02:283][445]LogAudio: Display: Audio Device (ID: 35) registered with world 'Dabaza'. +[2025.06.17-03.40.02:283][445]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 35 +[2025.06.17-03.40.02:285][445]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.40.02:287][445]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.40.02 +[2025.06.17-03.40.02:287][445]LogWorld: Bringing up level for play took: 0.001123 +[2025.06.17-03.40.02:289][445]LogOnline: OSS: Created online subsystem instance for: :Context_46 +[2025.06.17-03.40.02:291][445]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.40.02:292][445]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.40.02:292][445]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.40.02:292][445]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.40.02:292][445]PIE: Server logged in +[2025.06.17-03.40.02:293][445]PIE: Play in editor total start time 0.065 seconds. +[2025.06.17-03.40.04:887][715]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.40.04:887][715]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.40.04:887][715]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.40.04:888][715]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.40.04:888][715]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.40.04:891][715]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.40.04:894][715]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.40.04:910][715]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.40.04:911][715]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 35 +[2025.06.17-03.40.04:911][715]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=35 +[2025.06.17-03.40.04:913][715]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=35 +[2025.06.17-03.40.04:917][715]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.40.04:918][715]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.40.04:967][716]LogPlayLevel: Display: Destroying online subsystem :Context_46 +[2025.06.17-03.40.13:845][671]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.40.13:910][671]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.40.13:910][671]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.40.13:910][671]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-03.40.13:925][671]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-03.40.13:925][671]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameModeD7BA737A41EB9C04E25A198018510CC4.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-03.40.13:934][671]LogFileHelpers: InternalPromptForCheckoutAndSave took 89.844 ms (total: 1.66 sec) +[2025.06.17-03.40.13:988][671]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.40.13:988][671]LogContentValidation: Enabled validators: +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.40.13:988][671]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.40.13:988][671]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-03.41.08:420][600]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.41.09:242][662]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.41.09:308][662]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.41.09:309][662]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.41.09:309][662]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.41.09:309][662]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.41.09:320][662]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.41.09:320][662]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainerC5E997DB444785F3D59858BD839AE3E8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.41.09:329][662]LogFileHelpers: InternalPromptForCheckoutAndSave took 87.051 ms (total: 1.74 sec) +[2025.06.17-03.41.09:384][662]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.41.09:384][662]LogContentValidation: Enabled validators: +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.41.09:384][662]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.41.09:385][662]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.41.10:291][745]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.41.10:296][745]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.41.10:296][745]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.41.10:297][745]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.377 ms (total: 49.391 ms) +[2025.06.17-03.41.10:298][745]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.41.10:298][745]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.10:300][745]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002232s) +[2025.06.17-03.41.10:300][745]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002372s) +[2025.06.17-03.41.10:316][745]LogUObjectHash: Compacting FUObjectHashTables data took 0.87ms +[2025.06.17-03.41.10:318][745]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.41.10:319][745]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.41.10:319][745]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.41.10:319][745]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.41.10:319][745]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.41.10:321][745]LogWorldPartition: Display: WorldPartition initialize took 1.114 ms (total: 148.589 ms) +[2025.06.17-03.41.10:321][745]LogPlayLevel: PIE: World Init took: (0.002526s) +[2025.06.17-03.41.10:322][745]LogAudio: Display: Creating Audio Device: Id: 36, Scope: Unique, Realtime: True +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.41.10:322][745]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.41.10:322][745]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.41.10:322][745]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.41.10:322][745]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.41.10:322][745]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.41.10:325][745]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.41.10:352][745]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.41.10:353][745]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.41.10:353][745]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.41.10:353][745]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.41.10:353][745]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=36 +[2025.06.17-03.41.10:353][745]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=36 +[2025.06.17-03.41.10:355][745]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=36 +[2025.06.17-03.41.10:355][745]LogInit: FAudioDevice initialized with ID 36. +[2025.06.17-03.41.10:355][745]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=36 +[2025.06.17-03.41.10:355][745]LogAudio: Display: Audio Device (ID: 36) registered with world 'Dabaza'. +[2025.06.17-03.41.10:355][745]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 36 +[2025.06.17-03.41.10:357][745]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.41.10:358][745]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.41.10 +[2025.06.17-03.41.10:359][745]LogWorld: Bringing up level for play took: 0.001159 +[2025.06.17-03.41.10:361][745]LogOnline: OSS: Created online subsystem instance for: :Context_47 +[2025.06.17-03.41.10:363][745]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.41.10:364][745]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.41.10:364][745]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.41.10:365][745]PIE: Server logged in +[2025.06.17-03.41.10:365][745]PIE: Play in editor total start time 0.07 seconds. +[2025.06.17-03.41.14:066][139]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.14:067][139]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.14:067][139]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.41.14:067][139]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.14:067][139]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.41.14:070][139]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.41.14:073][139]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.14:091][139]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.41.14:091][139]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 36 +[2025.06.17-03.41.14:091][139]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=36 +[2025.06.17-03.41.14:094][139]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=36 +[2025.06.17-03.41.14:097][139]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.14:098][139]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.41.14:147][140]LogPlayLevel: Display: Destroying online subsystem :Context_47 +[2025.06.17-03.41.19:780][672]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.41.19:786][672]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.41.19:786][672]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.41.19:787][672]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.309 ms (total: 50.700 ms) +[2025.06.17-03.41.19:787][672]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.41.19:788][672]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.19:790][672]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002184s) +[2025.06.17-03.41.19:790][672]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002338s) +[2025.06.17-03.41.19:803][672]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.41.19:805][672]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.41.19:807][672]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.41.19:807][672]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.41.19:807][672]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.41.19:807][672]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.41.19:808][672]LogWorldPartition: Display: WorldPartition initialize took 970 us (total: 149.559 ms) +[2025.06.17-03.41.19:808][672]LogPlayLevel: PIE: World Init took: (0.002387s) +[2025.06.17-03.41.19:808][672]LogAudio: Display: Creating Audio Device: Id: 37, Scope: Unique, Realtime: True +[2025.06.17-03.41.19:808][672]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.41.19:809][672]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.41.19:809][672]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.41.19:809][672]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.41.19:809][672]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.41.19:809][672]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.41.19:811][672]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.41.19:836][672]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.41.19:836][672]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.41.19:836][672]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.41.19:836][672]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.41.19:837][672]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=37 +[2025.06.17-03.41.19:837][672]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=37 +[2025.06.17-03.41.19:839][672]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=37 +[2025.06.17-03.41.19:839][672]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=37 +[2025.06.17-03.41.19:839][672]LogInit: FAudioDevice initialized with ID 37. +[2025.06.17-03.41.19:839][672]LogAudio: Display: Audio Device (ID: 37) registered with world 'Dabaza'. +[2025.06.17-03.41.19:839][672]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 37 +[2025.06.17-03.41.19:841][672]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.41.19:842][672]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.41.19 +[2025.06.17-03.41.19:842][672]LogWorld: Bringing up level for play took: 0.001177 +[2025.06.17-03.41.19:845][672]LogOnline: OSS: Created online subsystem instance for: :Context_48 +[2025.06.17-03.41.19:848][672]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.41.19:848][672]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.41.19:848][672]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.41.19:848][672]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.41.19:849][672]PIE: Server logged in +[2025.06.17-03.41.19:849][672]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.41.22:506][944]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.22:506][944]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.22:506][944]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.41.22:506][944]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.22:506][944]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.41.22:510][944]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.41.22:514][944]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.22:530][944]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.22:530][944]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 37 +[2025.06.17-03.41.22:530][944]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=37 +[2025.06.17-03.41.22:532][944]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=37 +[2025.06.17-03.41.22:537][944]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.17-03.41.22:582][945]LogPlayLevel: Display: Destroying online subsystem :Context_48 +[2025.06.17-03.41.22:902][971]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.41.22:907][971]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.41.22:907][971]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.41.22:909][971]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.255 ms (total: 51.956 ms) +[2025.06.17-03.41.22:909][971]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.41.22:909][971]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.22:911][971]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002316s) +[2025.06.17-03.41.22:911][971]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002485s) +[2025.06.17-03.41.22:925][971]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.41.22:926][971]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.41.22:927][971]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.41.22:927][971]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.41.22:927][971]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.41.22:928][971]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.41.22:928][971]LogWorldPartition: Display: WorldPartition initialize took 1.070 ms (total: 150.630 ms) +[2025.06.17-03.41.22:929][971]LogPlayLevel: PIE: World Init took: (0.002553s) +[2025.06.17-03.41.22:929][971]LogAudio: Display: Creating Audio Device: Id: 38, Scope: Unique, Realtime: True +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.41.22:929][971]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.41.22:929][971]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.41.22:931][971]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.41.22:931][971]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.41.22:931][971]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.41.22:932][971]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.41.22:957][971]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.41.22:957][971]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.41.22:957][971]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.41.22:958][971]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.41.22:958][971]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=38 +[2025.06.17-03.41.22:958][971]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=38 +[2025.06.17-03.41.22:960][971]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=38 +[2025.06.17-03.41.22:960][971]LogInit: FAudioDevice initialized with ID 38. +[2025.06.17-03.41.22:960][971]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=38 +[2025.06.17-03.41.22:960][971]LogAudio: Display: Audio Device (ID: 38) registered with world 'Dabaza'. +[2025.06.17-03.41.22:960][971]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 38 +[2025.06.17-03.41.22:962][971]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.41.22:963][971]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.41.22 +[2025.06.17-03.41.22:963][971]LogWorld: Bringing up level for play took: 0.001200 +[2025.06.17-03.41.22:966][971]LogOnline: OSS: Created online subsystem instance for: :Context_49 +[2025.06.17-03.41.22:968][971]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.41.22:969][971]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.41.22:969][971]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.41.22:969][971]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.41.22:970][971]PIE: Server logged in +[2025.06.17-03.41.22:971][971]PIE: Play in editor total start time 0.064 seconds. +[2025.06.17-03.41.25:177][200]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.25:177][200]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.41.25:177][200]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.41.25:177][200]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.25:177][200]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.41.25:180][200]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.41.25:183][200]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.41.25:199][200]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.41.25:199][200]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 38 +[2025.06.17-03.41.25:199][200]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=38 +[2025.06.17-03.41.25:201][200]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=38 +[2025.06.17-03.41.25:205][200]LogUObjectHash: Compacting FUObjectHashTables data took 0.93ms +[2025.06.17-03.41.25:253][201]LogPlayLevel: Display: Destroying online subsystem :Context_49 +[2025.06.17-03.41.25:931][257]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2897.472900 +[2025.06.17-03.41.26:192][282]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.41.26:192][282]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2897.722412, Update Interval: 356.912750 +[2025.06.17-03.41.54:140][472]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.41.54:712][513]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.41.54:772][513]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.17-03.41.54:773][513]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.17-03.41.54:773][513]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.17-03.41.54:786][513]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.17-03.41.54:786][513]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode3C9C476A4B8E701BBA043185D96DDD8A.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.17-03.41.54:796][513]LogFileHelpers: InternalPromptForCheckoutAndSave took 84.641 ms (total: 1.83 sec) +[2025.06.17-03.41.54:854][513]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.41.54:854][513]LogContentValidation: Enabled validators: +[2025.06.17-03.41.54:854][513]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.41.54:854][513]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.41.54:854][513]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.41.54:855][513]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.41.54:855][513]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.41.54:855][513]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.41.54:855][513]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.17-03.42.02:899][400]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.42.03:460][448]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.42.03:514][448]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.42.03:515][448]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.42.03:515][448]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.42.03:515][448]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.42.03:527][448]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.42.03:528][448]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer5973D5984C44490A4ADAFEA9294102C8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.42.03:537][448]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.616 ms (total: 1.91 sec) +[2025.06.17-03.42.03:576][448]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.42.03:577][448]LogContentValidation: Enabled validators: +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.42.03:577][448]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.42.03:577][448]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.42.04:629][547]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.42.04:635][547]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.42.04:635][547]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.42.04:636][547]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.394 ms (total: 53.351 ms) +[2025.06.17-03.42.04:636][547]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.42.04:636][547]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.42.04:640][547]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002225s) +[2025.06.17-03.42.04:640][547]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002385s) +[2025.06.17-03.42.04:652][547]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.42.04:656][547]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.42.04:657][547]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.42.04:658][547]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.42.04:658][547]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.42.04:658][547]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.42.04:659][547]LogWorldPartition: Display: WorldPartition initialize took 1.044 ms (total: 151.674 ms) +[2025.06.17-03.42.04:659][547]LogPlayLevel: PIE: World Init took: (0.002535s) +[2025.06.17-03.42.04:659][547]LogAudio: Display: Creating Audio Device: Id: 39, Scope: Unique, Realtime: True +[2025.06.17-03.42.04:659][547]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.42.04:659][547]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.42.04:661][547]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.42.04:661][547]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.42.04:661][547]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.42.04:661][547]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.42.04:661][547]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.42.04:661][547]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.42.04:661][547]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.42.04:661][547]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.42.04:661][547]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.42.04:663][547]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.42.04:689][547]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.42.04:689][547]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.42.04:689][547]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.42.04:689][547]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.42.04:689][547]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=39 +[2025.06.17-03.42.04:689][547]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=39 +[2025.06.17-03.42.04:691][547]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=39 +[2025.06.17-03.42.04:691][547]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=39 +[2025.06.17-03.42.04:691][547]LogInit: FAudioDevice initialized with ID 39. +[2025.06.17-03.42.04:691][547]LogAudio: Display: Audio Device (ID: 39) registered with world 'Dabaza'. +[2025.06.17-03.42.04:691][547]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 39 +[2025.06.17-03.42.04:693][547]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.42.04:695][547]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.42.04 +[2025.06.17-03.42.04:695][547]LogWorld: Bringing up level for play took: 0.001144 +[2025.06.17-03.42.04:697][547]LogOnline: OSS: Created online subsystem instance for: :Context_50 +[2025.06.17-03.42.04:701][547]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.42.04:701][547]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.42.04:701][547]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.42.04:702][547]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.42.04:702][547]PIE: Server logged in +[2025.06.17-03.42.04:703][547]PIE: Play in editor total start time 0.068 seconds. +[2025.06.17-03.42.06:267][700]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.42.06:267][700]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.42.06:267][700]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.42.06:267][700]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.42.06:267][700]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.42.06:270][700]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.42.06:273][700]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.42.06:288][700]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.42.06:289][700]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 39 +[2025.06.17-03.42.06:289][700]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=39 +[2025.06.17-03.42.06:291][700]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=39 +[2025.06.17-03.42.06:295][700]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.42.06:297][700]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.42.06:345][701]LogPlayLevel: Display: Destroying online subsystem :Context_50 +[2025.06.17-03.42.38:578][198]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-03.42.39:708][292]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.42.39:743][292]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillContainer] ([2] browsable assets)... +[2025.06.17-03.42.39:744][292]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillContainer.WBP_SkillContainer] +[2025.06.17-03.42.39:744][292]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillContainer] +[2025.06.17-03.42.39:744][292]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillContainer" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset" SILENT=true +[2025.06.17-03.42.39:755][292]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillContainer +[2025.06.17-03.42.39:755][292]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillContainer4C846D474F8D7ADA138262BE69BB3CE8.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset' +[2025.06.17-03.42.39:765][292]LogFileHelpers: InternalPromptForCheckoutAndSave took 55.996 ms (total: 1.96 sec) +[2025.06.17-03.42.39:827][292]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.42.39:827][292]LogContentValidation: Enabled validators: +[2025.06.17-03.42.39:827][292]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.42.39:827][292]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.42.39:827][292]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.42.39:827][292]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.42.39:828][292]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.42.39:828][292]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.42.39:828][292]AssetCheck: /Game/UI/WBP_SkillContainer Validating asset +[2025.06.17-03.42.40:875][385]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.42.40:880][385]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.42.40:880][385]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.42.40:881][385]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.413 ms (total: 54.765 ms) +[2025.06.17-03.42.40:881][385]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.42.40:882][385]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.42.40:885][385]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002329s) +[2025.06.17-03.42.40:885][385]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002469s) +[2025.06.17-03.42.40:896][385]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.42.40:899][385]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.42.40:900][385]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.42.40:900][385]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.42.40:900][385]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.42.40:900][385]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.42.40:901][385]LogWorldPartition: Display: WorldPartition initialize took 1.083 ms (total: 152.758 ms) +[2025.06.17-03.42.40:901][385]LogPlayLevel: PIE: World Init took: (0.002417s) +[2025.06.17-03.42.40:902][385]LogAudio: Display: Creating Audio Device: Id: 40, Scope: Unique, Realtime: True +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.42.40:902][385]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.42.40:902][385]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.42.40:903][385]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.42.40:903][385]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.42.40:903][385]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.42.40:905][385]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.42.40:931][385]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.42.40:931][385]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.42.40:931][385]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.42.40:931][385]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.42.40:932][385]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=40 +[2025.06.17-03.42.40:932][385]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=40 +[2025.06.17-03.42.40:934][385]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=40 +[2025.06.17-03.42.40:934][385]LogInit: FAudioDevice initialized with ID 40. +[2025.06.17-03.42.40:934][385]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=40 +[2025.06.17-03.42.40:934][385]LogAudio: Display: Audio Device (ID: 40) registered with world 'Dabaza'. +[2025.06.17-03.42.40:934][385]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 40 +[2025.06.17-03.42.40:937][385]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.42.40:938][385]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.42.40 +[2025.06.17-03.42.40:938][385]LogWorld: Bringing up level for play took: 0.001201 +[2025.06.17-03.42.40:940][385]LogOnline: OSS: Created online subsystem instance for: :Context_51 +[2025.06.17-03.42.40:944][385]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.42.40:944][385]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.42.40:944][385]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.42.40:945][385]PIE: Server logged in +[2025.06.17-03.42.40:945][385]PIE: Play in editor total start time 0.066 seconds. +[2025.06.17-03.42.46:869][ 26]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.17-03.42.50:869][474]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.42.50:869][474]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.42.50:869][474]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.42.50:869][474]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.42.50:869][474]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.42.51:196][507]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.42.51:197][507]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.42.51:197][507]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.42.51:197][507]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.42.51:197][507]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.42.51:200][507]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.42.51:203][507]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.42.51:219][507]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.42.51:219][507]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 40 +[2025.06.17-03.42.51:220][507]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=40 +[2025.06.17-03.42.51:221][507]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=40 +[2025.06.17-03.42.51:225][507]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.42.51:227][507]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.42.51:271][508]LogPlayLevel: Display: Destroying online subsystem :Context_51 +[2025.06.17-03.43.17:447][275]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.43.17:899][300]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.43.17:939][300]OBJ SavePackage: Generating thumbnails for [2] asset(s) in package [/Game/UI/WBP_SkillCard] ([2] browsable assets)... +[2025.06.17-03.43.17:940][300]OBJ SavePackage: Rendered thumbnail for [WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard] +[2025.06.17-03.43.17:940][300]OBJ SavePackage: Finished generating thumbnails for package [/Game/UI/WBP_SkillCard] +[2025.06.17-03.43.17:940][300]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/UI/WBP_SkillCard" FILE="G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset" SILENT=true +[2025.06.17-03.43.17:951][300]LogSavePackage: Moving output files for package: /Game/UI/WBP_SkillCard +[2025.06.17-03.43.17:952][300]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/WBP_SkillCardEF5E58A84CF4B8A6DF4040A17BF5AE7C.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset' +[2025.06.17-03.43.17:961][300]LogFileHelpers: InternalPromptForCheckoutAndSave took 61.681 ms (total: 2.02 sec) +[2025.06.17-03.43.18:022][300]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.43.18:022][300]LogContentValidation: Enabled validators: +[2025.06.17-03.43.18:022][300]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.43.18:022][300]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.43.18:022][300]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.43.18:022][300]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.43.18:023][300]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.43.18:023][300]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.43.18:023][300]AssetCheck: /Game/UI/WBP_SkillCard Validating asset +[2025.06.17-03.43.19:047][391]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.43.19:053][391]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.43.19:053][391]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.43.19:055][391]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.564 ms (total: 56.329 ms) +[2025.06.17-03.43.19:055][391]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.43.19:055][391]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.43.19:057][391]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002207s) +[2025.06.17-03.43.19:057][391]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002358s) +[2025.06.17-03.43.19:069][391]LogUObjectHash: Compacting FUObjectHashTables data took 0.79ms +[2025.06.17-03.43.19:072][391]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.43.19:073][391]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.43.19:073][391]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.43.19:073][391]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.43.19:073][391]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.43.19:074][391]LogWorldPartition: Display: WorldPartition initialize took 994 us (total: 153.752 ms) +[2025.06.17-03.43.19:074][391]LogPlayLevel: PIE: World Init took: (0.002366s) +[2025.06.17-03.43.19:075][391]LogAudio: Display: Creating Audio Device: Id: 41, Scope: Unique, Realtime: True +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.43.19:075][391]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.43.19:075][391]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.43.19:075][391]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.43.19:075][391]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.43.19:075][391]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.43.19:077][391]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.43.19:103][391]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.43.19:103][391]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.43.19:103][391]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.43.19:103][391]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.43.19:103][391]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=41 +[2025.06.17-03.43.19:103][391]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=41 +[2025.06.17-03.43.19:106][391]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=41 +[2025.06.17-03.43.19:106][391]LogInit: FAudioDevice initialized with ID 41. +[2025.06.17-03.43.19:106][391]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=41 +[2025.06.17-03.43.19:106][391]LogAudio: Display: Audio Device (ID: 41) registered with world 'Dabaza'. +[2025.06.17-03.43.19:106][391]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 41 +[2025.06.17-03.43.19:108][391]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.43.19:109][391]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.43.19 +[2025.06.17-03.43.19:110][391]LogWorld: Bringing up level for play took: 0.001120 +[2025.06.17-03.43.19:112][391]LogOnline: OSS: Created online subsystem instance for: :Context_52 +[2025.06.17-03.43.19:116][391]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.43.19:117][391]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.43.19:117][391]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.43.19:118][391]PIE: Server logged in +[2025.06.17-03.43.19:119][391]PIE: Play in editor total start time 0.066 seconds. +[2025.06.17-03.43.23:566][872]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.43.23:566][872]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.43.23:566][872]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.43.23:567][872]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.43.23:567][872]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.43.23:569][872]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.43.23:574][872]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.43.23:591][872]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.43.23:591][872]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 41 +[2025.06.17-03.43.23:591][872]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=41 +[2025.06.17-03.43.23:593][872]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=41 +[2025.06.17-03.43.23:597][872]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.43.23:599][872]LogUObjectHash: Compacting FUObjectHashTables data took 0.81ms +[2025.06.17-03.43.23:648][873]LogPlayLevel: Display: Destroying online subsystem :Context_52 +[2025.06.17-03.43.24:546][950]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.17-03.43.25:716][950]LogSlate: Window 'Save Content' being destroyed +[2025.06.17-03.43.25:726][950]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.17-03.43.25:782][950]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.17-03.43.25:782][950]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A926067403434434D718E95A7897120376EE.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.17-03.43.25:792][950]LogFileHelpers: InternalPromptForCheckoutAndSave took 65.786 ms (total: 2.09 sec) +[2025.06.17-03.43.25:846][950]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.17-03.43.25:846][950]LogContentValidation: Enabled validators: +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.17-03.43.25:846][950]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.17-03.43.25:846][950]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.17-03.43.39:448][ 46]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.43.39:454][ 46]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.43.39:454][ 46]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.43.39:455][ 46]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.301 ms (total: 57.631 ms) +[2025.06.17-03.43.39:455][ 46]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.43.39:455][ 46]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.43.39:457][ 46]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002229s) +[2025.06.17-03.43.39:458][ 46]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002389s) +[2025.06.17-03.43.39:472][ 46]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-03.43.39:473][ 46]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.43.39:475][ 46]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.43.39:475][ 46]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.43.39:476][ 46]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.43.39:476][ 46]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.43.39:476][ 46]LogWorldPartition: Display: WorldPartition initialize took 1.137 ms (total: 154.889 ms) +[2025.06.17-03.43.39:477][ 46]LogPlayLevel: PIE: World Init took: (0.002548s) +[2025.06.17-03.43.39:477][ 46]LogAudio: Display: Creating Audio Device: Id: 42, Scope: Unique, Realtime: True +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.43.39:477][ 46]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.43.39:477][ 46]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.43.39:477][ 46]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.43.39:477][ 46]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.43.39:477][ 46]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.43.39:480][ 46]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.43.39:506][ 46]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.43.39:507][ 46]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.43.39:507][ 46]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.43.39:507][ 46]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.43.39:507][ 46]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=42 +[2025.06.17-03.43.39:507][ 46]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=42 +[2025.06.17-03.43.39:509][ 46]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=42 +[2025.06.17-03.43.39:509][ 46]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=42 +[2025.06.17-03.43.39:509][ 46]LogInit: FAudioDevice initialized with ID 42. +[2025.06.17-03.43.39:509][ 46]LogAudio: Display: Audio Device (ID: 42) registered with world 'Dabaza'. +[2025.06.17-03.43.39:510][ 46]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 42 +[2025.06.17-03.43.39:512][ 46]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.43.39:513][ 46]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.43.39 +[2025.06.17-03.43.39:513][ 46]LogWorld: Bringing up level for play took: 0.001304 +[2025.06.17-03.43.39:516][ 46]LogOnline: OSS: Created online subsystem instance for: :Context_53 +[2025.06.17-03.43.39:519][ 46]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.43.39:520][ 46]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.43.39:520][ 46]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.43.39:520][ 46]PIE: Server logged in +[2025.06.17-03.43.39:521][ 46]PIE: Play in editor total start time 0.068 seconds. +[2025.06.17-03.43.49:194][112]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.43.51:196][343]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.17-03.43.51:196][343]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.17-03.43.51:196][343]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.17-03.43.51:196][343]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.17-03.43.54:193][686]LogTemp: 针对目标 |Skill_1 释放技能效果Charge +[2025.06.17-03.43.54:193][686]LogTemp: 针对目标 |Skill_4 释放技能效果Charge +[2025.06.17-03.43.57:236][ 26]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.43.57:236][ 26]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.43.57:237][ 26]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.43.57:237][ 26]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.43.57:237][ 26]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.43.57:240][ 26]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.43.57:244][ 26]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.43.57:259][ 26]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.43.57:260][ 26]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 42 +[2025.06.17-03.43.57:260][ 26]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=42 +[2025.06.17-03.43.57:262][ 26]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=42 +[2025.06.17-03.43.57:268][ 26]LogUObjectHash: Compacting FUObjectHashTables data took 1.01ms +[2025.06.17-03.43.57:311][ 27]LogPlayLevel: Display: Destroying online subsystem :Context_53 +[2025.06.17-03.44.26:797][723]LogUObjectHash: Compacting FUObjectHashTables data took 0.49ms +[2025.06.17-03.44.26:801][723]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.17-03.44.26:801][723]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-03.44.26:858][723]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.26:858][723]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.26:859][723]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-03.44.26:880][723]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.44.26:882][723]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.44.26:951][723]LogStreaming: Display: FlushAsyncLoading(595): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-03.44.26:968][723]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.17-03.44.26:968][723]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.44.26:970][723]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-03.44.26:970][723]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.44.26:970][723]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.44.26:979][723]LogWorldPartition: Display: WorldPartition initialize took 9.255 ms (total: 164.145 ms) +[2025.06.17-03.44.27:010][723]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-03.44.27:029][723]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.44.27:037][723]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-03.44.27:037][723]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.516ms to complete. +[2025.06.17-03.44.27:513][765]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.44.30:928][117]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms +[2025.06.17-03.44.30:932][117]LogStreaming: Display: FlushAsyncLoading(617): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-03.44.30:937][117]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.17-03.44.30:937][117]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-03.44.30:937][117]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.44.30:937][117]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.44.30:945][117]LogWorldPartition: Display: WorldPartition initialize took 8.668 ms (total: 172.813 ms) +[2025.06.17-03.44.30:947][117]LogAssetEditorSubsystem: Opening Asset editor for World /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.17-03.44.30:948][117]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-03.44.30:998][117]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.30:998][117]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.30:998][117]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-03.44.31:019][117]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.44.31:021][117]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-03.44.31:023][117]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.31:023][117]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.31:024][117]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.17-03.44.31:110][117]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.17-03.44.31:124][117]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-03.44.31:130][117]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.17-03.44.31:130][117]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.17-03.44.31:131][117]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-03.44.31:131][117]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.44.31:131][117]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.44.31:140][117]LogWorldPartition: Display: WorldPartition initialize took 8.493 ms (total: 181.306 ms) +[2025.06.17-03.44.31:166][117]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-03.44.31:183][117]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.17-03.44.31:190][117]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-03.44.31:190][117]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.423ms to complete. +[2025.06.17-03.44.31:533][140]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007fff448c085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007fff2b8a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b9c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bbfb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2bb8dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b7bb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff2b831288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007fff228bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007fff22f75881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.17-03.44.32:386][228]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.17-03.44.32:391][228]LogContentBundle: [TopDownMap(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.17-03.44.32:391][228]LogWorldPartition: Display: GenerateStreaming for 'TopDownMap' started... +[2025.06.17-03.44.32:407][228]LogWorldPartition: Display: GenerateStreaming for 'TopDownMap' took 15.125 ms (total: 72.756 ms) +[2025.06.17-03.44.32:407][228]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.17-03.44.32:407][228]LogPlayLevel: Creating play world package: /Game/TopDown/Maps/UEDPIE_0_TopDownMap +[2025.06.17-03.44.32:409][228]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002095s) +[2025.06.17-03.44.32:409][228]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/TopDown/Maps/TopDownMap.TopDownMap to /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap (0.002259s) +[2025.06.17-03.44.32:421][228]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-03.44.32:426][228]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.17-03.44.32:428][228]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.44.32:428][228]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.44.32:428][228]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-03.44.32:428][228]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.44.32:429][228]LogWorldPartition: Display: WorldPartition initialize took 892 us (total: 182.199 ms) +[2025.06.17-03.44.32:429][228]LogPlayLevel: PIE: World Init took: (0.002307s) +[2025.06.17-03.44.32:429][228]LogAudio: Display: Creating Audio Device: Id: 43, Scope: Unique, Realtime: True +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-03.44.32:429][228]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-03.44.32:429][228]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-03.44.32:429][228]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-03.44.32:429][228]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-03.44.32:429][228]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-03.44.32:431][228]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-03.44.32:459][228]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-03.44.32:459][228]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-03.44.32:459][228]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-03.44.32:459][228]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-03.44.32:459][228]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=43 +[2025.06.17-03.44.32:459][228]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=43 +[2025.06.17-03.44.32:462][228]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=43 +[2025.06.17-03.44.32:462][228]LogInit: FAudioDevice initialized with ID 43. +[2025.06.17-03.44.32:462][228]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=43 +[2025.06.17-03.44.32:462][228]LogAudio: Display: Audio Device (ID: 43) registered with world 'TopDownMap'. +[2025.06.17-03.44.32:462][228]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 43 +[2025.06.17-03.44.32:464][228]LogLoad: Game class is 'BP_Ready_GameMode_C' +[2025.06.17-03.44.32:465][228]LogWorld: Bringing World /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap up for play (max tick rate 0) at 2025.06.17-11.44.32 +[2025.06.17-03.44.32:465][228]LogWorld: Bringing up level for play took: 0.001003 +[2025.06.17-03.44.32:468][228]LogOnline: OSS: Created online subsystem instance for: :Context_54 +[2025.06.17-03.44.32:483][228]PIE: Server logged in +[2025.06.17-03.44.32:484][228]PIE: Play in editor total start time 0.092 seconds. +[2025.06.17-03.44.34:114][373]LogGlobalStatus: UEngine::Browse Started Browse: "/Game/Maps/Dabaza" +[2025.06.17-03.44.34:114][373]LogNet: Browse: /Game/Maps/Dabaza +[2025.06.17-03.44.34:115][373]LogLoad: LoadMap: /Game/Maps/Dabaza +[2025.06.17-03.44.34:115][373]LogWorld: BeginTearingDown for /Game/TopDown/Maps/UEDPIE_0_TopDownMap +[2025.06.17-03.44.34:115][373]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.34:117][373]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.34:117][373]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/UEDPIE_0_TopDownMap.TopDownMap +[2025.06.17-03.44.34:166][373]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-03.44.34:168][373]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.17-03.44.34:171][373]LogStreaming: Display: FlushAsyncLoading(659): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-03.44.34:185][373]LogAudio: Display: Audio Device (ID: 43) registered with world 'Dabaza'. +[2025.06.17-03.44.34:185][373]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-03.44.34:186][373]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.17-03.44.34:186][373]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-03.44.34:186][373]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 1, IsCooking = 0 +[2025.06.17-03.44.34:186][373]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.17-03.44.34:187][373]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.17-03.44.34:189][373]LogStreaming: Display: FGlobalImportStore:AddPackageRef: Dropping stale reference to package /Game/Maps/Dabaza (0x7305D8878513BB56) that has been renamed to /Game/Maps/UEDPIE_0_Dabaza (0xCE0C21BDBC13C15B) +[2025.06.17-03.44.34:193][373]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 6.422 ms (total: 79.179 ms) +[2025.06.17-03.44.34:194][373]LogWorldPartition: Display: WorldPartition initialize took 8.530 ms (total: 190.729 ms) +[2025.06.17-03.44.34:194][373]LogPlayLevel: PIE: World Init took: (0.009937s) +[2025.06.17-03.44.34:194][373]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.17-03.44.34:196][373]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.17-11.44.34 +[2025.06.17-03.44.34:197][373]LogWorld: Bringing up level for play took: 0.002174 +[2025.06.17-03.44.34:200][373]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.17-03.44.34:201][373]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.17-03.44.34:201][373]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.17-03.44.34:201][373]LogLoad: Took 0.087056 seconds to LoadMap(/Game/Maps/Dabaza) +[2025.06.17-03.44.34:202][373]LogGlobalStatus: UEngine::LoadMap Load map complete /Game/Maps/Dabaza +[2025.06.17-03.44.44:102][492]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.44.44:102][492]LogTemp: 针对目标 释放技能效果ModifySpeed +[2025.06.17-03.44.46:110][724]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.17-03.44.46:110][724]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.17-03.44.48:507][980]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.44.48:507][980]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.17-03.44.48:508][980]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.48:508][980]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.48:509][980]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.17-03.44.48:512][980]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.17-03.44.48:517][980]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.48:535][980]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-03.44.48:535][980]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 43 +[2025.06.17-03.44.48:535][980]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=43 +[2025.06.17-03.44.48:537][980]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=43 +[2025.06.17-03.44.48:543][980]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.17-03.44.48:581][981]LogPlayLevel: Display: Destroying online subsystem :Context_54 +[2025.06.17-03.44.50:262][161]LogSlate: Window 'PawnSkills' being destroyed +[2025.06.17-03.44.50:268][161]LogSlate: Window 'PawnSkills' being destroyed +[2025.06.17-03.44.50:271][161]LogWorld: UWorld::CleanupWorld for World_19, bSessionEnded=true, bCleanupResources=true +[2025.06.17-03.44.50:273][161]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-03.44.50:340][161]LogUObjectHash: Compacting FUObjectHashTables data took 0.77ms +[2025.06.17-03.44.52:163][379]LogSlate: Window 'Open Asset' being destroyed +[2025.06.17-03.44.52:169][379]LogSlate: Window 'Open Asset' being destroyed +[2025.06.17-03.48.02:079][973]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3293.640137 +[2025.06.17-03.48.03:081][976]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.48.03:081][976]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3294.308105, Update Interval: 319.763184 +[2025.06.17-03.54.03:450][ 57]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3655.016113 +[2025.06.17-03.54.04:449][ 60]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-03.54.04:449][ 60]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3655.681641, Update Interval: 359.620972 +[2025.06.17-03.55.01:281][231]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-04.00.34:156][229]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4045.725830 +[2025.06.17-04.00.35:156][232]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.00.35:156][232]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4046.393799, Update Interval: 359.384735 +[2025.06.17-04.07.25:535][463]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4457.104492 +[2025.06.17-04.07.26:535][466]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.07.26:535][466]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4457.772949, Update Interval: 358.432556 +[2025.06.17-04.14.08:234][671]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4859.810059 +[2025.06.17-04.14.09:234][674]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.14.09:234][674]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4860.477051, Update Interval: 346.599945 +[2025.06.17-04.20.36:604][836]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5248.184082 +[2025.06.17-04.20.37:603][839]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.20.37:603][839]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5248.852539, Update Interval: 326.356995 +[2025.06.17-04.26.53:974][968]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5625.560547 +[2025.06.17-04.26.54:975][971]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.26.54:975][971]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5626.227539, Update Interval: 340.333862 +[2025.06.17-04.33.27:338][148]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6018.922363 +[2025.06.17-04.33.28:338][151]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.33.28:338][151]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6019.589355, Update Interval: 310.737640 +[2025.06.17-04.39.09:371][174]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6360.948242 +[2025.06.17-04.39.10:371][177]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.39.10:371][177]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6361.614746, Update Interval: 319.737549 +[2025.06.17-04.45.23:072][295]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6734.645508 +[2025.06.17-04.45.24:073][298]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.45.24:073][298]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6735.312012, Update Interval: 301.891541 +[2025.06.17-04.51.08:771][332]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7080.346680 +[2025.06.17-04.51.09:770][335]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.51.09:771][335]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7081.013184, Update Interval: 359.218109 +[2025.06.17-04.51.39:439][424]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.17-04.51.39:439][424]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.72 RefreshExpires: 1.554e+07 +[2025.06.17-04.51.40:442][427]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.17-06.51.39 Remaining: 7200.32] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15544899.06] State: Valid +[2025.06.17-04.55.01:284][ 30]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-04.57.45:813][523]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7477.396484 +[2025.06.17-04.57.46:814][526]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-04.57.46:814][526]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7478.063477, Update Interval: 321.605286 +[2025.06.17-05.03.50:176][616]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7841.763672 +[2025.06.17-05.03.51:177][619]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.03.51:177][619]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7842.431641, Update Interval: 313.520935 +[2025.06.17-05.09.42:546][673]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8194.134766 +[2025.06.17-05.09.43:545][676]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.09.43:545][676]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8194.799805, Update Interval: 358.201843 +[2025.06.17-05.16.27:583][888]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8599.151367 +[2025.06.17-05.16.28:581][891]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.16.28:581][891]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8599.815430, Update Interval: 332.474731 +[2025.06.17-05.22.40:953][ 8]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8972.529297 +[2025.06.17-05.22.41:956][ 11]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.22.41:956][ 11]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8973.197266, Update Interval: 347.566772 +[2025.06.17-05.29.14:989][190]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 9366.564453 +[2025.06.17-05.29.15:989][193]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.29.15:989][193]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9367.233398, Update Interval: 336.986603 +[2025.06.17-05.35.38:694][341]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 9750.262695 +[2025.06.17-05.35.39:694][344]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.35.39:694][344]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9750.930664, Update Interval: 309.990540 +[2025.06.17-05.41.22:062][371]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 10093.633789 +[2025.06.17-05.41.23:062][374]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.41.23:062][374]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 10094.300781, Update Interval: 313.768127 +[2025.06.17-05.47.36:770][495]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 10468.332031 +[2025.06.17-05.47.37:771][498]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.47.37:771][498]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 10468.999023, Update Interval: 342.965179 +[2025.06.17-05.53.51:133][618]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 10842.689453 +[2025.06.17-05.53.52:132][621]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-05.53.52:132][621]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 10843.357422, Update Interval: 334.033020 +[2025.06.17-05.55.01:285][829]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-06.00.00:839][727]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11212.394531 +[2025.06.17-06.00.01:837][730]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.00.01:837][730]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11213.059570, Update Interval: 311.664185 +[2025.06.17-06.06.03:862][816]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11575.435547 +[2025.06.17-06.06.04:862][819]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.06.04:863][819]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11576.101562, Update Interval: 302.860199 +[2025.06.17-06.12.04:890][899]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11936.455078 +[2025.06.17-06.12.05:889][902]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.12.05:889][902]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11937.122070, Update Interval: 308.304077 +[2025.06.17-06.17.46:928][925]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12278.486328 +[2025.06.17-06.17.47:928][928]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.17.47:928][928]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12279.152344, Update Interval: 328.387695 +[2025.06.17-06.23.53:296][ 24]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12644.847656 +[2025.06.17-06.23.54:300][ 27]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.23.54:300][ 27]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12645.514648, Update Interval: 329.739075 +[2025.06.17-06.29.58:671][120]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 13010.220703 +[2025.06.17-06.29.59:669][123]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.29.59:670][123]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 13010.886719, Update Interval: 355.153046 +[2025.06.17-06.36.52:705][362]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 13424.229492 +[2025.06.17-06.36.53:705][365]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.36.53:705][365]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 13424.898438, Update Interval: 352.668243 +[2025.06.17-06.43.33:078][563]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 13824.604492 +[2025.06.17-06.43.34:079][566]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.43.34:079][566]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 13825.273438, Update Interval: 316.013062 +[2025.06.17-06.49.35:783][651]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14187.317383 +[2025.06.17-06.49.36:785][654]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.49.36:785][654]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14187.985352, Update Interval: 335.842163 +[2025.06.17-06.50.00:454][725]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.17-06.50.00:454][725]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.99 RefreshExpires: 1.554e+07 +[2025.06.17-06.50.01:455][728]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.17-08.50.00 Remaining: 7200.44] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15537798.06] State: Valid +[2025.06.17-06.55.01:288][628]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-06.56.08:163][828]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14579.694336 +[2025.06.17-06.56.09:165][831]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-06.56.09:165][831]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14580.361328, Update Interval: 317.910095 +[2025.06.17-07.02.20:542][945]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14952.079102 +[2025.06.17-07.02.21:541][948]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-07.02.21:541][949]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14952.749023, Update Interval: 347.975098 +[2025.06.17-07.08.43:583][ 94]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 15335.139648 +[2025.06.17-07.08.44:584][ 97]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-07.08.44:584][ 97]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 15335.806641, Update Interval: 354.828949 +[2025.06.17-07.15.29:289][311]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 15740.828125 +[2025.06.17-07.15.30:290][314]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-07.15.30:290][314]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 15741.494141, Update Interval: 335.430145 +[2025.06.17-07.18.43:851][922]LogUObjectHash: Compacting FUObjectHashTables data took 3.14ms +[2025.06.17-07.18.43:899][922]LogStall: Shutdown... +[2025.06.17-07.18.43:899][922]LogStall: Shutdown complete. +[2025.06.17-07.18.44:051][922]LogWorld: UWorld::CleanupWorld for World_5, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:051][922]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:058][922]LogWorld: UWorld::CleanupWorld for World_4, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:058][922]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:143][922]LogWorld: UWorld::CleanupWorld for World_9, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:143][922]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:149][922]LogWorld: UWorld::CleanupWorld for World_8, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:149][922]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:279][922]LogWorld: UWorld::CleanupWorld for World_11, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:279][922]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:380][922]LogSlate: Window 'Call Stack' being destroyed +[2025.06.17-07.18.44:391][922]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.17-07.18.44:394][922]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-07.18.44:649][922]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.17-07.18.44:668][922]Cmd: QUIT_EDITOR +[2025.06.17-07.18.44:668][922]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.17-07.18.44:675][923]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.17-07.18.44:675][923]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.17-07.18.44:675][923]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.17-07.18.44:677][923]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:677][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:677][923]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.17-07.18.44:688][923]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.17-07.18.44:691][923]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.17-07.18.44:696][923]LogWorld: UWorld::CleanupWorld for World_3, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:696][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:699][923]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:699][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:701][923]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:701][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:704][923]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:704][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:706][923]LogWorld: UWorld::CleanupWorld for World_16, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:706][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:708][923]LogWorld: UWorld::CleanupWorld for World_17, bSessionEnded=true, bCleanupResources=true +[2025.06.17-07.18.44:708][923]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-07.18.44:714][923]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.17-07.18.44:716][923]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.17-07.18.44:717][923]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.17-07.18.44:717][923]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.17-07.18.45:132][923]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.17-07.18.45:132][923]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.17-07.18.45:132][923]LogAudio: Display: Audio Device unregistered from world 'TopDownMap'. +[2025.06.17-07.18.45:132][923]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.17-07.18.45:133][923]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-07.18.45:135][923]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-07.18.45:143][923]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.17-07.18.45:143][923]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.17-07.18.45:149][923]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.17-07.18.45:150][923]LogExit: Preparing to exit. +[2025.06.17-07.18.45:184][923]LogUObjectHash: Compacting FUObjectHashTables data took 1.03ms +[2025.06.17-07.18.45:186][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:186][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:187][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:188][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.45:190][923]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-07.18.46:176][923]LogEditorDataStorage: Deinitializing +[2025.06.17-07.18.46:320][923]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.17-07.18.46:358][923]LogExit: Editor shut down +[2025.06.17-07.18.46:362][923]LogExit: Transaction tracking system shut down diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.54.06.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.54.06.log new file mode 100644 index 0000000..9202be1 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.54.06.log @@ -0,0 +1,1525 @@ +Log file open, 06/18/25 06:47:56 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=41220) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 1.516590 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-02EBFF3F448A72904F57C18D226B2C6E + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogConfig: Display: Loading VulkanPC ini files took 0.04 seconds +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogConfig: Display: Loading Android ini files took 0.06 seconds +LogConfig: Display: Loading IOS ini files took 0.06 seconds +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogConfig: Display: Loading Mac ini files took 0.06 seconds +LogConfig: Display: Loading VisionOS ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading Linux ini files took 0.08 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.08 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.49ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.18ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.17-22.47.57:424][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.17-22.47.57:424][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.17-22.47.57:424][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.17-22.47.57:425][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.17-22.47.57:425][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.17-22.47.57:425][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.17-22.47.57:425][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.17-22.47.57:426][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.17-22.47.57:426][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.17-22.47.57:426][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.17-22.47.57:427][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.17-22.47.57:427][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.17-22.47.57:427][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.17-22.47.57:427][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.17-22.47.57:428][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.17-22.47.57:430][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.17-22.47.57:431][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.17-22.47.57:437][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.17-22.47.57:437][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.17-22.47.57:437][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.17-22.47.57:437][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.17-22.47.57:437][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.17-22.47.57:438][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.17-22.47.57:440][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.17-22.47.57:441][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.17-22.47.57:442][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.17-22.47.57:443][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.17-22.47.57:444][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.17-22.47.57:446][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.17-22.47.57:447][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.17-22.47.57:453][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.47.57:453][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.47.57:453][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.47.57:466][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.17-22.47.57:466][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.47.57:730][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.47.57:730][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.47.57:730][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.17-22.47.57:730][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.47.57:730][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.47.57:745][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.17-22.47.57:745][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.47.57:745][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.47.57:853][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.47.57:853][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.47.57:853][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.47.57:854][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.47.57:854][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.47.57:961][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.47.57:961][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.47.57:961][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.47.57:961][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.47.57:961][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.47.57:966][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.17-22.47.57:966][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.17-22.47.57:966][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.47.57:966][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.17-22.47.57:966][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.17-22.47.57:966][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.17-22.47.57:966][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.17-22.47.57:966][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.17-22.47.57:967][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.17-22.47.57:967][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.47.57:967][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.17-22.47.57:967][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.17-22.47.57:967][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.17-22.47.57:967][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.17-22.47.57:968][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.17-22.47.57:968][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.47.57:968][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.17-22.47.57:968][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.17-22.47.57:968][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.17-22.47.57:968][ 0]LogInit: Computer: T +[2025.06.17-22.47.57:968][ 0]LogInit: User: 99714 +[2025.06.17-22.47.57:968][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.17-22.47.57:968][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.17-22.47.58:273][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.17-22.47.58:273][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.17-22.47.58:273][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.17-22.47.58:273][ 0]LogMemory: Process Physical Memory: 614.93 MB used, 628.30 MB peak +[2025.06.17-22.47.58:273][ 0]LogMemory: Process Virtual Memory: 663.51 MB used, 663.51 MB peak +[2025.06.17-22.47.58:274][ 0]LogMemory: Physical Memory: 26410.72 MB used, 6098.59 MB free, 32509.30 MB total +[2025.06.17-22.47.58:274][ 0]LogMemory: Virtual Memory: 36411.48 MB used, 16577.82 MB free, 52989.30 MB total +[2025.06.17-22.47.58:274][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.17-22.47.58:280][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.17-22.47.58:303][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.17-22.47.58:303][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.17-22.47.58:304][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.17-22.47.58:305][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.17-22.47.58:318][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.17-22.47.58:623][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.17-22.47.58:623][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.47.58:623][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.17-22.47.58:623][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.17-22.47.58:624][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.47.58:650][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.17-22.47.58:650][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.17-22.47.58:916][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.47.58:916][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.47.58:916][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.47.58:916][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.47.58:916][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.47.58:917][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.17-22.47.58:918][ 0]LogWindows: Attached monitors: +[2025.06.17-22.47.58:918][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.17-22.47.58:918][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.17-22.47.58:918][ 0]LogWindows: Found 2 attached monitors. +[2025.06.17-22.47.58:918][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.17-22.47.58:918][ 0]LogRHI: RHI Adapter Info: +[2025.06.17-22.47.58:918][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.17-22.47.58:918][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.47.58:919][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.17-22.47.58:919][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.17-22.47.58:919][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.17-22.47.59:011][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.17-22.47.59:011][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.17-22.47.59:075][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.17-22.47.59:075][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.17-22.47.59:075][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.17-22.47.59:075][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.17-22.47.59:075][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.17-22.47.59:076][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.17-22.47.59:077][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.17-22.47.59:147][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000057E50C62300) +[2025.06.17-22.47.59:147][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000057E50C62580) +[2025.06.17-22.47.59:147][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000057E50C62800) +[2025.06.17-22.47.59:147][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.17-22.47.59:147][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.17-22.47.59:148][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.17-22.47.59:148][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.17-22.47.59:148][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.17-22.47.59:167][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.17-22.47.59:172][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.17-22.47.59:197][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.17-22.47.59:198][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.17-22.47.59:260][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.17-22.47.59:260][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.17-22.47.59:260][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.17-22.47.59:260][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.17-22.47.59:260][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.17-22.47.59:260][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.17-22.47.59:260][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.17-22.47.59:266][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.17-22.47.59:272][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.17-22.47.59:314][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.17-22.47.59:314][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.17-22.47.59:315][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.17-22.47.59:349][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.17-22.47.59:349][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.17-22.47.59:381][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.17-22.47.59:381][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.17-22.47.59:381][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.17-22.47.59:381][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.17-22.47.59:415][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.17-22.47.59:415][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.17-22.47.59:415][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.17-22.47.59:447][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.17-22.47.59:447][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.17-22.47.59:447][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.17-22.47.59:447][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.17-22.47.59:479][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.17-22.47.59:479][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.17-22.47.59:517][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.17-22.47.59:517][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.17-22.47.59:517][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.17-22.47.59:517][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.17-22.47.59:517][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.17-22.47.59:664][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.17-22.47.59:672][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.17-22.47.59:673][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.17-22.47.59:673][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.17-22.47.59:673][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.17-22.47.59:677][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.17-22.47.59:678][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.17-22.47.59:678][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.17-22.47.59:678][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.47.59:678][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.17-22.47.59:733][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.17-22.47.59:733][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.47.59:733][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.17-22.47.59:736][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.17-22.47.59:736][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.47.59:737][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.47.59:739][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.17-22.47.59:739][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 38044 --child-id Zen_38044_Startup' +[2025.06.17-22.48.00:230][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.17-22.48.00:230][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.493 seconds +[2025.06.17-22.48.00:231][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.17-22.48.00:239][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.17-22.48.00:239][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.08ms. RandomReadSpeed=337.37MBs, RandomWriteSpeed=200.61MBs. Assigned SpeedClass 'Local' +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.17-22.48.00:240][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.17-22.48.00:241][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/38044/). +[2025.06.17-22.48.00:241][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/610AE49544F0B02B7C99DE9BE153A49F/'. +[2025.06.17-22.48.00:241][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.17-22.48.00:241][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.17-22.48.00:243][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.17-22.48.00:243][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.17-22.48.00:345][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.17-22.48.01:864][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.17-22.48.01:866][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.17-22.48.01:869][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.48.01:869][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.48.01:873][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.48.01:873][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.48.01:873][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.48.01:873][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.48.01:900][ 0]LogAssetRegistry: FAssetRegistry took 0.0030 seconds to start up +[2025.06.17-22.48.01:902][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.17-22.48.01:906][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.17-22.48.02:092][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.48.02:095][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.17-22.48.02:095][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.17-22.48.02:095][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.17-22.48.02:108][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.17-22.48.02:108][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.17-22.48.02:126][ 0]LogDeviceProfileManager: Active device profile: [0000057E6E4F7000][0000057E52DCC000 66] WindowsEditor +[2025.06.17-22.48.02:127][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.17-22.48.02:128][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.17-22.48.02:135][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.17-22.48.02:135][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.17-22.48.02:189][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:190][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:191][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.17-22.48.02:191][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:191][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:191][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.17-22.48.02:191][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:192][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.17-22.48.02:193][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.17-22.48.02:194][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:195][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.17-22.48.02:196][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.48.02:197][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.17-22.48.02:198][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.48.02:428][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.17-22.48.02:428][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.17-22.48.02:428][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.17-22.48.02:428][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.17-22.48.02:428][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.17-22.48.02:996][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.56ms +[2025.06.17-22.48.03:005][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.17-22.48.03:023][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.44ms +[2025.06.17-22.48.03:054][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.17-22.48.03:056][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 1.20ms +[2025.06.17-22.48.03:327][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.17-22.48.03:327][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.17-22.48.03:388][ 0]LogSlate: Border +[2025.06.17-22.48.03:389][ 0]LogSlate: BreadcrumbButton +[2025.06.17-22.48.03:389][ 0]LogSlate: Brushes.Title +[2025.06.17-22.48.03:389][ 0]LogSlate: Default +[2025.06.17-22.48.03:389][ 0]LogSlate: Icons.Save +[2025.06.17-22.48.03:389][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.17-22.48.03:389][ 0]LogSlate: ListView +[2025.06.17-22.48.03:389][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.17-22.48.03:389][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.17-22.48.03:389][ 0]LogSlate: TableView.DarkRow +[2025.06.17-22.48.03:389][ 0]LogSlate: TableView.Row +[2025.06.17-22.48.03:389][ 0]LogSlate: TreeView +[2025.06.17-22.48.03:622][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.17-22.48.03:625][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 2.508 ms +[2025.06.17-22.48.03:652][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.46ms +[2025.06.17-22.48.03:706][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.17-22.48.03:706][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.17-22.48.03:706][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.17-22.48.03:706][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.17-22.48.04:475][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.17-22.48.04:488][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.17-22.48.04:489][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.17-22.48.04:489][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:50838'. +[2025.06.17-22.48.04:494][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.195' to multicast group '230.0.0.1:6666' +[2025.06.17-22.48.04:578][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.17-22.48.04:578][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.17-22.48.04:579][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.17-22.48.04:583][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.17-22.48.04:874][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.17-22.48.04:876][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.17-22.48.04:893][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.17-22.48.05:462][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.44ms +[2025.06.17-22.48.05:679][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 1AFB6308596E4A2C800000000000FA00 | Instance: 1BFB067E4B7088513ADAE28F1E2D389D (T-38044). +[2025.06.17-22.48.06:521][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.17-22.48.07:039][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.48.07:039][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.48.07:230][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.17-22.48.07:328][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.17-22.48.07:379][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.48.07:379][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.48.07:671][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.17-22.48.07:672][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.17-22.48.07:672][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.17-22.48.07:673][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.17-22.48.07:673][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.17-22.48.07:674][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.17-22.48.07:676][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.17-22.48.07:676][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.17-22.48.07:677][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.17-22.48.07:677][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.17-22.48.07:678][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.17-22.48.07:679][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.17-22.48.07:679][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.17-22.48.07:680][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.17-22.48.07:680][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.17-22.48.07:682][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.17-22.48.07:682][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.17-22.48.07:683][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.17-22.48.07:685][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.17-22.48.07:685][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.17-22.48.07:686][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.17-22.48.07:686][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.17-22.48.07:687][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.17-22.48.07:687][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.17-22.48.07:689][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.17-22.48.07:689][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.17-22.48.07:690][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.17-22.48.07:690][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.17-22.48.07:691][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.17-22.48.07:691][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.17-22.48.07:692][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.17-22.48.07:693][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.17-22.48.07:694][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.17-22.48.07:694][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.17-22.48.07:696][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.17-22.48.08:047][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.48.08:112][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.55ms +[2025.06.17-22.48.08:143][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.17-22.48.08:196][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.48.09:168][ 0]LogCollectionManager: Loaded 0 collections in 0.000901 seconds +[2025.06.17-22.48.09:170][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.17-22.48.09:170][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.17-22.48.09:172][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.17-22.48.09:283][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.48.09:283][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.48.09:285][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.48.09:285][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.48.09:285][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.48.09:285][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.48.09:309][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.48.09:309][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.48.09:321][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-17T22:48:09.321Z using C +[2025.06.17-22.48.09:322][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.17-22.48.09:323][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.48.09:324][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.17-22.48.09:331][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.17-22.48.09:333][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.17-22.48.09:333][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.17-22.48.09:334][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000367 +[2025.06.17-22.48.09:334][ 0]LogFab: Display: Logging in using persist +[2025.06.17-22.48.09:371][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.17-22.48.09:372][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.17-22.48.09:380][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.17-22.48.09:380][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.17-22.48.09:466][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:466][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:466][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:466][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:466][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:467][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:467][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:467][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:467][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:467][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:471][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.17-22.48.09:478][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:494][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:499][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.48.09:501][ 0]LogEngine: Initializing Engine... +[2025.06.17-22.48.09:506][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.17-22.48.09:507][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.17-22.48.09:580][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.17-22.48.09:605][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.17-22.48.09:626][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.17-22.48.09:626][ 0]LogInit: Texture streaming: Enabled +[2025.06.17-22.48.09:658][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.17-22.48.09:668][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.17-22.48.09:692][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.17-22.48.09:692][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-22.48.09:693][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-22.48.09:693][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-22.48.09:720][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-22.48.09:771][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-22.48.09:772][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-22.48.09:775][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-22.48.09:775][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-22.48.09:775][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.17-22.48.09:775][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.17-22.48.09:777][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.17-22.48.09:777][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.17-22.48.09:777][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.17-22.48.09:777][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.17-22.48.09:777][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.17-22.48.09:794][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.17-22.48.09:799][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.17-22.48.09:799][ 0]LogInit: Transaction tracking system initialized +[2025.06.17-22.48.09:833][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.17-22.48.10:008][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.51ms +[2025.06.17-22.48.10:010][ 0]LocalizationService: Localization service is disabled +[2025.06.17-22.48.10:042][ 0]LogTimingProfiler: Initialize +[2025.06.17-22.48.10:045][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.17-22.48.10:045][ 0]LoadingProfiler: Initialize +[2025.06.17-22.48.10:045][ 0]LoadingProfiler: OnSessionChanged +[2025.06.17-22.48.10:045][ 0]LogNetworkingProfiler: Initialize +[2025.06.17-22.48.10:046][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.17-22.48.10:046][ 0]LogMemoryProfiler: Initialize +[2025.06.17-22.48.10:046][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.17-22.48.10:332][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.17-22.48.10:389][ 0]LogPython: Using Python 3.11.8 +[2025.06.17-22.48.10:421][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.17-22.48.10:421][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.17-22.48.11:154][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.17-22.48.11:172][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.17-22.48.11:277][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.17-22.48.11:529][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.17-22.48.11:529][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.17-22.48.11:603][ 0]LogEditorDataStorage: Initializing +[2025.06.17-22.48.11:605][ 0]LogEditorDataStorage: Initialized +[2025.06.17-22.48.11:633][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.17-22.48.11:645][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.17-22.48.11:650][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.48.11:651][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 17.051 +[2025.06.17-22.48.11:653][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-22.48.11:656][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.48.11:656][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.48.11:673][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.17-22.48.12:375][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.17-22.48.13:439][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.17-22.48.13:450][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.93s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.17-22.48.13:464][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-22.48.13:466][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.61ms +[2025.06.17-22.48.13:479][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.17-22.48.13:479][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.17-22.48.13:481][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-22.48.13:481][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-22.48.13:482][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-22.48.13:556][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.17-22.48.13:570][ 0]LogWorldPartition: Display: WorldPartition initialize took 89.201 ms +[2025.06.17-22.48.13:579][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-22.48.13:588][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms +[2025.06.17-22.48.13:589][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-22.48.13:589][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.679ms to complete. +[2025.06.17-22.48.13:598][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 18.998 +[2025.06.17-22.48.13:754][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.17-22.48.13:816][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.48.13:848][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.48.13:886][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.48.13:921][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.48.13:929][ 0]LogSlate: Took 0.000561 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.17-22.48.13:948][ 0]LogSlate: Took 0.000822 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.17-22.48.13:956][ 0]LogSlate: Took 0.007195 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.17-22.48.14:051][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:052][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.17-22.48.14:053][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:054][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.17-22.48.14:055][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:056][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:057][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:059][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:060][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:061][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.17-22.48.14:061][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:062][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:063][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:063][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.17-22.48.14:064][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:064][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:065][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:065][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:066][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.48.14:066][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.17-22.48.14:264][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:265][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:265][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:265][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:265][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:265][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:266][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:266][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.48.14:391][ 0]LogSlate: Took 0.000636 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.17-22.48.14:393][ 0]LogSlate: Took 0.000565 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.17-22.48.14:420][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.17-22.48.14:425][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.48.14:426][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.17-22.48.14:426][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.48.14:474][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.48.14:476][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.48.14:477][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.48.14:477][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.17-22.48.14:477][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.48.14:502][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.48.14:502][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.48.14:544][ 0]LogSlate: Took 0.000461 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-22.48.14:685][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 102.87 ms. Compile time 25.56 ms, link time 77.18 ms. +[2025.06.17-22.48.14:746][ 0]LogStall: Startup... +[2025.06.17-22.48.14:748][ 0]LogStall: Startup complete. +[2025.06.17-22.48.14:760][ 0]LogLoad: (Engine Initialization) Total time: 20.16 seconds +[2025.06.17-22.48.14:902][ 0]LogAssetRegistry: AssetRegistryGather time 0.1084s: AssetDataDiscovery 0.0589s, AssetDataGather 0.0103s, StoreResults 0.0392s. Wall time 13.0050s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7503. NumUncachedFiles 4. + BackgroundTickInterruptions 0. +[2025.06.17-22.48.14:921][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.17-22.48.14:923][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.17-22.48.14:930][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.17-22.48.14:930][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.17-22.48.14:977][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.48.14:984][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.17-22.48.15:053][ 0]LogPython: registering + +[2025.06.17-22.48.15:062][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 77.472 ms +[2025.06.17-22.48.15:170][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.248603 seconds (Found 7482 uncontrolled assets) +[2025.06.17-22.48.16:662][ 6]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.930585 +[2025.06.17-22.48.16:663][ 6]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.17-22.48.16:667][ 6]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.328444 +[2025.06.17-22.48.17:285][ 10]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.48.17:527][ 39]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.184529 +[2025.06.17-22.48.17:528][ 39]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.17-22.48.17:528][ 39]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.184529, Update Interval: 317.997986 +[2025.06.17-22.48.17:801][ 69]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.18-00.48.16 Remaining: 7200.86] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15480302.06] State: Valid +[2025.06.17-22.48.17:809][ 70]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.17-22.48.18:100][102]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.17-22.48.18:100][102]LogFab: Display: User logged in +[2025.06.17-22.48.18:100][102]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.17-22.48.18:337][127]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-RPCrWCXEVE61rEIX8Bnpzw-0ECQnjE2bUGFnBs7AZo8NQ] +[2025.06.17-22.48.18:930][195]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.17-22.48.18:931][195]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.48.19:093][195]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-22.48.19:094][195]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-22.48.19:094][195]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-22.48.19:094][195]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-22.48.19:104][195]LogWorldPartition: Display: WorldPartition initialize took 10.643 ms (total: 99.845 ms) +[2025.06.17-22.48.19:110][195]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.17-22.48.19:111][195]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-22.48.19:130][195]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.48.19:131][195]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.48.19:131][195]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.17-22.48.19:147][195]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-22.48.19:152][195]LogUObjectHash: Compacting FUObjectHashTables data took 0.40ms +[2025.06.17-22.48.19:153][195]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.48.19:154][195]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.48.19:154][195]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-22.48.19:162][195]LogUObjectHash: Compacting FUObjectHashTables data took 0.39ms +[2025.06.17-22.48.19:171][195]LogUObjectHash: Compacting FUObjectHashTables data took 0.33ms +[2025.06.17-22.48.19:184][195]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.17-22.48.19:184][195]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-22.48.19:186][195]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-22.48.19:186][195]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-22.48.19:186][195]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-22.48.19:192][195]LogWorldPartition: Display: WorldPartition initialize took 6.049 ms (total: 105.895 ms) +[2025.06.17-22.48.19:220][195]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-22.48.19:234][195]LogUObjectHash: Compacting FUObjectHashTables data took 0.57ms +[2025.06.17-22.48.19:239][195]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-22.48.19:240][195]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.489ms to complete. +[2025.06.17-22.48.24:995][792]LogSlate: External Image Picker: DecompressImage failed +[2025.06.17-22.48.25:104][792]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.17-22.48.29:168][246]LogSlate: Took 0.000170 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-22.50.02:696][267]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.17-22.52.30:795][120]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish +[2025.06.17-22.52.30:795][120]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.17-22.52.30:830][120]LogStreaming: Display: FlushAsyncLoading(407): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.52.31:615][120]LogSlate: Took 0.000827 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.17-22.53.35:874][164]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 326.539062 +[2025.06.17-22.53.36:874][167]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.17-22.53.36:874][167]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 327.206329, Update Interval: 343.159271 +[2025.06.17-22.53.54:859][676]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.53.54:859][676]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.53.54:920][676]LogUObjectHash: Compacting FUObjectHashTables data took 0.99ms +[2025.06.17-22.53.59:894][168]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-22.54.02:311][168]LogSlate: Window 'Save Content' being destroyed +[2025.06.17-22.54.02:367][168]LogStall: Shutdown... +[2025.06.17-22.54.02:367][168]LogStall: Shutdown complete. +[2025.06.17-22.54.02:401][168]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.17-22.54.02:487][168]Cmd: QUIT_EDITOR +[2025.06.17-22.54.02:487][169]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.17-22.54.02:492][169]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.17-22.54.02:492][169]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.17-22.54.02:492][169]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.17-22.54.02:494][169]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.54.02:494][169]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.54.02:494][169]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-22.54.02:502][169]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.17-22.54.02:505][169]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.17-22.54.02:507][169]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.54.02:508][169]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.54.02:514][169]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.17-22.54.02:516][169]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.17-22.54.02:516][169]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.17-22.54.02:516][169]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.17-22.54.02:518][169]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.17-22.54.02:518][169]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.17-22.54.02:518][169]LogAudio: Display: Audio Device unregistered from world 'Dabaza'. +[2025.06.17-22.54.02:518][169]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.17-22.54.02:520][169]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-22.54.02:523][169]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-22.54.02:529][169]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.17-22.54.02:529][169]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.17-22.54.02:530][169]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.17-22.54.02:531][169]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.54.02:542][169]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.17-22.54.02:544][169]LogExit: Preparing to exit. +[2025.06.17-22.54.02:575][169]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-22.54.02:579][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:579][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:579][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:579][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:580][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:581][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:581][169]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.02:581][169]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.54.03:822][169]LogEditorDataStorage: Deinitializing +[2025.06.17-22.54.04:003][169]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.17-22.54.04:033][169]LogExit: Editor shut down +[2025.06.17-22.54.04:035][169]LogExit: Transaction tracking system shut down +[2025.06.17-22.54.04:224][169]LogExit: Object subsystem successfully closed. +[2025.06.17-22.54.04:341][169]LogShaderCompilers: Display: Shaders left to compile 0 +[2025.06.17-22.54.04:945][169]LogMemoryProfiler: Shutdown +[2025.06.17-22.54.04:945][169]LogNetworkingProfiler: Shutdown +[2025.06.17-22.54.04:946][169]LoadingProfiler: Shutdown +[2025.06.17-22.54.04:946][169]LogTimingProfiler: Shutdown +[2025.06.17-22.54.05:326][169]LogChaosDD: Chaos Debug Draw Shutdown +[2025.06.17-22.54.05:327][169]LogStudioTelemetry: Display: Shutdown StudioTelemetry Module +[2025.06.17-22.54.05:327][169]LogNFORDenoise: NFORDenoise function shutting down +[2025.06.17-22.54.05:329][169]RenderDocPlugin: plugin has been unloaded. +[2025.06.17-22.54.05:366][169]LogHttp: Warning: [FHttpManager::Shutdown] Unbinding delegates for 1 outstanding Http Requests: +[2025.06.17-22.54.05:366][169]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7B8CEEEA54-426E-3C34-807E-0FA7A16D4BA0%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.5.4-40574608%2B%2B%2BUE5%2BRelease-5.5&UserID=2be356334d8ddcb1f8647180700f1260%7C7c48bd058d394a9b9827119f4ec4df20%7C391af7e5-d023-4a12-bd83-a39d12e0079d&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[2] status=Processing +[2025.06.17-22.54.06:440][169]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] +[2025.06.17-22.54.06:446][169]LogXGEController: Cleaning working directory: C:/Users/99714/AppData/Local/Temp/UnrealXGEWorkingDir/ +[2025.06.17-22.54.06:451][169]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +[2025.06.17-22.54.06:451][169]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +[2025.06.17-22.54.06:451][169]LogPakFile: Destroying PakPlatformFile +[2025.06.17-22.54.06:612][169]LogD3D12RHI: ~FD3D12DynamicRHI +[2025.06.17-22.54.06:652][169]LogExit: Exiting. +[2025.06.17-22.54.06:667][169]Log file closed, 06/18/25 06:54:06 diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.56.34.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.56.34.log new file mode 100644 index 0000000..cd5305b --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.56.34.log @@ -0,0 +1,1451 @@ +Log file open, 06/18/25 06:54:29 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=8224) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.617061 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-594C20F2417D706D4BFCB3BEB8B7ABE5 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading Mac ini files took 0.06 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogConfig: Display: Loading IOS ini files took 0.06 seconds +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading Android ini files took 0.06 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogConfig: Display: Loading VisionOS ini files took 0.07 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.07 seconds +LogConfig: Display: Loading Linux ini files took 0.07 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.50ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.13ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.16ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.14ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.17ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.11ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.17-22.54.30:484][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.17-22.54.30:485][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.17-22.54.30:485][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.17-22.54.30:485][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.17-22.54.30:485][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.17-22.54.30:485][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.17-22.54.30:485][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.17-22.54.30:486][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.17-22.54.30:486][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.17-22.54.30:486][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.17-22.54.30:486][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.17-22.54.30:486][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.17-22.54.30:487][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.17-22.54.30:487][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.17-22.54.30:489][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.17-22.54.30:490][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.17-22.54.30:490][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.17-22.54.30:490][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.17-22.54.30:490][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.17-22.54.30:490][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.17-22.54.30:494][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.17-22.54.30:494][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.17-22.54.30:494][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.17-22.54.30:494][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.17-22.54.30:494][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.17-22.54.30:494][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.17-22.54.30:494][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.17-22.54.30:495][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.17-22.54.30:496][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.17-22.54.30:497][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.17-22.54.30:498][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.17-22.54.30:499][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.17-22.54.30:500][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.17-22.54.30:501][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.17-22.54.30:504][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.54.30:504][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.54.30:504][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.54.30:512][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.17-22.54.30:512][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.54.30:736][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.54.30:736][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.54.30:736][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.17-22.54.30:737][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.54.30:737][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.54.30:750][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.17-22.54.30:750][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.54.30:750][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.54.30:858][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.54.30:858][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.54.30:858][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.54.30:858][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.54.30:858][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.54.30:966][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.54.30:966][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.54.30:966][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.54.30:967][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.54.30:967][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.54.30:967][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.17-22.54.30:967][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.17-22.54.30:967][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.54.30:967][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.17-22.54.30:967][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.17-22.54.30:967][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.17-22.54.30:967][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.17-22.54.30:967][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.17-22.54.30:967][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.17-22.54.30:968][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.54.30:968][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.17-22.54.30:968][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.17-22.54.30:968][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.17-22.54.30:968][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.17-22.54.30:968][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.17-22.54.30:968][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.54.30:968][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.17-22.54.30:968][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.17-22.54.30:968][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.17-22.54.30:968][ 0]LogInit: Computer: T +[2025.06.17-22.54.30:968][ 0]LogInit: User: 99714 +[2025.06.17-22.54.30:969][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.17-22.54.30:969][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.17-22.54.31:247][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.17-22.54.31:247][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.17-22.54.31:247][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.17-22.54.31:247][ 0]LogMemory: Process Physical Memory: 615.93 MB used, 629.20 MB peak +[2025.06.17-22.54.31:247][ 0]LogMemory: Process Virtual Memory: 662.50 MB used, 662.50 MB peak +[2025.06.17-22.54.31:247][ 0]LogMemory: Physical Memory: 23069.14 MB used, 9440.16 MB free, 32509.30 MB total +[2025.06.17-22.54.31:247][ 0]LogMemory: Virtual Memory: 38199.38 MB used, 14789.92 MB free, 52989.30 MB total +[2025.06.17-22.54.31:247][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.17-22.54.31:253][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.17-22.54.31:270][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.17-22.54.31:270][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.17-22.54.31:271][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.17-22.54.31:271][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.17-22.54.31:278][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.17-22.54.31:535][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.17-22.54.31:535][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.54.31:535][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.17-22.54.31:535][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.17-22.54.31:535][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.54.31:555][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.17-22.54.31:555][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.17-22.54.31:754][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.54.31:754][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.54.31:754][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.54.31:754][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.54.31:754][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.54.31:754][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.17-22.54.31:755][ 0]LogWindows: Attached monitors: +[2025.06.17-22.54.31:755][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.17-22.54.31:755][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.17-22.54.31:755][ 0]LogWindows: Found 2 attached monitors. +[2025.06.17-22.54.31:755][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.17-22.54.31:755][ 0]LogRHI: RHI Adapter Info: +[2025.06.17-22.54.31:755][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.17-22.54.31:755][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.54.31:755][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.17-22.54.31:755][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.17-22.54.31:755][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.17-22.54.31:833][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.17-22.54.31:834][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.17-22.54.31:885][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.17-22.54.31:885][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.17-22.54.31:885][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.17-22.54.31:885][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.17-22.54.31:886][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.17-22.54.31:887][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.17-22.54.31:946][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000043B21C32300) +[2025.06.17-22.54.31:946][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000043B21C32580) +[2025.06.17-22.54.31:948][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000043B21C32800) +[2025.06.17-22.54.31:948][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.17-22.54.31:948][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.17-22.54.31:948][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.17-22.54.31:948][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.17-22.54.31:948][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.17-22.54.31:957][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.17-22.54.31:960][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.17-22.54.31:980][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.17-22.54.31:980][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.17-22.54.32:035][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.17-22.54.32:035][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.17-22.54.32:035][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.17-22.54.32:035][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.17-22.54.32:035][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.17-22.54.32:035][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.17-22.54.32:035][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.17-22.54.32:040][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.17-22.54.32:044][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.17-22.54.32:083][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.17-22.54.32:084][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.17-22.54.32:084][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.17-22.54.32:084][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.17-22.54.32:115][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.17-22.54.32:115][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.17-22.54.32:145][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.17-22.54.32:146][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.17-22.54.32:146][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.17-22.54.32:146][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.17-22.54.32:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.17-22.54.32:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.17-22.54.32:176][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.17-22.54.32:206][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.17-22.54.32:206][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.17-22.54.32:206][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.17-22.54.32:206][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.17-22.54.32:236][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.17-22.54.32:236][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.17-22.54.32:272][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.17-22.54.32:272][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.17-22.54.32:272][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.17-22.54.32:272][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.17-22.54.32:272][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.17-22.54.32:398][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.17-22.54.32:405][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.17-22.54.32:406][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.17-22.54.32:406][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.17-22.54.32:406][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.17-22.54.32:408][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.17-22.54.32:409][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.17-22.54.32:409][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.17-22.54.32:409][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.54.32:409][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.17-22.54.32:462][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.17-22.54.32:462][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.54.32:462][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.17-22.54.32:465][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.17-22.54.32:465][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.54.32:465][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.54.32:466][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.17-22.54.32:466][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 26064 --child-id Zen_26064_Startup' +[2025.06.17-22.54.32:677][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.17-22.54.32:677][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.212 seconds +[2025.06.17-22.54.32:678][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.17-22.54.32:687][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.17-22.54.32:687][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=356.49MBs, RandomWriteSpeed=196.22MBs. Assigned SpeedClass 'Local' +[2025.06.17-22.54.32:687][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.17-22.54.32:687][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.17-22.54.32:687][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.17-22.54.32:688][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.17-22.54.32:688][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.17-22.54.32:688][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.17-22.54.32:688][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.17-22.54.32:688][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/26064/). +[2025.06.17-22.54.32:688][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/7080191F45F47BD51498FF89E2A0ACD8/'. +[2025.06.17-22.54.32:688][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.17-22.54.32:688][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.17-22.54.32:690][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.17-22.54.32:691][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.17-22.54.32:922][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.17-22.54.34:292][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.17-22.54.34:308][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.17-22.54.34:310][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.54.34:310][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.54.34:314][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.54.34:314][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.54.34:314][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.54.34:314][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.54.34:340][ 0]LogAssetRegistry: FAssetRegistry took 0.0027 seconds to start up +[2025.06.17-22.54.34:341][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.17-22.54.34:346][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.17-22.54.34:481][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.54.34:483][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.17-22.54.34:483][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.17-22.54.34:483][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.17-22.54.34:497][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.17-22.54.34:497][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.17-22.54.34:517][ 0]LogDeviceProfileManager: Active device profile: [0000043B3F625E00][0000043B23DCC000 66] WindowsEditor +[2025.06.17-22.54.34:517][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.17-22.54.34:517][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.17-22.54.34:526][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.17-22.54.34:526][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.17-22.54.34:557][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.17-22.54.34:559][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:560][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:560][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:560][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.17-22.54.34:561][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:562][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:562][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.54.34:563][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.17-22.54.34:564][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.54.34:566][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.17-22.54.34:566][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:566][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.54.34:566][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.17-22.54.34:566][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.54.34:770][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.17-22.54.34:770][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.17-22.54.34:770][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.17-22.54.34:770][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.17-22.54.34:770][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.17-22.54.35:027][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.17-22.54.35:044][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.17-22.54.35:054][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.17-22.54.35:055][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.17-22.54.35:219][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.17-22.54.35:219][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.17-22.54.35:263][ 0]LogSlate: Border +[2025.06.17-22.54.35:263][ 0]LogSlate: BreadcrumbButton +[2025.06.17-22.54.35:263][ 0]LogSlate: Brushes.Title +[2025.06.17-22.54.35:263][ 0]LogSlate: Default +[2025.06.17-22.54.35:263][ 0]LogSlate: Icons.Save +[2025.06.17-22.54.35:263][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.17-22.54.35:263][ 0]LogSlate: ListView +[2025.06.17-22.54.35:263][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.17-22.54.35:263][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.17-22.54.35:263][ 0]LogSlate: TableView.DarkRow +[2025.06.17-22.54.35:263][ 0]LogSlate: TableView.Row +[2025.06.17-22.54.35:263][ 0]LogSlate: TreeView +[2025.06.17-22.54.35:446][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.17-22.54.35:447][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.502 ms +[2025.06.17-22.54.35:464][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.17-22.54.35:468][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.17-22.54.35:511][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.17-22.54.35:511][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.17-22.54.35:511][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.17-22.54.35:511][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.17-22.54.35:675][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.17-22.54.36:231][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.17-22.54.36:240][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.17-22.54.36:240][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.17-22.54.36:240][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:61832'. +[2025.06.17-22.54.36:244][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.195' to multicast group '230.0.0.1:6666' +[2025.06.17-22.54.36:290][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.17-22.54.36:290][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.17-22.54.36:290][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.17-22.54.36:290][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.17-22.54.36:468][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: A4FC63089EED46F38000000000002600 | Instance: EEC280314AB6CCF604C3E79E640AC31C (T-26064). +[2025.06.17-22.54.36:790][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.17-22.54.36:790][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.17-22.54.36:802][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.17-22.54.37:515][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.17-22.54.37:873][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.54.37:915][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.54.38:390][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.54.38:390][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.54.38:414][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.17-22.54.38:451][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.44ms +[2025.06.17-22.54.38:468][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-22.54.39:053][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.17-22.54.39:099][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.54.39:099][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.54.39:249][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.17-22.54.39:250][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.17-22.54.39:250][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.17-22.54.39:252][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.17-22.54.39:253][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.17-22.54.39:253][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.17-22.54.39:254][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.17-22.54.39:254][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.17-22.54.39:254][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.17-22.54.39:255][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.17-22.54.39:255][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.17-22.54.39:256][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.17-22.54.39:256][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.17-22.54.39:257][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.17-22.54.39:258][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.17-22.54.39:258][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.17-22.54.39:259][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.17-22.54.39:271][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.17-22.54.39:271][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.17-22.54.39:272][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.17-22.54.39:277][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.17-22.54.39:279][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.17-22.54.39:280][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.17-22.54.39:280][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.17-22.54.39:281][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.17-22.54.39:283][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.17-22.54.39:283][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.17-22.54.39:284][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.17-22.54.39:284][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.17-22.54.39:285][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.17-22.54.39:286][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.17-22.54.39:286][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.17-22.54.39:287][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.17-22.54.39:287][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.17-22.54.39:288][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.17-22.54.39:380][ 0]LogCollectionManager: Loaded 0 collections in 0.000633 seconds +[2025.06.17-22.54.39:382][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.17-22.54.39:384][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.17-22.54.39:386][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.17-22.54.39:478][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.54.39:478][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.54.39:479][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.54.39:479][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.54.39:479][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.54.39:479][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.54.39:501][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.54.39:501][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.54.39:512][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-17T22:54:39.512Z using C +[2025.06.17-22.54.39:512][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.17-22.54.39:512][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.54.39:512][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.17-22.54.39:516][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.17-22.54.39:516][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.17-22.54.39:516][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.17-22.54.39:516][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000147 +[2025.06.17-22.54.39:516][ 0]LogFab: Display: Logging in using persist +[2025.06.17-22.54.39:547][ 0]LogUObjectArray: 52515 objects as part of root set at end of initial load. +[2025.06.17-22.54.39:547][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.17-22.54.39:556][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.17-22.54.39:556][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.17-22.54.39:628][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:628][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:631][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.17-22.54.39:639][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:654][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:657][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.54.39:658][ 0]LogEngine: Initializing Engine... +[2025.06.17-22.54.39:661][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.17-22.54.39:661][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.17-22.54.39:721][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.17-22.54.39:740][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.17-22.54.39:753][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.17-22.54.39:753][ 0]LogInit: Texture streaming: Enabled +[2025.06.17-22.54.39:773][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.17-22.54.39:781][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.17-22.54.39:798][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.17-22.54.39:798][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.17-22.54.39:798][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.17-22.54.39:798][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-22.54.39:800][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-22.54.39:800][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-22.54.39:800][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-22.54.39:800][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-22.54.39:800][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-22.54.39:815][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-22.54.39:854][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-22.54.39:855][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-22.54.39:856][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-22.54.39:856][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-22.54.39:857][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.17-22.54.39:857][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.17-22.54.39:859][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.17-22.54.39:859][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.17-22.54.39:859][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.17-22.54.39:859][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.17-22.54.39:859][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.17-22.54.39:869][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.17-22.54.39:872][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.17-22.54.39:872][ 0]LogInit: Transaction tracking system initialized +[2025.06.17-22.54.39:891][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.17-22.54.40:000][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.48ms +[2025.06.17-22.54.40:002][ 0]LocalizationService: Localization service is disabled +[2025.06.17-22.54.40:024][ 0]LogTimingProfiler: Initialize +[2025.06.17-22.54.40:024][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.17-22.54.40:024][ 0]LoadingProfiler: Initialize +[2025.06.17-22.54.40:024][ 0]LoadingProfiler: OnSessionChanged +[2025.06.17-22.54.40:024][ 0]LogNetworkingProfiler: Initialize +[2025.06.17-22.54.40:025][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.17-22.54.40:025][ 0]LogMemoryProfiler: Initialize +[2025.06.17-22.54.40:025][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.17-22.54.40:273][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.17-22.54.40:318][ 0]LogPython: Using Python 3.11.8 +[2025.06.17-22.54.41:019][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.17-22.54.41:029][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.17-22.54.41:066][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.17-22.54.41:066][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.17-22.54.41:083][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.17-22.54.41:083][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.17-22.54.41:127][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.17-22.54.41:309][ 0]LogEditorDataStorage: Initializing +[2025.06.17-22.54.41:309][ 0]LogEditorDataStorage: Initialized +[2025.06.17-22.54.41:343][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.17-22.54.41:345][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.54.41:345][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 12.366 +[2025.06.17-22.54.41:345][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-22.54.41:346][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.54.41:346][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.54.41:364][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.17-22.54.41:386][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.17-22.54.42:094][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.17-22.54.43:823][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.17-22.54.43:834][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.32s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.17-22.54.43:845][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-22.54.43:847][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.42ms +[2025.06.17-22.54.43:947][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.17-22.54.43:962][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.17-22.54.43:962][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-22.54.43:963][ 0]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-22.54.43:963][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-22.54.43:963][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-22.54.43:981][ 0]LogWorldPartition: Display: WorldPartition initialize took 17.887 ms +[2025.06.17-22.54.44:000][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SK_Mannequin) ... +[2025.06.17-22.54.44:047][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-22.54.44:058][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.37ms +[2025.06.17-22.54.44:058][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-22.54.44:059][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.509ms to complete. +[2025.06.17-22.54.44:065][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 15.086 +[2025.06.17-22.54.44:207][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.17-22.54.44:255][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.54.44:284][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.54.44:317][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.54.44:348][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.54.44:355][ 0]LogSlate: Took 0.000650 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.17-22.54.44:373][ 0]LogSlate: Took 0.000680 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.17-22.54.44:376][ 0]LogSlate: Took 0.002700 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.17-22.54.44:452][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:453][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.17-22.54.44:454][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:454][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.17-22.54.44:455][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:456][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:457][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:457][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:460][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:460][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.17-22.54.44:461][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:461][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:462][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:463][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.17-22.54.44:463][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:464][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:464][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:465][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:465][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.54.44:465][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.17-22.54.44:599][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:599][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:599][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:600][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:600][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:600][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:601][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.44:601][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.54.45:069][ 0]LogSlate: External Image Picker: DecompressImage failed +[2025.06.17-22.54.45:186][ 0]LogStall: Startup... +[2025.06.17-22.54.45:188][ 0]LogStall: Startup complete. +[2025.06.17-22.54.45:197][ 0]LogLoad: (Engine Initialization) Total time: 16.22 seconds +[2025.06.17-22.54.45:338][ 0]LogAssetRegistry: AssetRegistryGather time 0.0883s: AssetDataDiscovery 0.0450s, AssetDataGather 0.0063s, StoreResults 0.0370s. Wall time 11.0000s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7507. NumUncachedFiles 0. + BackgroundTickInterruptions 0. +[2025.06.17-22.54.45:356][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.17-22.54.45:358][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.17-22.54.45:359][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.17-22.54.45:359][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.17-22.54.45:375][ 0]LogSlate: Took 0.000579 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.17-22.54.45:377][ 0]LogSlate: Took 0.000470 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.17-22.54.45:411][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.17-22.54.45:411][ 0]LogStreaming: Display: FlushAsyncLoading(354): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.54.45:415][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.54.45:415][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.17-22.54.45:415][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.54.45:452][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.54.45:452][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.54.45:453][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.54.45:453][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.17-22.54.45:453][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.54.45:484][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.54.45:486][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.54.45:515][ 0]LogSlate: Took 0.000570 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-22.54.45:534][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.54.45:536][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.17-22.54.45:558][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.20198 seconds (Found 7482 uncontrolled assets) +[2025.06.17-22.54.45:579][ 0]LogPython: registering + +[2025.06.17-22.54.45:584][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 48.650 ms +[2025.06.17-22.54.45:675][ 1]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 85.88 ms. Compile time 23.34 ms, link time 62.41 ms. +[2025.06.17-22.54.46:257][ 3]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.17-22.54.46:610][ 4]LogSlate: External Image Picker: DecompressImage failed +[2025.06.17-22.54.46:754][ 5]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.200086 +[2025.06.17-22.54.46:756][ 5]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.17-22.54.46:757][ 5]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.238066 +[2025.06.17-22.54.47:445][ 10]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.54.47:859][ 13]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.330610 +[2025.06.17-22.54.47:860][ 13]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.17-22.54.47:860][ 13]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.330610, Update Interval: 345.576355 +[2025.06.17-22.54.48:156][ 45]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.18-00.54.47 Remaining: 7200.20] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15479911.06] State: Valid +[2025.06.17-22.54.48:163][ 46]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.17-22.54.48:428][ 69]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.17-22.54.48:428][ 69]LogFab: Display: User logged in +[2025.06.17-22.54.48:443][ 69]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.17-22.54.48:696][ 98]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-kCgSPSgrQU-2eg2_G3q0_Q-letj8wCDOkGKNyZmTqtoSg] +[2025.06.17-22.54.52:444][512]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish +[2025.06.17-22.54.52:444][512]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.17-22.54.52:466][512]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.54.53:162][512]LogSlate: Took 0.000950 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.17-22.55.23:522][686]LogSlate: Window 'Pick Parent Class' being destroyed +[2025.06.17-22.55.23:533][686]LogContentBrowser: Deferred new asset file creation: NewBlueprint +[2025.06.17-22.55.23:538][686]LogContentBrowser: Creating deferred item: NewBlueprint +[2025.06.17-22.55.23:548][687]LogContentBrowser: Renaming the item being created (Deferred Item: NewBlueprint). +[2025.06.17-22.55.23:901][711]LogContentBrowser: Attempting asset rename: NewBlueprint -> NewBlueprint +[2025.06.17-22.55.23:907][711]LogContentBrowser: End creating deferred item NewBlueprint +[2025.06.17-22.55.24:840][808]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Maps/NewBlueprint.NewBlueprint_C +[2025.06.17-22.55.24:840][808]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Maps/NewBlueprint.NewBlueprint_C +[2025.06.17-22.55.24:841][808]LogActorFactory: Actor Factory spawned Blueprint /Game/Maps/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.NewBlueprint_C_0 +[2025.06.17-22.55.24:842][808]LogActorFactory: Actor Factory spawned Blueprint /Game/Maps/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.NewBlueprint_C_0 +[2025.06.17-22.55.25:108][828]LogUObjectHash: Compacting FUObjectHashTables data took 0.91ms +[2025.06.17-22.55.25:115][828]LogEditorActor: Deleted 0 Actors (0.049 secs) +[2025.06.17-22.55.25:120][828]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Maps/NewBlueprint.NewBlueprint_C +[2025.06.17-22.55.25:120][828]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Maps/NewBlueprint.NewBlueprint_C +[2025.06.17-22.55.25:125][828]LogActorFactory: Actor Factory spawned Blueprint /Game/Maps/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.NewBlueprint_C_UAID_5811220C528A297302_1527794151 +[2025.06.17-22.55.25:125][828]LogActorFactory: Actor Factory spawned Blueprint /Game/Maps/NewBlueprint.NewBlueprint as actor: NewBlueprint_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.NewBlueprint_C_UAID_5811220C528A297302_1527794151 +[2025.06.17-22.55.33:412][797]Cmd: DELETE +[2025.06.17-22.55.33:412][797]Cmd: ACTOR DELETE +[2025.06.17-22.55.33:420][797]LogEditorActor: Deleted Actor: NewBlueprint_C +[2025.06.17-22.55.33:434][797]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.17-22.55.33:436][797]LogEditorActor: Deleted 1 Actors (0.020 secs) +[2025.06.17-22.55.36:008][ 76]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.17-22.55.43:735][916]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.17-22.55.45:955][154]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Characters/BP_DeepFish.BP_DeepFish_C +[2025.06.17-22.55.45:955][154]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Characters/BP_DeepFish.BP_DeepFish_C +[2025.06.17-22.55.45:956][154]LogActorFactory: Actor Factory spawned Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish as actor: BP_DeepFish_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_0 +[2025.06.17-22.55.45:958][154]LogActorFactory: Actor Factory spawned Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish as actor: BP_DeepFish_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_0 +[2025.06.17-22.55.46:690][220]LogUObjectHash: Compacting FUObjectHashTables data took 0.69ms +[2025.06.17-22.55.46:692][220]LogEditorActor: Deleted 0 Actors (0.018 secs) +[2025.06.17-22.55.46:697][220]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Characters/BP_DeepFish.BP_DeepFish_C +[2025.06.17-22.55.46:697][220]LogActorFactory: Actor Factory attempting to spawn BlueprintGeneratedClass /Game/Characters/BP_DeepFish.BP_DeepFish_C +[2025.06.17-22.55.46:701][220]LogActorFactory: Actor Factory spawned Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish as actor: BP_DeepFish_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A297302_1549370152 +[2025.06.17-22.55.46:703][220]LogActorFactory: Actor Factory spawned Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish as actor: BP_DeepFish_C /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A297302_1549370152 +[2025.06.17-22.55.56:524][364]Cmd: DELETE +[2025.06.17-22.55.56:524][364]Cmd: ACTOR DELETE +[2025.06.17-22.55.56:525][364]LogEditorActor: Deleted Actor: BP_DeepFish_C +[2025.06.17-22.55.56:539][364]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.17-22.55.56:541][364]LogEditorActor: Deleted 1 Actors (0.017 secs) +[2025.06.17-22.56.34:776][351]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. diff --git a/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.58.45.log b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.58.45.log new file mode 100644 index 0000000..a3c26ae --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish-backup-2025.06.17-22.58.45.log @@ -0,0 +1,1470 @@ +Log file open, 06/18/25 06:57:05 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=19696) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.672507 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-3595CB4B47853C2D400D99B51F6C2DBE + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading Mac ini files took 0.06 seconds +LogConfig: Display: Loading IOS ini files took 0.07 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.07 seconds +LogConfig: Display: Loading Android ini files took 0.07 seconds +LogConfig: Display: Loading TVOS ini files took 0.07 seconds +LogConfig: Display: Loading Unix ini files took 0.07 seconds +LogConfig: Display: Loading VisionOS ini files took 0.07 seconds +LogConfig: Display: Loading Linux ini files took 0.07 seconds +LogConfig: Display: Loading Windows ini files took 0.07 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.08 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.49ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.10ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.17-22.57.06:333][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.17-22.57.06:333][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.17-22.57.06:333][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.17-22.57.06:333][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.17-22.57.06:333][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.17-22.57.06:333][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.17-22.57.06:334][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.17-22.57.06:334][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.17-22.57.06:334][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.17-22.57.06:334][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.17-22.57.06:334][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.17-22.57.06:335][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.17-22.57.06:335][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.17-22.57.06:336][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.17-22.57.06:340][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.17-22.57.06:340][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.17-22.57.06:342][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.17-22.57.06:343][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.17-22.57.06:344][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.17-22.57.06:345][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.17-22.57.06:346][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.17-22.57.06:347][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.17-22.57.06:350][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.57.06:350][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.57.06:350][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.57.06:359][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.17-22.57.06:359][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.57.06:586][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.57.06:586][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.57.06:586][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.17-22.57.06:586][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.57.06:586][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.57.06:600][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.17-22.57.06:601][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.57.06:601][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.57.06:705][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.57.06:705][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.57.06:705][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.57.06:705][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.57.06:705][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.17-22.57.06:813][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.17-22.57.06:813][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.57.06:813][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.17-22.57.06:813][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.17-22.57.06:814][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.17-22.57.06:814][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.17-22.57.06:814][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.17-22.57.06:814][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.17-22.57.06:814][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.57.06:828][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.17-22.57.06:828][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.17-22.57.06:829][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.17-22.57.06:829][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.17-22.57.06:829][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.17-22.57.06:829][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.17-22.57.06:829][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.17-22.57.06:829][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.17-22.57.06:829][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.17-22.57.06:829][ 0]LogInit: Computer: T +[2025.06.17-22.57.06:829][ 0]LogInit: User: 99714 +[2025.06.17-22.57.06:829][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.17-22.57.06:829][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.17-22.57.07:139][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.17-22.57.07:139][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.17-22.57.07:139][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.17-22.57.07:139][ 0]LogMemory: Process Physical Memory: 618.29 MB used, 631.29 MB peak +[2025.06.17-22.57.07:140][ 0]LogMemory: Process Virtual Memory: 662.18 MB used, 662.18 MB peak +[2025.06.17-22.57.07:140][ 0]LogMemory: Physical Memory: 22706.33 MB used, 9802.97 MB free, 32509.30 MB total +[2025.06.17-22.57.07:140][ 0]LogMemory: Virtual Memory: 38293.39 MB used, 14695.92 MB free, 52989.30 MB total +[2025.06.17-22.57.07:140][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.17-22.57.07:146][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.17-22.57.07:171][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.17-22.57.07:171][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.17-22.57.07:171][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.17-22.57.07:172][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.17-22.57.07:174][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.17-22.57.07:441][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.17-22.57.07:441][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.57.07:441][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.17-22.57.07:441][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.17-22.57.07:441][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.57.07:462][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.17-22.57.07:462][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.17-22.57.07:637][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.17-22.57.07:637][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.17-22.57.07:637][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.17-22.57.07:637][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.17-22.57.07:637][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.17-22.57.07:637][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.17-22.57.07:638][ 0]LogWindows: Attached monitors: +[2025.06.17-22.57.07:638][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.17-22.57.07:638][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.17-22.57.07:638][ 0]LogWindows: Found 2 attached monitors. +[2025.06.17-22.57.07:638][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.17-22.57.07:638][ 0]LogRHI: RHI Adapter Info: +[2025.06.17-22.57.07:638][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.17-22.57.07:638][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.17-22.57.07:638][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.17-22.57.07:638][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.17-22.57.07:638][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.17-22.57.07:720][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.17-22.57.07:720][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.17-22.57.07:773][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.17-22.57.07:773][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.17-22.57.07:773][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.17-22.57.07:773][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.17-22.57.07:773][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.17-22.57.07:773][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.17-22.57.07:774][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.17-22.57.07:775][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.17-22.57.07:836][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000A7E9FC02300) +[2025.06.17-22.57.07:836][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000A7E9FC02580) +[2025.06.17-22.57.07:838][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000A7E9FC02800) +[2025.06.17-22.57.07:838][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.17-22.57.07:838][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.17-22.57.07:839][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.17-22.57.07:839][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.17-22.57.07:839][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.17-22.57.07:848][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.17-22.57.07:851][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.17-22.57.07:871][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.17-22.57.07:871][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.17-22.57.07:932][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.17-22.57.07:933][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.17-22.57.07:933][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.17-22.57.07:933][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.17-22.57.07:933][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.17-22.57.07:933][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.17-22.57.07:933][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.17-22.57.07:938][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.17-22.57.07:943][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.17-22.57.07:985][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.17-22.57.07:985][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.17-22.57.07:986][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.17-22.57.08:021][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.17-22.57.08:021][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.17-22.57.08:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.17-22.57.08:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.17-22.57.08:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.17-22.57.08:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.17-22.57.08:085][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.17-22.57.08:085][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.17-22.57.08:085][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.17-22.57.08:116][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.17-22.57.08:116][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.17-22.57.08:116][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.17-22.57.08:116][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.17-22.57.08:148][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.17-22.57.08:148][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.17-22.57.08:184][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.17-22.57.08:184][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.17-22.57.08:184][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.17-22.57.08:184][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.17-22.57.08:184][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.17-22.57.08:307][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.17-22.57.08:313][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.17-22.57.08:314][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.17-22.57.08:314][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.17-22.57.08:315][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.17-22.57.08:316][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.17-22.57.08:317][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.17-22.57.08:317][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.17-22.57.08:317][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.57.08:317][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.17-22.57.08:367][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.17-22.57.08:367][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.17-22.57.08:367][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.17-22.57.08:368][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.17-22.57.08:368][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.57.08:368][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.17-22.57.08:368][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.17-22.57.08:368][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 2916 --child-id Zen_2916_Startup' +[2025.06.17-22.57.08:575][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.17-22.57.08:575][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.207 seconds +[2025.06.17-22.57.08:576][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.17-22.57.08:584][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.17-22.57.08:584][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=318.58MBs, RandomWriteSpeed=193.06MBs. Assigned SpeedClass 'Local' +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.17-22.57.08:586][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.17-22.57.08:587][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.17-22.57.08:587][ 0]LogShaderCompilers: Guid format shader working directory is 19 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/2916/). +[2025.06.17-22.57.08:587][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/C2477348419EC2DE33EADDB2F7A297BE/'. +[2025.06.17-22.57.08:587][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.17-22.57.08:587][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.17-22.57.08:588][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.17-22.57.08:589][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.17-22.57.08:925][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.17-22.57.10:129][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.17-22.57.10:129][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.17-22.57.10:130][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.57.10:131][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.57.10:133][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.57.10:133][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.57.10:133][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.57.10:133][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.57.10:157][ 0]LogAssetRegistry: FAssetRegistry took 0.0027 seconds to start up +[2025.06.17-22.57.10:158][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.17-22.57.10:162][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.17-22.57.10:298][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.57.10:300][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.17-22.57.10:300][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.17-22.57.10:300][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.17-22.57.10:313][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.17-22.57.10:314][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.17-22.57.10:332][ 0]LogDeviceProfileManager: Active device profile: [00000A7EBD645A00][00000A7EBD82C000 66] WindowsEditor +[2025.06.17-22.57.10:332][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.17-22.57.10:333][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.17-22.57.10:340][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.17-22.57.10:340][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.17-22.57.10:372][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:373][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:374][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.17-22.57.10:375][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.57.10:376][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:377][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.17-22.57.10:378][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.17-22.57.10:379][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.17-22.57.10:380][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.17-22.57.10:381][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.17-22.57.10:580][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.17-22.57.10:580][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.17-22.57.10:580][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.17-22.57.10:580][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.17-22.57.10:580][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.17-22.57.10:827][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-22.57.10:843][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.17-22.57.10:854][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.17-22.57.10:855][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-22.57.11:005][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.17-22.57.11:005][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.17-22.57.11:047][ 0]LogSlate: Border +[2025.06.17-22.57.11:047][ 0]LogSlate: BreadcrumbButton +[2025.06.17-22.57.11:047][ 0]LogSlate: Brushes.Title +[2025.06.17-22.57.11:047][ 0]LogSlate: Default +[2025.06.17-22.57.11:047][ 0]LogSlate: Icons.Save +[2025.06.17-22.57.11:047][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.17-22.57.11:047][ 0]LogSlate: ListView +[2025.06.17-22.57.11:047][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.17-22.57.11:047][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.17-22.57.11:047][ 0]LogSlate: TableView.DarkRow +[2025.06.17-22.57.11:047][ 0]LogSlate: TableView.Row +[2025.06.17-22.57.11:047][ 0]LogSlate: TreeView +[2025.06.17-22.57.11:216][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.17-22.57.11:218][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.17-22.57.11:219][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.369 ms +[2025.06.17-22.57.11:239][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.17-22.57.11:279][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.17-22.57.11:279][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.17-22.57.11:279][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.17-22.57.11:280][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.17-22.57.11:404][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.17-22.57.11:481][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 40FD6308A0DA43E78000000000008300 | Instance: 2ADBC4A940DBD1D57A556FB309CD6627 (T-2916). +[2025.06.17-22.57.12:085][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.17-22.57.12:085][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.17-22.57.12:086][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.17-22.57.12:086][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.17-22.57.12:312][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.17-22.57.12:312][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.17-22.57.12:325][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.17-22.57.12:721][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.17-22.57.12:731][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.17-22.57.12:731][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.17-22.57.12:731][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:50235'. +[2025.06.17-22.57.12:736][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.195' to multicast group '230.0.0.1:6666' +[2025.06.17-22.57.13:332][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.17-22.57.13:677][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.17-22.57.13:695][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.17-22.57.14:136][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.17-22.57.14:152][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.57.14:152][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.57.14:201][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.17-22.57.14:229][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.57.14:229][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.17-22.57.14:409][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.17-22.57.14:409][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.17-22.57.14:410][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.17-22.57.14:410][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.17-22.57.14:411][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.17-22.57.14:411][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.17-22.57.14:412][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.17-22.57.14:412][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.17-22.57.14:413][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.17-22.57.14:413][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.17-22.57.14:414][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.17-22.57.14:414][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.17-22.57.14:415][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.17-22.57.14:416][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.17-22.57.14:416][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.17-22.57.14:417][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.17-22.57.14:417][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.17-22.57.14:420][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.17-22.57.14:420][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.17-22.57.14:421][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.17-22.57.14:422][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.17-22.57.14:423][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.17-22.57.14:423][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.17-22.57.14:424][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.17-22.57.14:424][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.17-22.57.14:425][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.17-22.57.14:425][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.17-22.57.14:426][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.17-22.57.14:427][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.17-22.57.14:427][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.17-22.57.14:428][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.17-22.57.14:428][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.17-22.57.14:429][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.17-22.57.14:429][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.17-22.57.14:431][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.17-22.57.14:579][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.57.14:711][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.57.15:054][ 0]LogCollectionManager: Loaded 0 collections in 0.000678 seconds +[2025.06.17-22.57.15:055][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.17-22.57.15:057][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.17-22.57.15:060][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.17-22.57.15:211][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.17-22.57.15:211][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.17-22.57.15:214][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.17-22.57.15:215][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.17-22.57.15:215][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.17-22.57.15:215][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.17-22.57.15:239][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.17-22.57.15:239][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.17-22.57.15:251][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-17T22:57:15.251Z using C +[2025.06.17-22.57.15:252][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.17-22.57.15:252][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.57.15:252][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.17-22.57.15:256][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.17-22.57.15:257][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.17-22.57.15:257][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.17-22.57.15:257][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000380 +[2025.06.17-22.57.15:257][ 0]LogFab: Display: Logging in using persist +[2025.06.17-22.57.15:309][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.17-22.57.15:309][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.17-22.57.15:322][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.17-22.57.15:322][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.17-22.57.15:394][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:394][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:395][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:395][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:395][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:396][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.17-22.57.15:406][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:422][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:424][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:425][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.17-22.57.15:425][ 0]LogEngine: Initializing Engine... +[2025.06.17-22.57.15:427][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.17-22.57.15:428][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.17-22.57.15:491][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.17-22.57.15:510][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.17-22.57.15:521][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.17-22.57.15:521][ 0]LogInit: Texture streaming: Enabled +[2025.06.17-22.57.15:543][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.17-22.57.15:551][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.17-22.57.15:568][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.17-22.57.15:568][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.17-22.57.15:570][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.17-22.57.15:570][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.17-22.57.15:570][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.17-22.57.15:570][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.17-22.57.15:570][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.17-22.57.15:571][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.17-22.57.15:571][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.17-22.57.15:586][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.17-22.57.15:628][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.17-22.57.15:629][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.17-22.57.15:630][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.17-22.57.15:630][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.17-22.57.15:630][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.17-22.57.15:630][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.17-22.57.15:632][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.17-22.57.15:632][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.17-22.57.15:632][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.17-22.57.15:632][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.17-22.57.15:633][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.17-22.57.15:643][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.17-22.57.15:646][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.17-22.57.15:646][ 0]LogInit: Transaction tracking system initialized +[2025.06.17-22.57.15:668][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.17-22.57.15:780][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.46ms +[2025.06.17-22.57.15:782][ 0]LocalizationService: Localization service is disabled +[2025.06.17-22.57.15:802][ 0]LogTimingProfiler: Initialize +[2025.06.17-22.57.15:803][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.17-22.57.15:803][ 0]LoadingProfiler: Initialize +[2025.06.17-22.57.15:803][ 0]LoadingProfiler: OnSessionChanged +[2025.06.17-22.57.15:803][ 0]LogNetworkingProfiler: Initialize +[2025.06.17-22.57.15:803][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.17-22.57.15:803][ 0]LogMemoryProfiler: Initialize +[2025.06.17-22.57.15:804][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.17-22.57.16:044][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.17-22.57.16:058][ 0]LogPython: Using Python 3.11.8 +[2025.06.17-22.57.16:784][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.17-22.57.16:808][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.17-22.57.16:827][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.17-22.57.16:827][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.17-22.57.16:896][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.17-22.57.17:008][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.17-22.57.17:008][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.17-22.57.17:075][ 0]LogEditorDataStorage: Initializing +[2025.06.17-22.57.17:076][ 0]LogEditorDataStorage: Initialized +[2025.06.17-22.57.17:106][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.17-22.57.17:108][ 0]SourceControl: Revision control is disabled +[2025.06.17-22.57.17:108][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 12.349 +[2025.06.17-22.57.17:108][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.17-22.57.17:109][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.57.17:109][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.57.17:127][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.17-22.57.17:182][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.17-22.57.17:897][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.17-22.57.19:717][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.17-22.57.19:729][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.40s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.17-22.57.19:740][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.17-22.57.19:742][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms +[2025.06.17-22.57.19:844][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.17-22.57.19:858][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.17-22.57.19:858][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.17-22.57.19:860][ 0]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.17-22.57.19:860][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.17-22.57.19:860][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.17-22.57.19:878][ 0]LogWorldPartition: Display: WorldPartition initialize took 18.233 ms +[2025.06.17-22.57.19:896][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SK_Mannequin) ... +[2025.06.17-22.57.19:953][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Deep_hunter) ... +[2025.06.17-22.57.19:970][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.17-22.57.19:982][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.37ms +[2025.06.17-22.57.19:982][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.17-22.57.19:983][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.501ms to complete. +[2025.06.17-22.57.19:988][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 15.229 +[2025.06.17-22.57.20:120][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.17-22.57.20:172][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.57.20:203][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.57.20:234][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.57.20:264][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.17-22.57.20:273][ 0]LogSlate: Took 0.000718 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.17-22.57.20:291][ 0]LogSlate: Took 0.000668 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.17-22.57.20:293][ 0]LogSlate: Took 0.002663 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.17-22.57.20:363][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:364][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.17-22.57.20:365][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:365][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.17-22.57.20:366][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:366][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:367][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:368][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:370][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:370][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.17-22.57.20:371][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:372][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:372][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:373][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.17-22.57.20:373][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:374][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:375][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:375][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:375][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.17-22.57.20:376][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.17-22.57.20:494][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:494][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:494][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:496][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:496][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:496][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:496][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:497][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.17-22.57.20:941][ 0]LogSlate: External Image Picker: DecompressImage failed +[2025.06.17-22.57.21:066][ 0]LogStall: Startup... +[2025.06.17-22.57.21:067][ 0]LogStall: Startup complete. +[2025.06.17-22.57.21:077][ 0]LogLoad: (Engine Initialization) Total time: 16.32 seconds +[2025.06.17-22.57.21:219][ 0]LogAssetRegistry: AssetRegistryGather time 0.0839s: AssetDataDiscovery 0.0352s, AssetDataGather 0.0076s, StoreResults 0.0412s. Wall time 11.0640s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7507. NumUncachedFiles 0. + BackgroundTickInterruptions 5. +[2025.06.17-22.57.21:239][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.17-22.57.21:240][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.17-22.57.21:242][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.17-22.57.21:242][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.17-22.57.21:258][ 0]LogSlate: Took 0.000702 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.17-22.57.21:259][ 0]LogSlate: Took 0.000439 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.17-22.57.21:295][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.17-22.57.21:295][ 0]LogStreaming: Display: FlushAsyncLoading(354): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.57.21:300][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.57.21:300][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.17-22.57.21:300][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.57.21:335][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.57.21:335][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.57.21:336][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.17-22.57.21:336][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.17-22.57.21:336][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.17-22.57.21:358][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.118377 seconds (Found 7482 uncontrolled assets) +[2025.06.17-22.57.21:367][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.17-22.57.21:368][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.17-22.57.21:396][ 0]LogSlate: Took 0.000680 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.17-22.57.21:415][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.57.21:417][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.17-22.57.21:457][ 0]LogPython: registering + +[2025.06.17-22.57.21:461][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 44.347 ms +[2025.06.17-22.57.21:553][ 1]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 79.88 ms. Compile time 25.47 ms, link time 54.30 ms. +[2025.06.17-22.57.21:801][ 2]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.17-22.57.22:597][ 6]LogSlate: External Image Picker: DecompressImage failed +[2025.06.17-22.57.22:810][ 7]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.507241 +[2025.06.17-22.57.22:811][ 7]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.17-22.57.22:811][ 7]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.552727 +[2025.06.17-22.57.23:494][ 11]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.17-22.57.23:766][ 16]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.502169 +[2025.06.17-22.57.23:767][ 16]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.17-22.57.23:767][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.502169, Update Interval: 356.010010 +[2025.06.17-22.57.24:051][ 48]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.18-00.57.23 Remaining: 7200.11] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15479755.06] State: Valid +[2025.06.17-22.57.24:060][ 49]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.17-22.57.24:326][ 81]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.17-22.57.24:326][ 81]LogFab: Display: User logged in +[2025.06.17-22.57.24:326][ 81]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.17-22.57.24:586][111]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-yC0tKkRzDUq-uZR3-9UUTg-FH9WhCk0Xk-BV9GzGHxC-Q] +[2025.06.17-22.57.48:048][853]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.17-22.57.48:049][853]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.17-22.57.48:071][853]LogStreaming: Display: FlushAsyncLoading(364): 1 QueuedPackages, 0 AsyncPackages +[2025.06.17-22.57.48:845][853]LogSlate: Took 0.000910 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.17-22.58.45:641][484]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.17-22.58.45:677][484]LogStall: Shutdown... +[2025.06.17-22.58.45:678][484]LogStall: Shutdown complete. +[2025.06.17-22.58.45:706][484]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.58.45:706][484]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.58.45:751][484]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.17-22.58.45:833][484]LogUObjectHash: Compacting FUObjectHashTables data took 0.70ms +[2025.06.17-22.58.45:838][484]Cmd: QUIT_EDITOR +[2025.06.17-22.58.45:838][484]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.17-22.58.45:844][485]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.17-22.58.45:844][485]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.17-22.58.45:844][485]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.17-22.58.45:845][485]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.58.45:845][485]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.58.45:845][485]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.17-22.58.45:854][485]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.17-22.58.45:858][485]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.17-22.58.45:860][485]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.17-22.58.45:860][485]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.17-22.58.45:865][485]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.17-22.58.45:867][485]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.17-22.58.45:867][485]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.17-22.58.45:867][485]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.17-22.58.45:871][485]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.17-22.58.45:871][485]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.17-22.58.45:871][485]LogAudio: Display: Audio Device unregistered from world 'Dabaza'. +[2025.06.17-22.58.45:871][485]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.17-22.58.45:873][485]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-22.58.45:875][485]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.17-22.58.45:880][485]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.17-22.58.45:880][485]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.17-22.58.45:881][485]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.17-22.58.45:884][485]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.17-22.58.45:902][485]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.17-22.58.45:903][485]LogExit: Preparing to exit. +[2025.06.17-22.58.45:935][485]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.17-22.58.45:935][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:935][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:936][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:937][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:937][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:937][485]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.17-22.58.45:937][485]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! diff --git a/ProjectFish/Saved/Logs/ProjectFish.log b/ProjectFish/Saved/Logs/ProjectFish.log new file mode 100644 index 0000000..7f3f5f4 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish.log @@ -0,0 +1,1864 @@ +Log file open, 06/18/25 09:51:40 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=5928) +LogWindows: Enabling Tpause support +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 1985 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.606038 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-C5EB2FE047229200DF52CEBC0C0078CC + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading IOS ini files took 0.03 seconds +LogConfig: Display: Loading Mac ini files took 0.03 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.03 seconds +LogConfig: Display: Loading Android ini files took 0.03 seconds +LogConfig: Display: Loading Unix ini files took 0.04 seconds +LogConfig: Display: Loading Windows ini files took 0.04 seconds +LogConfig: Display: Loading VisionOS ini files took 0.04 seconds +LogConfig: Display: Loading TVOS ini files took 0.04 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.04 seconds +LogConfig: Display: Loading Linux ini files took 0.04 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogAssetRegistry: Display: Asset registry cache read as 38.4 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.47ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.14ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.06ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.18-01.51.41:279][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.18-01.51.41:282][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.18-01.51.41:285][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.18-01.51.41:285][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.18-01.51.41:285][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.18-01.51.41:291][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.18-01.51.41:291][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.18-01.51.41:477][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.18-01.51.41:477][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.18-01.51.41:477][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.18-01.51.41:478][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.18-01.51.41:478][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.18-01.51.41:485][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.18-01.51.41:485][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.18-01.51.41:485][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.18-01.51.41:586][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.18-01.51.41:586][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.18-01.51.41:586][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.18-01.51.41:586][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.18-01.51.41:586][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.18-01.51.41:693][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.18-01.51.41:693][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.18-01.51.41:693][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.18-01.51.41:694][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.18-01.51.41:694][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.18-01.51.41:694][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.18-01.51.41:694][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.18-01.51.41:694][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.18-01.51.41:694][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.18-01.51.41:694][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.18-01.51.41:694][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.18-01.51.41:694][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.18-01.51.41:694][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.18-01.51.41:694][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.18-01.51.41:694][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.18-01.51.41:694][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.18-01.51.41:694][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.18-01.51.41:694][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.18-01.51.41:694][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.18-01.51.41:694][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.18-01.51.41:694][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.18-01.51.41:694][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.18-01.51.41:694][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.18-01.51.41:694][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.18-01.51.41:694][ 0]LogInit: Computer: T +[2025.06.18-01.51.41:694][ 0]LogInit: User: 99714 +[2025.06.18-01.51.41:694][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.18-01.51.41:694][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.18-01.51.42:308][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.18-01.51.42:308][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.18-01.51.42:308][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.18-01.51.42:308][ 0]LogMemory: Process Physical Memory: 619.10 MB used, 632.65 MB peak +[2025.06.18-01.51.42:308][ 0]LogMemory: Process Virtual Memory: 665.37 MB used, 665.37 MB peak +[2025.06.18-01.51.42:308][ 0]LogMemory: Physical Memory: 15224.36 MB used, 17284.95 MB free, 32509.30 MB total +[2025.06.18-01.51.42:308][ 0]LogMemory: Virtual Memory: 29815.27 MB used, 23174.03 MB free, 52989.30 MB total +[2025.06.18-01.51.42:308][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.18-01.51.42:312][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.18-01.51.42:321][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.18-01.51.42:321][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.18-01.51.42:322][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.18-01.51.42:322][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.18-01.51.42:325][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.18-01.51.42:572][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.18-01.51.42:572][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.18-01.51.42:572][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.18-01.51.42:572][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.18-01.51.42:573][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.18-01.51.42:584][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.18-01.51.42:584][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.18-01.51.42:713][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.18-01.51.42:713][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.18-01.51.42:713][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.18-01.51.42:713][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.18-01.51.42:713][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.18-01.51.42:713][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.18-01.51.42:715][ 0]LogWindows: Attached monitors: +[2025.06.18-01.51.42:715][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.18-01.51.42:715][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.18-01.51.42:715][ 0]LogWindows: Found 2 attached monitors. +[2025.06.18-01.51.42:715][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.18-01.51.42:715][ 0]LogRHI: RHI Adapter Info: +[2025.06.18-01.51.42:715][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.18-01.51.42:715][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.18-01.51.42:715][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.18-01.51.42:715][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.18-01.51.42:715][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.18-01.51.42:797][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.18-01.51.42:797][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.18-01.51.42:852][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.18-01.51.42:852][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.18-01.51.42:852][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000007A45CC52300) +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000007A45CC52580) +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x000007A45CC52800) +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.18-01.51.42:910][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.18-01.51.42:910][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.18-01.51.42:917][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.18-01.51.42:920][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.18-01.51.42:928][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.18-01.51.42:928][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.18-01.51.42:953][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.18-01.51.42:953][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.18-01.51.42:953][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.18-01.51.42:953][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.18-01.51.42:953][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.18-01.51.42:953][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.18-01.51.42:953][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.18-01.51.42:954][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.18-01.51.42:954][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.18-01.51.42:981][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.18-01.51.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.18-01.51.43:000][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.18-01.51.43:017][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.18-01.51.43:017][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.18-01.51.43:017][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.18-01.51.43:017][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.18-01.51.43:036][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.18-01.51.43:036][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.18-01.51.43:036][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.18-01.51.43:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.18-01.51.43:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.18-01.51.43:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.18-01.51.43:053][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.18-01.51.43:071][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.18-01.51.43:071][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.18-01.51.43:092][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.18-01.51.43:092][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.18-01.51.43:092][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.18-01.51.43:092][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.18-01.51.43:092][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.18-01.51.43:139][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.18-01.51.43:141][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.18-01.51.43:141][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.18-01.51.43:141][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.18-01.51.43:142][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.18-01.51.43:142][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.18-01.51.43:142][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.18-01.51.43:142][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.18-01.51.43:142][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.18-01.51.43:190][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.18-01.51.43:190][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.18-01.51.43:190][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.18-01.51.43:191][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.18-01.51.43:191][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.18-01.51.43:191][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.18-01.51.43:192][ 0]LogZenServiceInstance: No current process using the data dir found, launching a new instance +[2025.06.18-01.51.43:192][ 0]LogZenServiceInstance: Display: Launching executable 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe', working dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install', data dir 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data', args '--port 8558 --data-dir "C:\Users\99714\AppData\Local\UnrealEngine\Common\Zen\Data" --http asio --gc-cache-duration-seconds 1209600 --gc-interval-seconds 21600 --gc-low-diskspace-threshold 2147483648 --quiet --http-forceloopback --owner-pid 7512 --child-id Zen_7512_Startup' +[2025.06.18-01.51.43:463][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.18-01.51.43:463][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.272 seconds +[2025.06.18-01.51.43:464][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.03ms. RandomReadSpeed=1007.68MBs, RandomWriteSpeed=173.84MBs. Assigned SpeedClass 'Local' +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.18-01.51.43:471][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.18-01.51.43:472][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.18-01.51.43:472][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.18-01.51.43:472][ 0]LogShaderCompilers: Guid format shader working directory is 19 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/7512/). +[2025.06.18-01.51.43:472][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/691D088247D67AC577A6B7AA6D991F65/'. +[2025.06.18-01.51.43:472][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.18-01.51.43:472][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.18-01.51.43:473][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.18-01.51.43:473][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.18-01.51.44:062][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.18-01.51.44:440][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.18-01.51.44:441][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.18-01.51.44:443][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.18-01.51.44:443][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.18-01.51.44:444][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.18-01.51.44:444][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.18-01.51.44:444][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.18-01.51.44:444][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.18-01.51.44:461][ 0]LogAssetRegistry: FAssetRegistry took 0.0023 seconds to start up +[2025.06.18-01.51.44:462][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.18-01.51.44:466][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.18-01.51.44:597][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.18-01.51.44:598][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.18-01.51.44:598][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.18-01.51.44:598][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.18-01.51.44:612][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.18-01.51.44:612][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.18-01.51.44:631][ 0]LogDeviceProfileManager: Active device profile: [000007A47A685200][000007A45EDCC000 66] WindowsEditor +[2025.06.18-01.51.44:631][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.18-01.51.44:632][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.18-01.51.44:635][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.18-01.51.44:635][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.18-01.51.44:663][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:663][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.18-01.51.44:663][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:664][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:665][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.18-01.51.44:666][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.18-01.51.44:667][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.18-01.51.44:809][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.18-01.51.44:809][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.18-01.51.44:809][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.18-01.51.44:809][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.18-01.51.44:809][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.18-01.51.45:021][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.42ms +[2025.06.18-01.51.45:043][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.62ms +[2025.06.18-01.51.45:056][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.60ms +[2025.06.18-01.51.45:058][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.60ms +[2025.06.18-01.51.45:237][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.18-01.51.45:237][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.18-01.51.45:260][ 0]LogSlate: Border +[2025.06.18-01.51.45:260][ 0]LogSlate: BreadcrumbButton +[2025.06.18-01.51.45:260][ 0]LogSlate: Brushes.Title +[2025.06.18-01.51.45:260][ 0]LogSlate: Default +[2025.06.18-01.51.45:260][ 0]LogSlate: Icons.Save +[2025.06.18-01.51.45:260][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.18-01.51.45:260][ 0]LogSlate: ListView +[2025.06.18-01.51.45:260][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.18-01.51.45:260][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.18-01.51.45:260][ 0]LogSlate: TableView.DarkRow +[2025.06.18-01.51.45:260][ 0]LogSlate: TableView.Row +[2025.06.18-01.51.45:260][ 0]LogSlate: TreeView +[2025.06.18-01.51.45:354][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.18-01.51.45:354][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.370 ms +[2025.06.18-01.51.45:364][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.18-01.51.45:378][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.18-01.51.45:378][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.18-01.51.45:378][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.18-01.51.45:602][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 2C2664089FB642498000000000008200 | Instance: 3EE047584053624CD14254AB1496D8AB (T-7512). +[2025.06.18-01.51.45:607][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.18-01.51.45:760][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.18-01.51.45:760][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.18-01.51.45:774][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.18-01.51.45:854][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.18-01.51.45:857][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.18-01.51.45:857][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.18-01.51.45:857][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:64263'. +[2025.06.18-01.51.45:863][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.195' to multicast group '230.0.0.1:6666' +[2025.06.18-01.51.45:922][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.18-01.51.46:089][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.18-01.51.46:089][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.18-01.51.46:089][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.18-01.51.46:089][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.18-01.51.46:595][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.18-01.51.46:808][ 0]SourceControl: Revision control is disabled +[2025.06.18-01.51.46:816][ 0]SourceControl: Revision control is disabled +[2025.06.18-01.51.46:834][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.18-01.51.46:834][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.18-01.51.46:871][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.18-01.51.46:886][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.18-01.51.46:886][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.18-01.51.46:971][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.18-01.51.46:971][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.18-01.51.46:971][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.18-01.51.46:972][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.18-01.51.46:972][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.18-01.51.46:973][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.18-01.51.46:973][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.18-01.51.46:973][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.18-01.51.46:974][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.18-01.51.46:974][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.18-01.51.46:974][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.18-01.51.46:975][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.18-01.51.46:976][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.18-01.51.46:976][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.18-01.51.46:976][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.18-01.51.46:977][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.18-01.51.46:977][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.18-01.51.46:977][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.18-01.51.46:978][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.18-01.51.46:978][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.18-01.51.46:978][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.18-01.51.46:979][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.18-01.51.46:979][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.18-01.51.46:980][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.18-01.51.46:980][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.18-01.51.46:981][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.18-01.51.46:981][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.18-01.51.46:982][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.18-01.51.46:982][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.18-01.51.46:982][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.18-01.51.46:983][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.18-01.51.46:983][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.18-01.51.46:984][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.18-01.51.46:984][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.18-01.51.46:984][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.18-01.51.47:132][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.18-01.51.47:143][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.35ms +[2025.06.18-01.51.47:360][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.18-01.51.47:390][ 0]LogCollectionManager: Loaded 0 collections in 0.000676 seconds +[2025.06.18-01.51.47:391][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.18-01.51.47:393][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.18-01.51.47:394][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.18-01.51.47:443][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.18-01.51.47:443][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.18-01.51.47:445][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.18-01.51.47:445][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.18-01.51.47:445][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.18-01.51.47:445][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.18-01.51.47:473][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.18-01.51.47:473][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.18-01.51.47:486][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-18T01:51:47.486Z using C +[2025.06.18-01.51.47:486][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.18-01.51.47:486][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.18-01.51.47:486][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.18-01.51.47:490][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.18-01.51.47:491][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.18-01.51.47:491][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.18-01.51.47:491][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000064 +[2025.06.18-01.51.47:491][ 0]LogFab: Display: Logging in using persist +[2025.06.18-01.51.47:514][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.18-01.51.47:514][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.18-01.51.47:523][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.18-01.51.47:523][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.18-01.51.47:588][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:588][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:589][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.18-01.51.47:597][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:613][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:614][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.18-01.51.47:615][ 0]LogEngine: Initializing Engine... +[2025.06.18-01.51.47:618][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.18-01.51.47:618][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.18-01.51.47:680][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.18-01.51.47:694][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.18-01.51.47:708][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.18-01.51.47:708][ 0]LogInit: Texture streaming: Enabled +[2025.06.18-01.51.47:717][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.18-01.51.47:722][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.18-01.51.47:730][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.18-01.51.47:731][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.18-01.51.47:731][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.18-01.51.47:737][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.18-01.51.47:776][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.18-01.51.47:777][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.18-01.51.47:779][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.18-01.51.47:779][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.18-01.51.47:780][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.18-01.51.47:780][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.18-01.51.47:781][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.18-01.51.47:781][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.18-01.51.47:781][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.18-01.51.47:781][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.18-01.51.47:781][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.18-01.51.47:785][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.18-01.51.47:788][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.18-01.51.47:788][ 0]LogInit: Transaction tracking system initialized +[2025.06.18-01.51.47:799][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.18-01.51.47:852][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.48ms +[2025.06.18-01.51.47:854][ 0]LocalizationService: Localization service is disabled +[2025.06.18-01.51.47:865][ 0]LogTimingProfiler: Initialize +[2025.06.18-01.51.47:865][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.18-01.51.47:865][ 0]LoadingProfiler: Initialize +[2025.06.18-01.51.47:865][ 0]LoadingProfiler: OnSessionChanged +[2025.06.18-01.51.47:865][ 0]LogNetworkingProfiler: Initialize +[2025.06.18-01.51.47:865][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.18-01.51.47:865][ 0]LogMemoryProfiler: Initialize +[2025.06.18-01.51.47:865][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.18-01.51.48:047][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.02s +[2025.06.18-01.51.48:056][ 0]LogPython: Using Python 3.11.8 +[2025.06.18-01.51.48:752][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.18-01.51.48:767][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.18-01.51.48:773][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.18-01.51.48:868][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.18-01.51.48:868][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.18-01.51.48:892][ 0]LogEditorDataStorage: Initializing +[2025.06.18-01.51.48:893][ 0]LogEditorDataStorage: Initialized +[2025.06.18-01.51.48:913][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.18-01.51.48:916][ 0]SourceControl: Revision control is disabled +[2025.06.18-01.51.48:916][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 8.797 +[2025.06.18-01.51.48:916][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.18-01.51.48:917][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.18-01.51.48:917][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.51.48:935][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.18-01.51.48:987][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.18-01.51.49:090][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.18-01.51.49:090][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.18-01.51.49:728][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.4 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.18-01.51.51:865][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.18-01.51.51:875][ 0]LogSkeletalMesh: Built Skeletal Mesh [5.28s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.18-01.51.51:888][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.18-01.51.51:889][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.44ms +[2025.06.18-01.51.51:993][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.18-01.51.52:005][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.18-01.51.52:005][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.18-01.51.52:007][ 0]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.18-01.51.52:007][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.18-01.51.52:007][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.18-01.51.52:027][ 0]LogWorldPartition: Display: WorldPartition initialize took 20.115 ms +[2025.06.18-01.51.52:045][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SK_Mannequin) ... +[2025.06.18-01.51.52:084][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.18-01.51.52:094][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.38ms +[2025.06.18-01.51.52:094][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.18-01.51.52:094][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.548ms to complete. +[2025.06.18-01.51.52:100][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 11.982 +[2025.06.18-01.51.52:241][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.18-01.51.52:293][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.51.52:328][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.51.52:364][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.51.52:399][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.51.52:407][ 0]LogSlate: Took 0.000321 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.18-01.51.52:430][ 0]LogSlate: Took 0.000363 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.18-01.51.52:432][ 0]LogSlate: Took 0.001253 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.18-01.51.52:511][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:511][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.18-01.51.52:511][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:512][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.18-01.51.52:512][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:512][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:512][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:512][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:513][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:513][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.18-01.51.52:513][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:513][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:513][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:514][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.18-01.51.52:514][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:514][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:514][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:514][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:514][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.18-01.51.52:514][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.18-01.51.52:665][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:665][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:665][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:665][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:666][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:666][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:666][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.52:667][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.18-01.51.53:122][ 0]LogSlate: External Image Picker: DecompressImage failed +[2025.06.18-01.51.53:220][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.18-01.51.53:257][ 0]LogStall: Startup... +[2025.06.18-01.51.53:260][ 0]LogStall: Startup complete. +[2025.06.18-01.51.53:264][ 0]LogLoad: (Engine Initialization) Total time: 13.15 seconds +[2025.06.18-01.51.53:374][ 0]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.18-01.51.53:387][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.18-01.51.53:390][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.18-01.51.53:392][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.18-01.51.53:392][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.18-01.51.53:433][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.18-01.51.53:433][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.18-01.51.53:434][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.18-01.51.53:434][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.18-01.51.53:434][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.18-01.51.53:470][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.18-01.51.53:470][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.18-01.51.53:513][ 0]LogAssetRegistry: AssetRegistryGather time 0.1050s: AssetDataDiscovery 0.0599s, AssetDataGather 0.0086s, StoreResults 0.0365s. Wall time 9.0540s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7507. NumUncachedFiles 0. + BackgroundTickInterruptions 0. +[2025.06.18-01.51.53:527][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.18-01.51.53:528][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.18-01.51.53:529][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.18-01.51.53:529][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.18-01.51.53:549][ 0]LogSlate: Took 0.000225 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.18-01.51.53:626][ 0]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.18-01.51.53:657][ 0]LogSlate: Took 0.000314 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.18-01.51.53:701][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.51.53:704][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.18-01.51.53:722][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 75.34 ms. Compile time 29.48 ms, link time 45.72 ms. +[2025.06.18-01.51.53:768][ 0]LogPython: registering + +[2025.06.18-01.51.53:774][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 70.535 ms +[2025.06.18-01.51.53:839][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.311856 seconds (Found 7482 uncontrolled assets) +[2025.06.18-01.51.54:954][ 7]LogSlate: External Image Picker: DecompressImage failed +[2025.06.18-01.51.55:117][ 8]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 7.595544 +[2025.06.18-01.51.55:117][ 8]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.18-01.51.55:118][ 8]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.626270 +[2025.06.18-01.51.55:805][ 12]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.18-01.51.56:504][ 16]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.722466 +[2025.06.18-01.51.56:505][ 16]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.18-01.51.56:505][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.722466, Update Interval: 356.149170 +[2025.06.18-01.51.57:190][ 20]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.18-03.51.55 Remaining: 7200.97] Refresh[Expires: 2025-12-14T02:53:18.062Z Remaining: 15469283.06] State: Valid +[2025.06.18-01.51.57:518][ 21]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.18-01.51.58:517][ 24]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.18-01.51.58:517][ 24]LogFab: Display: User logged in +[2025.06.18-01.51.58:517][ 24]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.18-01.51.59:185][ 26]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-mMuRfGnlxkm-cQDkoz4RUQ-cLdNbJ3-HU6BCztlVic6gw] +[2025.06.18-01.52.07:774][297]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.18-01.52.07:795][297]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.18-01.52.07:795][297]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.18-01.52.07:798][297]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 3.079 ms +[2025.06.18-01.52.07:802][297]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.18-01.52.07:810][297]LogOnline: OSS: Created online subsystem instance for: NULL +[2025.06.18-01.52.07:810][297]LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +[2025.06.18-01.52.07:812][297]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.52.07:816][297]LogPlayLevel: PIE: StaticDuplicateObject took: (0.004666s) +[2025.06.18-01.52.07:816][297]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.004698s) +[2025.06.18-01.52.07:842][297]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.18-01.52.07:843][297]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.18-01.52.07:845][297]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.18-01.52.07:845][297]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.18-01.52.07:845][297]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.18-01.52.07:845][297]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.18-01.52.07:847][297]LogWorldPartition: Display: WorldPartition initialize took 1.216 ms (total: 21.331 ms) +[2025.06.18-01.52.07:847][297]LogPlayLevel: PIE: World Init took: (0.003226s) +[2025.06.18-01.52.07:848][297]LogAudio: Display: Creating Audio Device: Id: 2, Scope: Unique, Realtime: True +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.18-01.52.07:848][297]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.18-01.52.07:848][297]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.18-01.52.07:848][297]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.18-01.52.07:848][297]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.18-01.52.07:848][297]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.18-01.52.07:849][297]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.18-01.52.07:874][297]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.18-01.52.07:874][297]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.18-01.52.07:874][297]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.18-01.52.07:874][297]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.18-01.52.07:874][297]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=2 +[2025.06.18-01.52.07:874][297]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=2 +[2025.06.18-01.52.07:876][297]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=2 +[2025.06.18-01.52.07:876][297]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=2 +[2025.06.18-01.52.07:876][297]LogInit: FAudioDevice initialized with ID 2. +[2025.06.18-01.52.07:876][297]LogAudio: Display: Audio Device (ID: 2) registered with world 'Dabaza'. +[2025.06.18-01.52.07:876][297]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.18-01.52.07:880][297]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.18-01.52.07:881][297]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.18-09.52.07 +[2025.06.18-01.52.07:883][297]LogWorld: Bringing up level for play took: 0.003030 +[2025.06.18-01.52.07:885][297]LogOnline: OSS: Created online subsystem instance for: :Context_2 +[2025.06.18-01.52.07:905][297]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.52.07:905][297]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.52.07:908][297]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.18-01.52.07:908][297]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.18-01.52.07:909][297]PIE: Server logged in +[2025.06.18-01.52.07:910][297]PIE: Play in editor total start time 0.116 seconds. +[2025.06.18-01.52.13:986][462]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.13:986][462]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.15:983][468]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.15:983][468]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.15:983][468]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.17:984][474]LogTemp: 针对目标 |Skill_1|Skill_4|Skill_5 释放技能效果ModifySpeed +[2025.06.18-01.52.19:999][480]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] boss死亡 +[2025.06.18-01.52.20:039][480]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.52.20:039][480]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.52.20:039][480]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.18-01.52.20:040][480]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.52.20:040][480]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.18-01.52.20:045][480]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.18-01.52.20:046][480]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.52.20:059][480]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.52.20:059][480]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 2 +[2025.06.18-01.52.20:059][480]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.18-01.52.20:061][480]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=2 +[2025.06.18-01.52.20:068][480]LogUObjectHash: Compacting FUObjectHashTables data took 0.35ms +[2025.06.18-01.52.20:092][481]LogPlayLevel: Display: Destroying online subsystem :Context_2 +[2025.06.18-01.52.20:609][521]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.18-01.52.20:614][521]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.18-01.52.20:614][521]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.18-01.52.20:615][521]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.172 ms (total: 4.251 ms) +[2025.06.18-01.52.20:615][521]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.18-01.52.20:615][521]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.52.20:617][521]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002250s) +[2025.06.18-01.52.20:617][521]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002272s) +[2025.06.18-01.52.20:626][521]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.18-01.52.20:627][521]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.18-01.52.20:628][521]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.18-01.52.20:628][521]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.18-01.52.20:628][521]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.18-01.52.20:628][521]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.18-01.52.20:629][521]LogWorldPartition: Display: WorldPartition initialize took 778 us (total: 22.110 ms) +[2025.06.18-01.52.20:629][521]LogPlayLevel: PIE: World Init took: (0.001802s) +[2025.06.18-01.52.20:629][521]LogAudio: Display: Creating Audio Device: Id: 3, Scope: Unique, Realtime: True +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.18-01.52.20:629][521]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.18-01.52.20:629][521]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.18-01.52.20:629][521]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.18-01.52.20:629][521]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.18-01.52.20:629][521]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.18-01.52.20:631][521]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.18-01.52.20:655][521]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.18-01.52.20:655][521]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.18-01.52.20:655][521]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.18-01.52.20:655][521]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.18-01.52.20:656][521]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=3 +[2025.06.18-01.52.20:656][521]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=3 +[2025.06.18-01.52.20:658][521]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=3 +[2025.06.18-01.52.20:658][521]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=3 +[2025.06.18-01.52.20:658][521]LogInit: FAudioDevice initialized with ID 3. +[2025.06.18-01.52.20:658][521]LogAudio: Display: Audio Device (ID: 3) registered with world 'Dabaza'. +[2025.06.18-01.52.20:658][521]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.18-01.52.20:659][521]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.18-01.52.20:660][521]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.18-09.52.20 +[2025.06.18-01.52.20:661][521]LogWorld: Bringing up level for play took: 0.001182 +[2025.06.18-01.52.20:663][521]LogOnline: OSS: Created online subsystem instance for: :Context_3 +[2025.06.18-01.52.20:667][521]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.52.20:668][521]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.18-01.52.20:668][521]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.18-01.52.20:668][521]PIE: Server logged in +[2025.06.18-01.52.20:669][521]PIE: Play in editor total start time 0.055 seconds. +[2025.06.18-01.52.26:604][225]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.26:604][225]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.26:604][225]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.18-01.52.32:605][945]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Heal +[2025.06.18-01.52.35:605][305]LogTemp: 针对目标 |Skill_7 释放技能效果Charge +[2025.06.18-01.52.35:605][305]LogTemp: 针对目标 |Skill_8 释放技能效果Charge +[2025.06.18-01.52.38:606][665]LogTemp: 针对目标 |Skill_9|Skill_10|Skill_11|Skill_12 释放技能效果ModifyCooldown +[2025.06.18-01.52.38:606][665]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.38:606][665]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.38:606][665]LogTemp: 针对目标 |BP_DeepFish_C_UAID_5811220C528A157102_1117927520 释放技能效果Damage +[2025.06.18-01.52.41:606][ 25]LogTemp: 针对目标 |BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 释放技能效果Heal +[2025.06.18-01.52.43:916][294]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.52.43:916][294]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.52.43:916][294]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.18-01.52.43:916][294]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.52.43:916][294]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.18-01.52.43:920][294]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.18-01.52.43:922][294]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.52.43:933][294]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.52.43:933][294]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 3 +[2025.06.18-01.52.43:933][294]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.18-01.52.43:935][294]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=3 +[2025.06.18-01.52.43:939][294]LogUObjectHash: Compacting FUObjectHashTables data took 0.36ms +[2025.06.18-01.52.43:982][297]LogPlayLevel: Display: Destroying online subsystem :Context_3 +[2025.06.18-01.53.43:472][813]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.18-01.55.40:587][171]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish +[2025.06.18-01.55.40:587][171]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.18-01.55.40:608][171]LogStreaming: Display: FlushAsyncLoading(381): 1 QueuedPackages, 0 AsyncPackages +[2025.06.18-01.55.41:318][171]LogSlate: Took 0.000445 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.18-01.55.41:346][171]LogSlate: Took 0.000201 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.18-01.55.52:664][479]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_PawnEntity.BP_PawnEntity +[2025.06.18-01.55.52:664][479]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.18-01.55.52:859][479]LogSlate: Took 0.000905 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.18-01.55.56:561][763]LogSlate: Window 'Delete Variable' being destroyed +[2025.06.18-01.55.58:068][929]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.18-01.55.59:597][ 92]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.18-01.55.59:655][ 92]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_PawnEntity] ([2] browsable assets)... +[2025.06.18-01.55.59:656][ 92]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_PawnEntity] +[2025.06.18-01.55.59:656][ 92]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_PawnEntity" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset" SILENT=true +[2025.06.18-01.55.59:666][ 92]LogSavePackage: Moving output files for package: /Game/Characters/BP_PawnEntity +[2025.06.18-01.55.59:667][ 92]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_PawnEntityD6CFBE974B766C09850A3FA4778DE382.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset' +[2025.06.18-01.55.59:679][ 92]LogFileHelpers: InternalPromptForCheckoutAndSave took 81.663 ms +[2025.06.18-01.55.59:720][ 92]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.18-01.55.59:720][ 92]LogContentValidation: Enabled validators: +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.18-01.55.59:720][ 92]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.18-01.55.59:720][ 92]AssetCheck: /Game/Characters/BP_PawnEntity Validating asset +[2025.06.18-01.56.01:920][333]LogSlate: Took 0.000226 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.18-01.56.01:949][336]LogStreaming: Display: FlushAsyncLoading(554): 1 QueuedPackages, 0 AsyncPackages +[2025.06.18-01.56.01:998][337]LogStreaming: Display: FlushAsyncLoading(555): 1 QueuedPackages, 0 AsyncPackages +[2025.06.18-01.56.02:036][338]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.18-01.56.02:124][341]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.18-01.56.02:182][342]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_5 +[2025.06.18-01.56.02:211][344]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_6 +[2025.06.18-01.56.11:615][419]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_7 +[2025.06.18-01.56.11:659][420]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_8 +[2025.06.18-01.56.11:676][421]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_9 +[2025.06.18-01.56.18:056][155]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.18-01.56.18:056][155]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_10 +[2025.06.18-01.56.54:777][298]LogUObjectHash: Compacting FUObjectHashTables data took 0.74ms +[2025.06.18-01.56.55:268][342]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.18-01.56.55:318][342]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.18-01.56.55:318][342]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.18-01.56.55:318][342]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset" SILENT=true +[2025.06.18-01.56.55:330][342]LogSavePackage: Moving output files for package: /Game/Gameplay/BP_Dabaza_GameMode +[2025.06.18-01.56.55:330][342]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode4D7503D2444ADF68AC4A889FBBDF5787.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset' +[2025.06.18-01.56.55:342][342]LogFileHelpers: InternalPromptForCheckoutAndSave took 73.893 ms (total: 155.556 ms) +[2025.06.18-01.56.55:402][342]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.18-01.56.55:402][342]LogContentValidation: Enabled validators: +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.18-01.56.55:402][342]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.18-01.56.55:402][342]AssetCheck: /Game/Gameplay/BP_Dabaza_GameMode Validating asset +[2025.06.18-01.56.56:794][496]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.18-01.56.56:800][496]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.18-01.56.56:800][496]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.18-01.56.56:801][496]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.139 ms (total: 5.390 ms) +[2025.06.18-01.56.56:801][496]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.18-01.56.56:801][496]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.56.56:804][496]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002361s) +[2025.06.18-01.56.56:804][496]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002383s) +[2025.06.18-01.56.56:818][496]LogUObjectHash: Compacting FUObjectHashTables data took 0.72ms +[2025.06.18-01.56.56:819][496]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.18-01.56.56:820][496]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.18-01.56.56:820][496]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.18-01.56.56:820][496]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.18-01.56.56:820][496]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.18-01.56.56:821][496]LogWorldPartition: Display: WorldPartition initialize took 777 us (total: 22.888 ms) +[2025.06.18-01.56.56:821][496]LogPlayLevel: PIE: World Init took: (0.001875s) +[2025.06.18-01.56.56:822][496]LogAudio: Display: Creating Audio Device: Id: 4, Scope: Unique, Realtime: True +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.18-01.56.56:822][496]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.18-01.56.56:822][496]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.18-01.56.56:822][496]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.18-01.56.56:822][496]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.18-01.56.56:822][496]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.18-01.56.56:824][496]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.18-01.56.56:849][496]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.18-01.56.56:849][496]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.18-01.56.56:849][496]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.18-01.56.56:849][496]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.18-01.56.56:850][496]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=4 +[2025.06.18-01.56.56:850][496]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=4 +[2025.06.18-01.56.56:852][496]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=4 +[2025.06.18-01.56.56:852][496]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=4 +[2025.06.18-01.56.56:852][496]LogInit: FAudioDevice initialized with ID 4. +[2025.06.18-01.56.56:852][496]LogAudio: Display: Audio Device (ID: 4) registered with world 'Dabaza'. +[2025.06.18-01.56.56:852][496]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.18-01.56.56:867][496]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.18-01.56.56:868][496]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.18-09.56.56 +[2025.06.18-01.56.56:868][496]LogWorld: Bringing up level for play took: 0.001114 +[2025.06.18-01.56.56:870][496]LogOnline: OSS: Created online subsystem instance for: :Context_14 +[2025.06.18-01.56.56:873][496]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.56.56:873][496]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.56.56:874][496]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.18-01.56.56:874][496]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.18-01.56.56:874][496]PIE: Server logged in +[2025.06.18-01.56.56:876][496]PIE: Play in editor total start time 0.076 seconds. +[2025.06.18-01.57.01:457][ 25]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.57.01:457][ 25]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.57.01:457][ 25]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.18-01.57.01:457][ 25]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.57.01:458][ 25]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.18-01.57.01:461][ 25]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.18-01.57.01:464][ 25]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.57.01:478][ 25]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.18-01.57.01:478][ 25]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 4 +[2025.06.18-01.57.01:478][ 25]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.18-01.57.01:480][ 25]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=4 +[2025.06.18-01.57.01:483][ 25]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.57.01:485][ 25]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.18-01.57.01:529][ 26]LogPlayLevel: Display: Destroying online subsystem :Context_14 +[2025.06.18-01.57.21:509][331]LogDebuggerCommands: Repeating last play command: Selected Viewport +[2025.06.18-01.57.21:513][331]LogContentBundle: [Dabaza(Standalone)] Generating Streaming for 0 Content Bundles. +[2025.06.18-01.57.21:513][331]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' started... +[2025.06.18-01.57.21:514][331]LogWorldPartition: Display: GenerateStreaming for 'Dabaza' took 1.395 ms (total: 6.786 ms) +[2025.06.18-01.57.21:514][331]LogPlayLevel: PlayLevel: No blueprints needed recompiling +[2025.06.18-01.57.21:514][331]LogPlayLevel: Creating play world package: /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.57.21:516][331]LogPlayLevel: PIE: StaticDuplicateObject took: (0.002219s) +[2025.06.18-01.57.21:517][331]LogPlayLevel: PIE: Created PIE world by copying editor world from /Game/Maps/Dabaza.Dabaza to /Game/Maps/UEDPIE_0_Dabaza.Dabaza (0.002241s) +[2025.06.18-01.57.21:528][331]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.18-01.57.21:530][331]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.18-01.57.21:531][331]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=1, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=0, InitializeForGame=1) +[2025.06.18-01.57.21:531][331]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.18-01.57.21:531][331]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza, World Type = PIE, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 0, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.18-01.57.21:531][331]LogWorldPartition: UWorldPartition::Initialize Context : World NetMode = Standalone, IsServer = 0, IsDedicatedServer = 0, IsServerStreamingEnabled = 0, IsServerStreamingOutEnabled = 0, IsUsingMakingVisibleTransaction = 0, IsUsingMakingInvisibleTransaction = 0 +[2025.06.18-01.57.21:531][331]LogWorldPartition: Display: WorldPartition initialize took 784 us (total: 23.672 ms) +[2025.06.18-01.57.21:531][331]LogPlayLevel: PIE: World Init took: (0.001909s) +[2025.06.18-01.57.21:532][331]LogAudio: Display: Creating Audio Device: Id: 5, Scope: Unique, Realtime: True +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.18-01.57.21:532][331]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.18-01.57.21:532][331]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.18-01.57.21:532][331]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.18-01.57.21:532][331]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.18-01.57.21:532][331]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.18-01.57.21:534][331]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.18-01.57.21:558][331]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.18-01.57.21:559][331]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.18-01.57.21:559][331]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.18-01.57.21:559][331]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.18-01.57.21:559][331]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=5 +[2025.06.18-01.57.21:559][331]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=5 +[2025.06.18-01.57.21:561][331]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=5 +[2025.06.18-01.57.21:561][331]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=5 +[2025.06.18-01.57.21:561][331]LogInit: FAudioDevice initialized with ID 5. +[2025.06.18-01.57.21:561][331]LogAudio: Display: Audio Device (ID: 5) registered with world 'Dabaza'. +[2025.06.18-01.57.21:561][331]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.18-01.57.21:563][331]LogLoad: Game class is 'BP_Dabaza_GameMode_C' +[2025.06.18-01.57.21:564][331]LogWorld: Bringing World /Game/Maps/UEDPIE_0_Dabaza.Dabaza up for play (max tick rate 0) at 2025.06.18-09.57.21 +[2025.06.18-01.57.21:565][331]LogWorld: Bringing up level for play took: 0.001104 +[2025.06.18-01.57.21:567][331]LogOnline: OSS: Created online subsystem instance for: :Context_15 +[2025.06.18-01.57.21:570][331]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.57.21:570][331]LogBlueprintUserMessages: [BP_Dabaza_GameMode_C_0] 超过背包重量 +[2025.06.18-01.57.21:571][331]LogViewport: Display: Viewport MouseLockMode Changed, LockOnCapture -> DoNotLock +[2025.06.18-01.57.21:571][331]LogViewport: Display: Viewport MouseCaptureMode Changed, CapturePermanently_IncludingInitialMouseDown -> NoCapture +[2025.06.18-01.57.21:571][331]PIE: Server logged in +[2025.06.18-01.57.21:572][331]PIE: Play in editor total start time 0.059 seconds. +[2025.06.18-01.57.25:747][812]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.57.25:747][812]LogWorld: BeginTearingDown for /Game/Maps/UEDPIE_0_Dabaza +[2025.06.18-01.57.25:748][812]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.18-01.57.25:748][812]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.57.25:748][812]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/UEDPIE_0_Dabaza.Dabaza +[2025.06.18-01.57.25:754][812]LogPlayLevel: Display: Shutting down PIE online subsystems +[2025.06.18-01.57.25:757][812]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-01.57.25:772][812]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.18-01.57.25:772][812]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID 5 +[2025.06.18-01.57.25:772][812]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.18-01.57.25:774][812]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=5 +[2025.06.18-01.57.25:778][812]LogUObjectHash: Compacting FUObjectHashTables data took 0.84ms +[2025.06.18-01.57.25:820][813]LogPlayLevel: Display: Destroying online subsystem :Context_15 +[2025.06.18-01.57.26:578][900]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.18-01.57.26:611][900]LogSavePackage: Moving output files for package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 +[2025.06.18-01.57.26:612][900]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/KCVNFI6L6PBCQ844W3A926C5317D8E4B52CC5492B50C91AB82C800.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset' +[2025.06.18-01.57.26:622][900]LogFileHelpers: InternalPromptForCheckoutAndSave took 45.023 ms (total: 200.580 ms) +[2025.06.18-01.57.26:677][900]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.18-01.57.26:677][900]LogContentValidation: Enabled validators: +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.18-01.57.26:677][900]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.18-01.57.26:677][900]AssetCheck: /Game/Maps/Dabaza Validating asset +[2025.06.18-01.57.52:949][416]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 365.457855 +[2025.06.18-01.57.53:948][419]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.18-01.57.53:948][419]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 366.130280, Update Interval: 332.284302 +[2025.06.18-02.00.14:234][ 96]LogSlate: Window 'Call Stack' being destroyed +[2025.06.18-02.00.14:245][ 96]LogSlate: Window 'Call Stack' being destroyed +[2025.06.18-02.00.15:925][164]LogSlate: Window 'Open Asset' being destroyed +[2025.06.18-02.00.15:934][164]LogSlate: Window 'Open Asset' being destroyed +[2025.06.18-02.00.17:605][251]LogUObjectHash: Compacting FUObjectHashTables data took 0.89ms +[2025.06.18-02.00.17:641][251]LogStall: Shutdown... +[2025.06.18-02.00.17:641][251]LogStall: Shutdown complete. +[2025.06.18-02.00.17:664][251]LogWorld: UWorld::CleanupWorld for World_1, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:664][251]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:696][251]LogActorComponent: UnregisterComponent: (/Engine/Transient.EditorFloorComp) Not registered. Aborting. +[2025.06.18-02.00.17:696][251]LogWorld: UWorld::CleanupWorld for World_2, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:696][251]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:728][251]LogActorComponent: UnregisterComponent: (/Engine/Transient.EditorFloorComp) Not registered. Aborting. +[2025.06.18-02.00.17:728][251]LogWorld: UWorld::CleanupWorld for World_10, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:728][251]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:769][251]LogSlate: Window 'ProjectFish - Unreal Editor' being destroyed +[2025.06.18-02.00.17:774][251]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.18-02.00.17:883][251]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.18-02.00.17:889][251]Cmd: QUIT_EDITOR +[2025.06.18-02.00.17:889][252]LogCore: Engine exit requested (reason: UUnrealEdEngine::CloseEditor()) +[2025.06.18-02.00.17:892][252]LogCore: Engine exit requested (reason: EngineExit() was called; note: exit was already requested) +[2025.06.18-02.00.17:892][252]LogStaticMesh: Abandoning remaining async distance field tasks for shutdown +[2025.06.18-02.00.17:892][252]LogStaticMesh: Abandoning remaining async card representation tasks for shutdown +[2025.06.18-02.00.17:893][252]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:893][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:893][252]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.18-02.00.17:900][252]LogStylusInput: Shutting down StylusInput subsystem. +[2025.06.18-02.00.17:901][252]LogLevelSequenceEditor: LevelSequenceEditor subsystem deinitialized. +[2025.06.18-02.00.17:902][252]LogWorld: UWorld::CleanupWorld for World_5, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:902][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:904][252]LogWorld: UWorld::CleanupWorld for World_4, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:904][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:905][252]LogWorld: UWorld::CleanupWorld for World_3, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:905][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:906][252]LogWorld: UWorld::CleanupWorld for World_9, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:907][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:908][252]LogWorld: UWorld::CleanupWorld for World_8, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:908][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:909][252]LogWorld: UWorld::CleanupWorld for World_0, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:909][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:911][252]LogWorld: UWorld::CleanupWorld for World_6, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:911][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:912][252]LogWorld: UWorld::CleanupWorld for World_7, bSessionEnded=true, bCleanupResources=true +[2025.06.18-02.00.17:912][252]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.18-02.00.17:913][252]LogStudioTelemetry: Ended StudioTelemetry Session +[2025.06.18-02.00.17:916][252]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroying ET Analytics provider +[2025.06.18-02.00.17:916][252]LogAnalytics: Display: [UEEditor.Rocket.Release] Ended ET Analytics provider session +[2025.06.18-02.00.17:916][252]LogAnalytics: Display: [UEEditor.Rocket.Release] Destroyed ET Analytics provider +[2025.06.18-02.00.18:845][252]LogAudio: Display: Beginning Audio Device Manager Shutdown (Module: AudioMixerXAudio2)... +[2025.06.18-02.00.18:847][252]LogAudio: Display: Destroying 1 Remaining Audio Device(s)... +[2025.06.18-02.00.18:847][252]LogAudio: Display: Audio Device unregistered from world 'Dabaza'. +[2025.06.18-02.00.18:847][252]LogAudio: Display: Shutting down audio device while 1 references to it are still alive. For more information, compile with INSTRUMENT_AUDIODEVICE_HANDLES. +[2025.06.18-02.00.18:847][252]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.18-02.00.18:848][252]LogAudioMixer: FMixerPlatformXAudio2::StopAudioStream() called. InstanceID=1 +[2025.06.18-02.00.18:852][252]LogAudioMixer: Deinitializing Audio Bus Subsystem for audio device with ID -1 +[2025.06.18-02.00.18:852][252]LogAudio: Display: Audio Device Manager Shutdown +[2025.06.18-02.00.18:853][252]LogSlate: Slate User Destroyed. User Index 0, Is Virtual User: 0 +[2025.06.18-02.00.18:853][252]LogExit: Preparing to exit. +[2025.06.18-02.00.18:876][252]LogUObjectHash: Compacting FUObjectHashTables data took 1.18ms +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.add_controls_for_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_null_above_selected_PY.add_null_above_selected' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_all' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_x' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_y' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_translation_z' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_rotation' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/align_items_PY.align_scale' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_name_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.search_replace_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_prefix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.add_suffix_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_dialog' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/rename_items_PY.do_rename_entry' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/set_bone_reference_pose_PY.set_bone_reference_pose' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/ControlRigWorkflows/workflow_fbik_import_ik_rig_PY.import_ik_rig_options' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.18:877][252]LogPython: Display: Object '/ControlRig/Python/RigHierarchy/add_controls_for_selected_PY.ControlOutputFormat' was externally referenced when shutting down Python. Forcibly releasing its Python resources! +[2025.06.18-02.00.19:220][252]LogEditorDataStorage: Deinitializing +[2025.06.18-02.00.19:338][252]LogDemo: Cleaned up 0 splitscreen connections, owner deletion: enabled +[2025.06.18-02.00.19:361][252]LogExit: Editor shut down +[2025.06.18-02.00.19:363][252]LogExit: Transaction tracking system shut down +[2025.06.18-02.00.19:535][252]LogCore: Error: PropertyBag: Expecting RefCount to be zero on destructor, but it is 1. +[2025.06.18-02.00.19:546][252]LogExit: Object subsystem successfully closed. +[2025.06.18-02.00.19:553][252]LogShaderCompilers: Display: Shaders left to compile 0 +[2025.06.18-02.00.19:604][252]LogMemoryProfiler: Shutdown +[2025.06.18-02.00.19:605][252]LogNetworkingProfiler: Shutdown +[2025.06.18-02.00.19:605][252]LoadingProfiler: Shutdown +[2025.06.18-02.00.19:605][252]LogTimingProfiler: Shutdown +[2025.06.18-02.00.20:219][252]LogChaosDD: Chaos Debug Draw Shutdown +[2025.06.18-02.00.20:219][252]LogStudioTelemetry: Display: Shutdown StudioTelemetry Module +[2025.06.18-02.00.20:219][252]LogNFORDenoise: NFORDenoise function shutting down +[2025.06.18-02.00.20:248][252]LogHttp: Warning: [FHttpManager::Shutdown] Unbinding delegates for 1 outstanding Http Requests: +[2025.06.18-02.00.20:248][252]LogHttp: Warning: verb=[POST] url=[https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data?SessionID=%7BAF4CF77B-4EF9-F787-F084-4590E6F70F13%7D&AppID=UEEditor.Rocket.Release&AppVersion=5.5.4-40574608%2B%2B%2BUE5%2BRelease-5.5&UserID=2be356334d8ddcb1f8647180700f1260%7C7c48bd058d394a9b9827119f4ec4df20%7C391af7e5-d023-4a12-bd83-a39d12e0079d&AppEnvironment=datacollector-binary&UploadType=eteventstream] refs=[2] status=Processing +[2025.06.18-02.00.21:322][252]LogEOSSDK: FEOSSDKManager::Shutdown EOS_Shutdown Result=[EOS_Success] +[2025.06.18-02.00.21:323][252]RenderDocPlugin: plugin has been unloaded. +[2025.06.18-02.00.21:327][252]LogXGEController: Cleaning working directory: C:/Users/99714/AppData/Local/Temp/UnrealXGEWorkingDir/ +[2025.06.18-02.00.21:331][252]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +[2025.06.18-02.00.21:331][252]LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +[2025.06.18-02.00.21:332][252]LogPakFile: Destroying PakPlatformFile +[2025.06.18-02.00.21:498][252]LogD3D12RHI: ~FD3D12DynamicRHI +[2025.06.18-02.00.21:546][252]LogExit: Exiting. +[2025.06.18-02.00.21:561][252]Log file closed, 06/18/25 10:00:21 diff --git a/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.13-12.04.27.log b/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.13-12.04.27.log new file mode 100644 index 0000000..a38645a --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.13-12.04.27.log @@ -0,0 +1,1244 @@ +Log file open, 06/13/25 20:04:14 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=5716) +LogWindows: Enabling Tpause support +LogWindows: Warning: Failed to set completion port for job object "UE.ShaderCompileWorker.JobGroup": 参数错误。 +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 37074 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 1.061565 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-2A24DF8B46BD760820CB1A99F209A8F3 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogConfig: Display: Loading Android ini files took 0.07 seconds +LogConfig: Display: Loading VulkanPC ini files took 0.07 seconds +LogConfig: Display: Loading Mac ini files took 0.07 seconds +LogConfig: Display: Loading IOS ini files took 0.07 seconds +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogConfig: Display: Loading TVOS ini files took 0.08 seconds +LogConfig: Display: Loading Unix ini files took 0.08 seconds +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogConfig: Display: Loading Windows ini files took 0.08 seconds +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading VisionOS ini files took 0.08 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.08 seconds +LogConfig: Display: Loading Linux ini files took 0.08 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogAssetRegistry: Display: Asset registry cache read as 38.2 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.52ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.24ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.17ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.26ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.16ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.13-12.04.15:853][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.13-12.04.15:853][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.13-12.04.15:853][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.13-12.04.15:853][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.13-12.04.15:853][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.13-12.04.15:854][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.13-12.04.15:854][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.13-12.04.15:854][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.13-12.04.15:855][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.13-12.04.15:855][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.13-12.04.15:855][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.13-12.04.15:855][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.13-12.04.15:855][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.13-12.04.15:855][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.13-12.04.15:856][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.13-12.04.15:856][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.13-12.04.15:857][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.13-12.04.15:858][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.13-12.04.15:865][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.13-12.04.15:866][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.13-12.04.15:866][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.13-12.04.15:867][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.13-12.04.15:868][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.13-12.04.15:869][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.13-12.04.15:870][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.13-12.04.15:871][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.13-12.04.15:871][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.13-12.04.15:872][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.13-12.04.15:874][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.13-12.04.15:875][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.13-12.04.15:878][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.13-12.04.15:878][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.13-12.04.15:878][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.13-12.04.15:890][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.13-12.04.15:890][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.13-12.04.16:125][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.13-12.04.16:125][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.13-12.04.16:125][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.13-12.04.16:126][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.13-12.04.16:126][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.13-12.04.16:148][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.13-12.04.16:148][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.13-12.04.16:148][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.13-12.04.16:277][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.13-12.04.16:277][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.13-12.04.16:277][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.13-12.04.16:277][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.13-12.04.16:278][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.13-12.04.16:416][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.13-12.04.16:416][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.13-12.04.16:416][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.13-12.04.16:417][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.13-12.04.16:417][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.13-12.04.16:417][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.13-12.04.16:417][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.13-12.04.16:417][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.13-12.04.16:417][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.13-12.04.16:418][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.13-12.04.16:418][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.13-12.04.16:418][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.13-12.04.16:418][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.13-12.04.16:419][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.13-12.04.16:419][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.13-12.04.16:419][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.13-12.04.16:419][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.13-12.04.16:419][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.13-12.04.16:419][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.13-12.04.16:419][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.13-12.04.16:419][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.13-12.04.16:419][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.13-12.04.16:419][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.13-12.04.16:420][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.13-12.04.16:420][ 0]LogInit: Computer: T +[2025.06.13-12.04.16:420][ 0]LogInit: User: 99714 +[2025.06.13-12.04.16:420][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.13-12.04.16:420][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.13-12.04.16:738][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.13-12.04.16:738][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=57.8GB +[2025.06.13-12.04.16:738][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.13-12.04.16:738][ 0]LogMemory: Process Physical Memory: 616.57 MB used, 628.24 MB peak +[2025.06.13-12.04.16:738][ 0]LogMemory: Process Virtual Memory: 665.97 MB used, 665.97 MB peak +[2025.06.13-12.04.16:738][ 0]LogMemory: Physical Memory: 26755.61 MB used, 5753.70 MB free, 32509.30 MB total +[2025.06.13-12.04.16:738][ 0]LogMemory: Virtual Memory: 50238.36 MB used, 8951.57 MB free, 59189.93 MB total +[2025.06.13-12.04.16:738][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.13-12.04.16:746][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.13-12.04.16:769][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.13-12.04.16:769][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.13-12.04.16:770][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.13-12.04.16:770][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.13-12.04.16:782][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.13-12.04.17:092][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.13-12.04.17:092][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.13-12.04.17:092][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.13-12.04.17:092][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.13-12.04.17:095][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.13-12.04.17:122][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.13-12.04.17:122][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.13-12.04.17:415][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.13-12.04.17:415][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.13-12.04.17:415][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.13-12.04.17:415][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.13-12.04.17:415][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.13-12.04.17:415][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.13-12.04.17:416][ 0]LogWindows: Attached monitors: +[2025.06.13-12.04.17:416][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.13-12.04.17:416][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.13-12.04.17:416][ 0]LogWindows: Found 2 attached monitors. +[2025.06.13-12.04.17:416][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.13-12.04.17:416][ 0]LogRHI: RHI Adapter Info: +[2025.06.13-12.04.17:416][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.13-12.04.17:416][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.13-12.04.17:416][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.13-12.04.17:416][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.13-12.04.17:416][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.13-12.04.17:509][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.13-12.04.17:509][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.13-12.04.17:565][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.13-12.04.17:566][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.13-12.04.17:566][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.13-12.04.17:567][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.13-12.04.17:632][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000062517BE2300) +[2025.06.13-12.04.17:632][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000062517BE2580) +[2025.06.13-12.04.17:632][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000062517BE2800) +[2025.06.13-12.04.17:632][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.13-12.04.17:632][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.13-12.04.17:634][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.13-12.04.17:635][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.13-12.04.17:635][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.13-12.04.17:648][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.13-12.04.17:653][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.13-12.04.17:674][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.13-12.04.17:674][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.13-12.04.17:730][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.13-12.04.17:730][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.13-12.04.17:730][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.13-12.04.17:730][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.13-12.04.17:730][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.13-12.04.17:730][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.13-12.04.17:731][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.13-12.04.17:736][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.13-12.04.17:741][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.13-12.04.17:782][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.13-12.04.17:814][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.13-12.04.17:814][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.13-12.04.17:846][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.13-12.04.17:846][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.13-12.04.17:846][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.13-12.04.17:846][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.13-12.04.17:877][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.13-12.04.17:877][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.13-12.04.17:877][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.13-12.04.17:905][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.13-12.04.17:905][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.13-12.04.17:905][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.13-12.04.17:905][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.13-12.04.17:932][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.13-12.04.17:932][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.13-12.04.17:967][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.13-12.04.17:967][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.13-12.04.17:967][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.13-12.04.17:967][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.13-12.04.17:967][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.13-12.04.18:110][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.13-12.04.18:121][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.13-12.04.18:121][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.13-12.04.18:121][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.13-12.04.18:121][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.13-12.04.18:122][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.13-12.04.18:123][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.13-12.04.18:123][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.13-12.04.18:125][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.13-12.04.18:125][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.13-12.04.18:125][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.13-12.04.18:126][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.13-12.04.18:126][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.13-12.04.18:182][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.13-12.04.18:182][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.13-12.04.18:182][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.13-12.04.18:184][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.13-12.04.18:185][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.13-12.04.18:186][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.13-12.04.18:187][ 0]LogZenServiceInstance: Found existing instance running on port 8558 matching our settings, no actions needed +[2025.06.13-12.04.18:196][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.13-12.04.18:196][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.012 seconds +[2025.06.13-12.04.18:198][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.13-12.04.18:208][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.13-12.04.18:208][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.10ms. RandomReadSpeed=263.97MBs, RandomWriteSpeed=161.95MBs. Assigned SpeedClass 'Local' +[2025.06.13-12.04.18:209][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.13-12.04.18:209][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.13-12.04.18:209][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.13-12.04.18:210][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.13-12.04.18:210][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.13-12.04.18:210][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.13-12.04.18:210][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.13-12.04.18:211][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/46520/). +[2025.06.13-12.04.18:211][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/A876AC1E463D4C9308D779BA052C6D38/'. +[2025.06.13-12.04.18:211][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.13-12.04.18:211][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.13-12.04.18:213][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.13-12.04.18:213][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.13-12.04.18:823][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.13-12.04.19:880][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.13-12.04.19:882][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.13-12.04.19:887][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.13-12.04.19:887][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.13-12.04.19:890][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.13-12.04.19:891][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.13-12.04.19:891][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.13-12.04.19:891][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.13-12.04.19:914][ 0]LogAssetRegistry: FAssetRegistry took 0.0025 seconds to start up +[2025.06.13-12.04.19:917][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.13-12.04.19:919][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.13-12.04.20:082][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.13-12.04.20:087][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.13-12.04.20:088][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.13-12.04.20:088][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.13-12.04.20:100][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.13-12.04.20:101][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.13-12.04.20:120][ 0]LogDeviceProfileManager: Active device profile: [0000062534F93E00][0000062519DBA000 66] WindowsEditor +[2025.06.13-12.04.20:120][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.13-12.04.20:122][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.13-12.04.20:128][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.13-12.04.20:128][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.13-12.04.20:173][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:173][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.13-12.04.20:173][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:173][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:174][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.13-12.04.20:174][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:174][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:174][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.13-12.04.20:174][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:175][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:175][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.13-12.04.20:175][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:175][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.13-12.04.20:176][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.13-12.04.20:177][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:178][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:178][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.13-12.04.20:179][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.13-12.04.20:180][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.13-12.04.20:181][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.13-12.04.20:386][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.13-12.04.20:386][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.13-12.04.20:386][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.13-12.04.20:386][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.13-12.04.20:387][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.13-12.04.20:765][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.47ms +[2025.06.13-12.04.20:791][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.13-12.04.20:811][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.13-12.04.20:812][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.13-12.04.20:936][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.13-12.04.21:022][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.13-12.04.21:022][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.13-12.04.21:077][ 0]LogSlate: Border +[2025.06.13-12.04.21:078][ 0]LogSlate: BreadcrumbButton +[2025.06.13-12.04.21:078][ 0]LogSlate: Brushes.Title +[2025.06.13-12.04.21:078][ 0]LogSlate: Default +[2025.06.13-12.04.21:078][ 0]LogSlate: Icons.Save +[2025.06.13-12.04.21:078][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.13-12.04.21:078][ 0]LogSlate: ListView +[2025.06.13-12.04.21:078][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.13-12.04.21:078][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.13-12.04.21:078][ 0]LogSlate: TableView.DarkRow +[2025.06.13-12.04.21:078][ 0]LogSlate: TableView.Row +[2025.06.13-12.04.21:078][ 0]LogSlate: TreeView +[2025.06.13-12.04.21:298][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.13-12.04.21:302][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 4.703 ms +[2025.06.13-12.04.21:333][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.13-12.04.21:390][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.13-12.04.21:390][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.13-12.04.21:390][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.13-12.04.21:390][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.13-12.04.21:539][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.13-12.04.22:147][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 3D1E5E08C9204D4F8000000000000D00 | Instance: CA2F99EE43C8B865BDA8FCBB7EE16F15 (T-46520). +[2025.06.13-12.04.22:304][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.13-12.04.22:304][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.13-12.04.22:304][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.13-12.04.22:304][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.13-12.04.22:657][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.13-12.04.22:657][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.13-12.04.22:657][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:55258'. +[2025.06.13-12.04.22:664][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.195' to multicast group '230.0.0.1:6666' +[2025.06.13-12.04.22:676][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.13-12.04.22:888][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.13-12.04.22:889][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.13-12.04.22:902][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.13-12.04.23:712][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.13-12.04.24:561][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.13-12.04.24:561][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.13-12.04.24:728][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.13-12.04.24:981][ 0]SourceControl: Revision control is disabled +[2025.06.13-12.04.25:037][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.43ms +[2025.06.13-12.04.25:051][ 0]SourceControl: Revision control is disabled +[2025.06.13-12.04.25:081][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.13-12.04.25:460][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.13-12.04.25:509][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.13-12.04.25:509][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.13-12.04.25:702][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.13-12.04.25:702][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.13-12.04.25:703][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.13-12.04.25:703][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.13-12.04.25:704][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.13-12.04.25:704][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.13-12.04.25:705][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.13-12.04.25:705][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.13-12.04.25:706][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.13-12.04.25:707][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.13-12.04.25:708][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.13-12.04.25:708][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.13-12.04.25:709][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.13-12.04.25:710][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.13-12.04.25:712][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.13-12.04.25:712][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.13-12.04.25:713][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.13-12.04.25:714][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.13-12.04.25:714][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.13-12.04.25:715][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.13-12.04.25:716][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.13-12.04.25:716][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.13-12.04.25:717][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.13-12.04.25:718][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.13-12.04.25:718][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.13-12.04.25:719][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.13-12.04.25:720][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.13-12.04.25:720][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.13-12.04.25:721][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.13-12.04.25:722][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.13-12.04.25:722][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.13-12.04.25:724][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.13-12.04.25:725][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.13-12.04.25:726][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.13-12.04.25:726][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.13-12.04.25:850][ 0]LogCollectionManager: Loaded 0 collections in 0.000676 seconds +[2025.06.13-12.04.25:852][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.13-12.04.25:854][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.13-12.04.25:857][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.13-12.04.25:964][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.13-12.04.25:964][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.13-12.04.25:966][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.13-12.04.25:966][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.13-12.04.25:966][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.13-12.04.25:966][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.13-12.04.25:992][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.13-12.04.25:993][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.13-12.04.26:005][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-13T12:04:26.005Z using C +[2025.06.13-12.04.26:005][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.13-12.04.26:006][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.13-12.04.26:006][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.13-12.04.26:012][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.13-12.04.26:012][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.13-12.04.26:012][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.13-12.04.26:013][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000199 +[2025.06.13-12.04.26:013][ 0]LogFab: Display: Logging in using persist +[2025.06.13-12.04.26:047][ 0]LogUObjectArray: 52503 objects as part of root set at end of initial load. +[2025.06.13-12.04.26:047][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.13-12.04.26:059][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36337 public script object entries (985.21 KB) +[2025.06.13-12.04.26:059][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.13-12.04.26:156][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:156][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:157][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:157][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:159][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.13-12.04.26:170][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:187][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:191][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.13-12.04.26:193][ 0]LogEngine: Initializing Engine... +[2025.06.13-12.04.26:199][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.13-12.04.26:199][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.13-12.04.26:271][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.13-12.04.26:302][ 0]LogTexture: Display: Waiting for textures to be ready 42/69 (/Engine/EngineMaterials/DefaultWhiteGrid) ... +[2025.06.13-12.04.27:302][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.13-12.04.27:302][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 diff --git a/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.14-12.57.34.log b/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.14-12.57.34.log new file mode 100644 index 0000000..eef7a41 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish_2-backup-2025.06.14-12.57.34.log @@ -0,0 +1,1831 @@ +Log file open, 06/14/25 10:22:16 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=44028) +LogWindows: Enabling Tpause support +LogWindows: Warning: Failed to set completion port for job object "UE.ShaderCompileWorker.JobGroup": 参数错误。 +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 33279 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.476927 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-12859CEC4C62001EE57277A9D884F029 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogConfig: Display: Loading VulkanPC ini files took 0.03 seconds +LogConfig: Display: Loading Android ini files took 0.03 seconds +LogConfig: Display: Loading IOS ini files took 0.03 seconds +LogConfig: Display: Loading Mac ini files took 0.03 seconds +LogConfig: Display: Loading Unix ini files took 0.04 seconds +LogConfig: Display: Loading Windows ini files took 0.04 seconds +LogConfig: Display: Loading TVOS ini files took 0.04 seconds +LogConfig: Display: Loading VisionOS ini files took 0.04 seconds +LogConfig: Display: Loading Linux ini files took 0.04 seconds +LogConfig: Display: Loading LinuxArm64 ini files took 0.04 seconds +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogAssetRegistry: Display: Asset registry cache read as 38.2 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin ConcertSyncClient +LogPluginManager: Mounting Engine plugin ConcertSyncCore +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +LogInit: CurlRequestOptions (configurable via config and command line): +LogInit: - bVerifyPeer = true - Libcurl will verify peer certificate +LogInit: - bUseHttpProxy = true - Libcurl will use HTTP proxy +LogInit: - HttpProxyAddress = '127.0.0.1:10809' +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.48ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.18ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.12ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.07ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.14-02.22.17:073][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.14-02.22.17:073][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.14-02.22.17:073][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.14-02.22.17:073][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.14-02.22.17:074][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.14-02.22.17:074][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.14-02.22.17:074][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.14-02.22.17:076][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.14-02.22.17:079][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.14-02.22.17:079][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.14-02.22.17:079][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.14-02.22.17:083][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.14-02.22.17:083][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.14-02.22.17:241][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.14-02.22.17:241][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.14-02.22.17:241][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.14-02.22.17:241][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.14-02.22.17:241][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.14-02.22.17:247][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.14-02.22.17:247][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.14-02.22.17:247][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.14-02.22.17:349][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.14-02.22.17:349][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.14-02.22.17:349][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.14-02.22.17:349][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.14-02.22.17:349][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.14-02.22.17:457][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.14-02.22.17:457][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.14-02.22.17:457][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.14-02.22.17:457][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.14-02.22.17:457][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.14-02.22.17:458][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.14-02.22.17:458][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.14-02.22.17:458][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.14-02.22.17:458][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.14-02.22.17:458][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.14-02.22.17:458][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.14-02.22.17:458][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.14-02.22.17:458][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.14-02.22.17:458][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.14-02.22.17:458][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.14-02.22.17:458][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.14-02.22.17:458][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.14-02.22.17:458][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.14-02.22.17:458][ 0]LogInit: Computer: T +[2025.06.14-02.22.17:458][ 0]LogInit: User: 99714 +[2025.06.14-02.22.17:458][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.14-02.22.17:458][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.14-02.22.17:890][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.14-02.22.17:890][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=45.2GB +[2025.06.14-02.22.17:890][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.14-02.22.17:890][ 0]LogMemory: Process Physical Memory: 615.67 MB used, 628.42 MB peak +[2025.06.14-02.22.17:890][ 0]LogMemory: Process Virtual Memory: 662.04 MB used, 662.04 MB peak +[2025.06.14-02.22.17:890][ 0]LogMemory: Physical Memory: 26913.57 MB used, 5595.73 MB free, 32509.30 MB total +[2025.06.14-02.22.17:890][ 0]LogMemory: Virtual Memory: 43631.83 MB used, 2701.47 MB free, 46333.30 MB total +[2025.06.14-02.22.17:890][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.14-02.22.17:894][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.14-02.22.17:900][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.14-02.22.17:900][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.14-02.22.17:900][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.14-02.22.17:900][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.14-02.22.17:902][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.14-02.22.18:134][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.14-02.22.18:134][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.14-02.22.18:134][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.14-02.22.18:134][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.14-02.22.18:134][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.14-02.22.18:143][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.14-02.22.18:143][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.14-02.22.18:242][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.14-02.22.18:242][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.14-02.22.18:242][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.14-02.22.18:242][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.14-02.22.18:242][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.14-02.22.18:242][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.14-02.22.18:243][ 0]LogWindows: Attached monitors: +[2025.06.14-02.22.18:243][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.14-02.22.18:243][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.14-02.22.18:243][ 0]LogWindows: Found 2 attached monitors. +[2025.06.14-02.22.18:243][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.14-02.22.18:243][ 0]LogRHI: RHI Adapter Info: +[2025.06.14-02.22.18:243][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.14-02.22.18:243][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.14-02.22.18:243][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.14-02.22.18:243][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.14-02.22.18:243][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.14-02.22.18:304][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.14-02.22.18:304][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.14-02.22.18:351][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.14-02.22.18:351][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.14-02.22.18:351][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.14-02.22.18:352][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.14-02.22.18:352][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.14-02.22.18:352][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.14-02.22.18:352][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.14-02.22.18:424][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000082C4B3D2300) +[2025.06.14-02.22.18:424][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000082C4B3D2580) +[2025.06.14-02.22.18:424][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x0000082C4B3D2800) +[2025.06.14-02.22.18:424][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.14-02.22.18:424][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.14-02.22.18:425][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.14-02.22.18:425][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.14-02.22.18:425][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.14-02.22.18:456][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.14-02.22.18:458][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.14-02.22.18:465][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.14-02.22.18:465][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.14-02.22.18:486][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.14-02.22.18:486][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.14-02.22.18:486][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.14-02.22.18:486][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.14-02.22.18:486][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.14-02.22.18:486][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.14-02.22.18:486][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.14-02.22.18:486][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.14-02.22.18:487][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.14-02.22.18:512][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.14-02.22.18:529][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.14-02.22.18:529][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.14-02.22.18:546][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.14-02.22.18:546][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.14-02.22.18:546][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.14-02.22.18:546][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.14-02.22.18:563][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.14-02.22.18:563][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.14-02.22.18:563][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.14-02.22.18:580][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.14-02.22.18:580][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.14-02.22.18:580][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.14-02.22.18:580][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.14-02.22.18:597][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.14-02.22.18:597][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.14-02.22.18:617][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.14-02.22.18:617][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.14-02.22.18:617][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.14-02.22.18:617][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.14-02.22.18:617][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.14-02.22.18:655][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.14-02.22.18:659][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.14-02.22.18:659][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.14-02.22.18:659][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.14-02.22.18:661][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.14-02.22.18:661][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.14-02.22.18:661][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.14-02.22.18:661][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.14-02.22.18:661][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.14-02.22.18:711][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.14-02.22.18:711][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.14-02.22.18:711][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.14-02.22.18:711][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.14-02.22.18:712][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.14-02.22.18:712][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.14-02.22.18:713][ 0]LogZenServiceInstance: Found existing instance running on port 8558 matching our settings, no actions needed +[2025.06.14-02.22.18:714][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.14-02.22.18:714][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.003 seconds +[2025.06.14-02.22.18:725][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.14-02.22.18:730][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.14-02.22.18:730][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.02ms. RandomReadSpeed=2004.93MBs, RandomWriteSpeed=190.70MBs. Assigned SpeedClass 'Local' +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.14-02.22.18:731][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.14-02.22.18:731][ 0]LogShaderCompilers: Guid format shader working directory is 18 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/47772/). +[2025.06.14-02.22.18:732][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/375561B14F0ADD0845F27AA2B9E697BA/'. +[2025.06.14-02.22.18:732][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.14-02.22.18:732][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.14-02.22.18:733][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.14-02.22.18:733][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.14-02.22.19:416][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.14-02.22.19:674][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.14-02.22.19:675][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.14-02.22.19:675][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.14-02.22.19:675][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.14-02.22.19:676][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.14-02.22.19:676][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.14-02.22.19:676][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.14-02.22.19:676][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.14-02.22.19:693][ 0]LogAssetRegistry: FAssetRegistry took 0.0026 seconds to start up +[2025.06.14-02.22.19:694][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.14-02.22.19:698][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.14-02.22.19:849][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-02.22.19:850][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.14-02.22.19:851][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.14-02.22.19:851][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.14-02.22.19:865][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.14-02.22.19:865][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.14-02.22.19:884][ 0]LogDeviceProfileManager: Active device profile: [0000082C68D75000][0000082C4D5BA000 66] WindowsEditor +[2025.06.14-02.22.19:884][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.14-02.22.19:884][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.14-02.22.19:886][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.14-02.22.19:886][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.14-02.22.19:914][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.19:915][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:916][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.14-02.22.19:917][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.14-02.22.19:918][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.14-02.22.20:060][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.14-02.22.20:060][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.14-02.22.20:060][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.14-02.22.20:060][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.14-02.22.20:060][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.14-02.22.20:266][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.63ms +[2025.06.14-02.22.20:286][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.14-02.22.20:297][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.14-02.22.20:297][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.14-02.22.20:442][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.14-02.22.20:442][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.14-02.22.20:465][ 0]LogSlate: Border +[2025.06.14-02.22.20:465][ 0]LogSlate: BreadcrumbButton +[2025.06.14-02.22.20:465][ 0]LogSlate: Brushes.Title +[2025.06.14-02.22.20:465][ 0]LogSlate: Default +[2025.06.14-02.22.20:465][ 0]LogSlate: Icons.Save +[2025.06.14-02.22.20:465][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.14-02.22.20:465][ 0]LogSlate: ListView +[2025.06.14-02.22.20:465][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.14-02.22.20:465][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.14-02.22.20:465][ 0]LogSlate: TableView.DarkRow +[2025.06.14-02.22.20:465][ 0]LogSlate: TableView.Row +[2025.06.14-02.22.20:465][ 0]LogSlate: TreeView +[2025.06.14-02.22.20:561][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.14-02.22.20:562][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.330 ms +[2025.06.14-02.22.20:572][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.14-02.22.20:589][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.14-02.22.20:590][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.14-02.22.20:590][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.14-02.22.20:677][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.14-02.22.20:734][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.14-02.22.20:969][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.14-02.22.20:973][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.14-02.22.20:973][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.14-02.22.20:973][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:59104'. +[2025.06.14-02.22.20:977][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.14-02.22.21:006][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.14-02.22.21:006][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.14-02.22.21:006][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.14-02.22.21:006][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.14-02.22.21:104][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.14-02.22.21:104][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.14-02.22.21:116][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.14-02.22.21:250][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 58E75E0892CD49D68000000000008900 | Instance: ACF21DE74CC4C2D2CA3A37BD33E3E4F6 (T-47772). +[2025.06.14-02.22.21:792][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.14-02.22.22:069][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.39ms +[2025.06.14-02.22.22:086][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.36ms +[2025.06.14-02.22.22:312][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.14-02.22.22:312][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.14-02.22.22:321][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.14-02.22.22:331][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.14-02.22.22:345][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.14-02.22.22:345][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.14-02.22.22:402][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.14-02.22.22:402][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.14-02.22.22:402][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.14-02.22.22:402][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.14-02.22.22:404][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.14-02.22.22:404][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.14-02.22.22:405][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.14-02.22.22:405][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.14-02.22.22:405][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.14-02.22.22:406][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.14-02.22.22:406][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.14-02.22.22:406][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.14-02.22.22:406][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.14-02.22.22:407][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.14-02.22.22:407][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.14-02.22.22:407][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.14-02.22.22:407][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.14-02.22.22:407][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.14-02.22.22:408][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.14-02.22.22:408][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.14-02.22.22:409][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.14-02.22.22:409][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.14-02.22.22:410][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.14-02.22.22:410][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.14-02.22.22:411][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.14-02.22.22:411][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.14-02.22.22:412][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.14-02.22.22:412][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.14-02.22.22:412][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.14-02.22.22:413][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.14-02.22.22:413][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.14-02.22.22:413][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.14-02.22.22:414][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.14-02.22.22:414][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.14-02.22.22:414][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.14-02.22.22:536][ 0]SourceControl: Revision control is disabled +[2025.06.14-02.22.22:564][ 0]SourceControl: Revision control is disabled +[2025.06.14-02.22.22:593][ 0]LogCollectionManager: Loaded 0 collections in 0.000639 seconds +[2025.06.14-02.22.22:594][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.14-02.22.22:596][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.14-02.22.22:597][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.14-02.22.22:660][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.14-02.22.22:660][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.14-02.22.22:662][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.14-02.22.22:662][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.14-02.22.22:662][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.14-02.22.22:662][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.14-02.22.22:689][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.14-02.22.22:689][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.14-02.22.22:702][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-14T02:22:22.702Z using C +[2025.06.14-02.22.22:703][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.14-02.22.22:703][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.14-02.22.22:703][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.14-02.22.22:706][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.14-02.22.22:706][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.14-02.22.22:706][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.14-02.22.22:706][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000044 +[2025.06.14-02.22.22:708][ 0]LogFab: Display: Logging in using persist +[2025.06.14-02.22.22:753][ 0]LogUObjectArray: 52514 objects as part of root set at end of initial load. +[2025.06.14-02.22.22:753][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.14-02.22.22:762][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36347 public script object entries (985.45 KB) +[2025.06.14-02.22.22:762][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.14-02.22.22:835][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:835][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:836][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.14-02.22.22:844][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:860][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.14-02.22.22:861][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:861][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.14-02.22.22:862][ 0]LogEngine: Initializing Engine... +[2025.06.14-02.22.22:864][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.14-02.22.22:864][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.14-02.22.22:924][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.14-02.22.22:938][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.14-02.22.22:947][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.14-02.22.22:947][ 0]LogInit: Texture streaming: Enabled +[2025.06.14-02.22.22:955][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.14-02.22.22:965][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.14-02.22.22:972][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.14-02.22.22:973][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.14-02.22.22:973][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.14-02.22.22:978][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.14-02.22.23:012][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.14-02.22.23:013][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.14-02.22.23:014][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.14-02.22.23:014][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.14-02.22.23:014][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.14-02.22.23:016][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.14-02.22.23:017][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.14-02.22.23:017][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.14-02.22.23:017][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.14-02.22.23:017][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.14-02.22.23:017][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.14-02.22.23:022][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.14-02.22.23:025][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.14-02.22.23:025][ 0]LogInit: Transaction tracking system initialized +[2025.06.14-02.22.23:036][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.14-02.22.23:089][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.47ms +[2025.06.14-02.22.23:090][ 0]LocalizationService: Localization service is disabled +[2025.06.14-02.22.23:103][ 0]LogTimingProfiler: Initialize +[2025.06.14-02.22.23:103][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.14-02.22.23:103][ 0]LoadingProfiler: Initialize +[2025.06.14-02.22.23:103][ 0]LoadingProfiler: OnSessionChanged +[2025.06.14-02.22.23:103][ 0]LogNetworkingProfiler: Initialize +[2025.06.14-02.22.23:103][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.14-02.22.23:103][ 0]LogMemoryProfiler: Initialize +[2025.06.14-02.22.23:103][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.14-02.22.23:270][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.14-02.22.23:289][ 0]LogPython: Using Python 3.11.8 +[2025.06.14-02.22.23:996][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.14-02.22.24:005][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.14-02.22.24:055][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.14-02.22.24:085][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.14-02.22.24:086][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.14-02.22.24:155][ 0]LogEditorDataStorage: Initializing +[2025.06.14-02.22.24:156][ 0]LogEditorDataStorage: Initialized +[2025.06.14-02.22.24:176][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.14-02.22.24:178][ 0]SourceControl: Revision control is disabled +[2025.06.14-02.22.24:178][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 8.045 +[2025.06.14-02.22.24:178][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.14-02.22.24:180][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.14-02.22.24:180][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.14-02.22.24:197][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.14-02.22.24:218][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.14-02.22.24:363][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.14-02.22.24:363][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.14-02.22.24:925][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.2 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.14-02.22.26:981][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.14-02.22.26:993][ 0]LogSkeletalMesh: Built Skeletal Mesh [5.20s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.14-02.22.27:002][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.14-02.22.27:003][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.41ms +[2025.06.14-02.22.27:011][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.14-02.22.27:011][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.14-02.22.27:012][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.14-02.22.27:012][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.14-02.22.27:012][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.14-02.22.27:058][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.14-02.22.27:077][ 0]LogWorldPartition: Display: WorldPartition initialize took 64.813 ms +[2025.06.14-02.22.27:085][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.14-02.22.27:096][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.36ms +[2025.06.14-02.22.27:096][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.14-02.22.27:097][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.534ms to complete. +[2025.06.14-02.22.27:101][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 10.968 +[2025.06.14-02.22.27:250][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.14-02.22.27:311][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.14-02.22.27:351][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.14-02.22.27:393][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.14-02.22.27:435][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.14-02.22.27:446][ 0]LogSlate: Took 0.000189 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.14-02.22.27:466][ 0]LogSlate: Took 0.000355 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.14-02.22.27:468][ 0]LogSlate: Took 0.001575 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.14-02.22.27:546][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:547][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.14-02.22.27:547][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:547][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.14-02.22.27:547][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:547][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:547][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:548][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:548][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:548][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.14-02.22.27:548][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:548][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:548][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:550][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.14-02.22.27:550][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:550][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:550][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:550][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:550][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.14-02.22.27:550][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.14-02.22.27:653][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:653][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:653][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:653][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:653][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:655][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:655][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:655][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.14-02.22.27:706][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.14-02.22.27:712][ 0]LogStall: Startup... +[2025.06.14-02.22.27:714][ 0]LogStall: Startup complete. +[2025.06.14-02.22.27:719][ 0]LogLoad: (Engine Initialization) Total time: 11.59 seconds +[2025.06.14-02.22.27:851][ 0]LogAssetRegistry: AssetRegistryGather time 0.0681s: AssetDataDiscovery 0.0244s, AssetDataGather 0.0096s, StoreResults 0.0341s. Wall time 8.1600s. + NumCachedDirectories 0. NumUncachedDirectories 1716. NumCachedFiles 7500. NumUncachedFiles 0. + BackgroundTickInterruptions 0. +[2025.06.14-02.22.27:870][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.14-02.22.27:871][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.14-02.22.27:872][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.14-02.22.27:872][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.14-02.22.27:886][ 0]LogSlate: Took 0.000170 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.14-02.22.27:921][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.14-02.22.27:921][ 0]LogStreaming: Display: FlushAsyncLoading(353): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-02.22.27:923][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.14-02.22.27:923][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.14-02.22.27:923][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.14-02.22.27:959][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.14-02.22.27:959][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.14-02.22.27:960][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.14-02.22.27:960][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.14-02.22.27:960][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.14-02.22.27:985][ 0]LogSourceControl: Uncontrolled asset enumeration finished in 0.114986 seconds (Found 7475 uncontrolled assets) +[2025.06.14-02.22.27:991][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.14-02.22.27:991][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.14-02.22.28:021][ 0]LogSlate: Took 0.000195 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.14-02.22.28:041][ 0]LogAutomationController: Ignoring very large delta of 16788676.80 seconds in calls to FAutomationControllerManager::Tick() and not penalizing unresponsive tests +[2025.06.14-02.22.28:041][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.14-02.22.28:043][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.14-02.22.28:069][ 0]LogPython: registering + +[2025.06.14-02.22.28:078][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 35.135 ms +[2025.06.14-02.22.28:172][ 1]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 85.53 ms. Compile time 25.80 ms, link time 59.57 ms. +[2025.06.14-02.22.29:418][ 5]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.397782 +[2025.06.14-02.22.29:420][ 5]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.14-02.22.29:420][ 5]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6.711617 +[2025.06.14-02.22.30:103][ 9]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.14-02.22.30:402][ 45]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 7.686526 +[2025.06.14-02.22.30:403][ 45]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.14-02.22.30:403][ 45]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7.686526, Update Interval: 318.882416 +[2025.06.14-02.22.30:712][ 77]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-04.22.28 Remaining: 7200.59] Refresh[Expires: 2025-12-10T10:21:22.158Z Remaining: 15494334.16] State: Valid +[2025.06.14-02.22.30:718][ 78]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.14-02.22.31:043][105]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.14-02.22.31:044][105]LogFab: Display: User logged in +[2025.06.14-02.22.31:044][105]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.14-02.22.31:314][136]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-iz747fyY20W9wSk1tBmaFw-SmRguWuOBUyKafHHNEp0FQ] +[2025.06.14-02.22.33:254][340]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.14-02.22.49:103][183]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.14-02.22.59:072][333]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_DeepFish.BP_DeepFish +[2025.06.14-02.22.59:074][333]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_2 +[2025.06.14-02.22.59:113][333]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-02.22.59:907][333]LogSlate: Took 0.000879 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.14-02.22.59:910][333]LogSlate: Took 0.000684 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.14-02.22.59:950][333]LogSlate: Took 0.000464 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.14-02.23.06:032][ 19]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Characters/BP_PawnEntity.BP_PawnEntity +[2025.06.14-02.23.06:032][ 19]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_3 +[2025.06.14-02.23.17:553][297]LogBlueprint: Warning: Reparenting blueprint Blueprint /Game/Characters/BP_PawnEntity.BP_PawnEntity from Pawn to PawnWithSkill... +[2025.06.14-02.23.17:577][297]LogK2Compiler: Warning: ValidateVariableNames name CurrentEndurance (used in /Game/Characters/BP_PawnEntity.BP_PawnEntity) is already taken by /Script/ProjectFish.PawnWithSkill:CurrentEndurance +[2025.06.14-02.23.17:578][297]LogBlueprint: Warning: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Characters\BP_PawnEntity.uasset: [Compiler] Found a member variable with a conflicting name (CurrentEndurance) - changed to CurrentEndurance_0. +[2025.06.14-02.23.17:578][297]LogK2Compiler: Warning: ValidateVariableNames name MaxEndurance (used in /Game/Characters/BP_PawnEntity.BP_PawnEntity) is already taken by /Script/ProjectFish.PawnWithSkill:MaxEndurance +[2025.06.14-02.23.17:578][297]LogBlueprint: Warning: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Characters\BP_PawnEntity.uasset: [Compiler] Found a member variable with a conflicting name (MaxEndurance) - changed to MaxEndurance_0. +[2025.06.14-02.23.17:666][297]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.14-02.23.19:348][476]LogUObjectHash: Compacting FUObjectHashTables data took 0.82ms +[2025.06.14-02.24.15:275][303]LogSlate: Window 'Delete Variable' being destroyed +[2025.06.14-02.24.18:398][443]LogSlate: Window 'Delete Variable' being destroyed +[2025.06.14-02.24.18:737][479]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.004 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-02.25.27:504][371]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.14-02.25.28:536][477]LogFileHelpers: InternalPromptForCheckoutAndSave started... +[2025.06.14-02.25.28:591][477]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Characters/BP_PawnEntity] ([2] browsable assets)... +[2025.06.14-02.25.28:591][477]OBJ SavePackage: Finished generating thumbnails for package [/Game/Characters/BP_PawnEntity] +[2025.06.14-02.25.28:591][477]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Characters/BP_PawnEntity" FILE="G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset" SILENT=true +[2025.06.14-02.25.28:603][477]LogSavePackage: Moving output files for package: /Game/Characters/BP_PawnEntity +[2025.06.14-02.25.28:603][477]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_PawnEntity9073A0AF46A958A38A22A6A7FF71D300.tmp' to 'G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset' +[2025.06.14-02.25.28:613][477]LogFileHelpers: InternalPromptForCheckoutAndSave took 77.894 ms +[2025.06.14-02.25.28:654][477]LogContentValidation: Display: Starting to validate 1 assets +[2025.06.14-02.25.28:654][477]LogContentValidation: Enabled validators: +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/DataValidation.EditorValidator_Material +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/DataValidation.DirtyFilesChangelistValidator +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/DataValidation.EditorValidator_Localization +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/DataValidation.PackageFileValidator +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/DataValidation.WorldPartitionChangelistValidator +[2025.06.14-02.25.28:654][477]LogContentValidation: /Script/InputBlueprintNodes.EnhancedInputUserWidgetValidator +[2025.06.14-02.25.28:654][477]AssetCheck: /Game/Characters/BP_PawnEntity Validating asset +[2025.06.14-02.27.49:866][750]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 327.159241 +[2025.06.14-02.27.50:869][753]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.27.50:869][753]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 327.826996, Update Interval: 346.609100 +[2025.06.14-02.33.41:256][804]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 678.548401 +[2025.06.14-02.33.42:256][807]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.33.42:256][807]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 679.215271, Update Interval: 328.907745 +[2025.06.14-02.39.16:291][809]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1013.584473 +[2025.06.14-02.39.17:293][812]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.39.17:293][812]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1014.253723, Update Interval: 316.743683 +[2025.06.14-02.44.45:674][797]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1342.967285 +[2025.06.14-02.44.46:676][800]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.44.46:676][800]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1343.636841, Update Interval: 320.499268 +[2025.06.14-02.50.37:387][852]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 1694.680786 +[2025.06.14-02.50.38:385][855]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.50.38:385][855]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 1695.345581, Update Interval: 314.251526 +[2025.06.14-02.56.40:114][940]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2057.408447 +[2025.06.14-02.56.41:114][943]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-02.56.41:114][943]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2058.074219, Update Interval: 325.298615 +[2025.06.14-03.02.43:834][ 31]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2421.128418 +[2025.06.14-03.02.44:834][ 34]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.02.44:834][ 34]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2421.795410, Update Interval: 319.732056 +[2025.06.14-03.08.42:216][106]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 2779.510254 +[2025.06.14-03.08.43:216][109]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.08.43:216][109]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 2780.177002, Update Interval: 311.233856 +[2025.06.14-03.14.28:973][152]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3128.209473 +[2025.06.14-03.14.29:973][155]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.14.29:973][155]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3128.879395, Update Interval: 307.549683 +[2025.06.14-03.20.03:724][120]LogUObjectHash: Compacting FUObjectHashTables data took 3.36ms +[2025.06.14-03.20.03:731][120]LogStreaming: Display: FlushAsyncLoading(536): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-03.20.03:824][120]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Gameplay\BP_Dabaza_GameMode.uasset: [Compiler] In use pin no longer exists on node Change Endurance . Please refresh node or break links to remove pin. +[2025.06.14-03.20.03:824][120]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Gameplay\BP_Dabaza_GameMode.uasset: [Compiler] In use pin Target no longer exists on node Change Endurance . Please refresh node or break links to remove pin. +[2025.06.14-03.20.03:824][120]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Gameplay\BP_Dabaza_GameMode.uasset: [Compiler] In use pin Endurance no longer exists on node Change Endurance . Please refresh node or break links to remove pin. +[2025.06.14-03.20.03:824][120]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Gameplay\BP_Dabaza_GameMode.uasset: [Compiler] Could not find a function named "ChangeEndurance" in 'BP_PawnEntity_C'. +Make sure 'BP_PawnEntity_C' has been compiled for Change Endurance +[2025.06.14-03.20.03:825][120]LogBlueprint: Error: [AssetLog] G:\TestForNPCAI\ProjectFish\Content\Gameplay\BP_Dabaza_GameMode.uasset: [Compiler] This blueprint (self) is not a BP_PawnEntity_C, therefore ' Target ' must have a connection. +[2025.06.14-03.20.03:886][120]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.14-03.20.03:888][120]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.14-03.20.03:888][120]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.14-03.20.03:888][120]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Inactive, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.14-03.20.03:904][120]LogWorldPartition: Display: WorldPartition initialize took 17.082 ms (total: 81.895 ms) +[2025.06.14-03.20.03:921][120]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SK_Mannequin) ... +[2025.06.14-03.20.03:972][120]LogAssetEditorSubsystem: Opening Asset editor for World /Game/Maps/Dabaza.Dabaza +[2025.06.14-03.20.03:972][120]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.14-03.20.04:028][120]LogWorld: UWorld::CleanupWorld for TopDownMap, bSessionEnded=true, bCleanupResources=true +[2025.06.14-03.20.04:029][120]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.14-03.20.04:029][120]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap +[2025.06.14-03.20.04:054][120]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.14-03.20.04:059][120]LogUObjectHash: Compacting FUObjectHashTables data took 0.88ms +[2025.06.14-03.20.04:062][120]LogWorld: UWorld::CleanupWorld for Dabaza, bSessionEnded=true, bCleanupResources=true +[2025.06.14-03.20.04:062][120]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.14-03.20.04:062][120]LogWorldPartition: UWorldPartition::Uninitialize : World = /Game/Maps/Dabaza.Dabaza +[2025.06.14-03.20.04:078][120]LogUObjectHash: Compacting FUObjectHashTables data took 0.80ms +[2025.06.14-03.20.04:091][120]LogUObjectHash: Compacting FUObjectHashTables data took 0.71ms +[2025.06.14-03.20.04:108][120]LogAudio: Display: Audio Device (ID: 1) registered with world 'Dabaza'. +[2025.06.14-03.20.04:108][120]LogChaosDD: Creating Chaos Debug Draw Scene for world Dabaza +[2025.06.14-03.20.04:110][120]LogWorldPartition: ULevel::OnLevelLoaded(Dabaza)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.14-03.20.04:110][120]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.14-03.20.04:110][120]LogWorldPartition: UWorldPartition::Initialize : World = /Game/Maps/Dabaza.Dabaza, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.14-03.20.04:119][120]LogWorldPartition: Display: WorldPartition initialize took 9.230 ms (total: 91.126 ms) +[2025.06.14-03.20.04:159][120]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.14-03.20.04:179][120]LogUObjectHash: Compacting FUObjectHashTables data took 0.75ms +[2025.06.14-03.20.04:186][120]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.14-03.20.04:186][120]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.51ms to complete. +[2025.06.14-03.20.06:880][409]LogAssetEditorSubsystem: Opening Asset editor for Blueprint /Game/Gameplay/BP_Dabaza_GameMode.BP_Dabaza_GameMode +[2025.06.14-03.20.06:880][409]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_4 +[2025.06.14-03.20.07:194][409]LogStreaming: Display: FlushAsyncLoading(580): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-03.20.11:073][825]LogSlate: Took 0.000764 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensedItalic.ttf' (160K) +[2025.06.14-03.20.29:181][482]LogHotReload: New module detected: UnrealEditor-ProjectFish-0001.dll +[2025.06.14-03.20.29:516][483]LogHotReload: Starting Hot-Reload from IDE +[2025.06.14-03.20.29:579][483]LogUObjectHash: Compacting FUObjectHashTables data took 0.78ms +[2025.06.14-03.20.29:599][483]LogClass: UPackage /Script/ProjectFish Reload. +[2025.06.14-03.20.29:599][483]LogClass: UClass SkillManager Reload. +[2025.06.14-03.20.29:630][483]LogClass: Could not find existing class SkillManager in package /Script/ProjectFish for reload, assuming new or modified class +[2025.06.14-03.20.29:630][483]LogClass: Function CreateSkill is new or belongs to a modified class. +[2025.06.14-03.20.29:630][483]LogClass: Function GetAllPawns is new or belongs to a modified class. +[2025.06.14-03.20.29:630][483]LogClass: Function GetAllSkills is new or belongs to a modified class. +[2025.06.14-03.20.29:630][483]LogClass: Function RemoveSkill is new or belongs to a modified class. +[2025.06.14-03.20.29:652][483]Re-instancing SkillManager after reload. +[2025.06.14-03.20.29:840][483]LogUObjectHash: Compacting FUObjectHashTables data took 0.76ms +[2025.06.14-03.20.29:879][483]LogStreaming: Display: FlushAsyncLoading(581): 1 QueuedPackages, 0 AsyncPackages +[2025.06.14-03.20.29:886][483]Display: HotReload took 0.4s. +[2025.06.14-03.20.29:886][483]Display: Reload/Re-instancing Complete: 1 package changed, 1 class changed, 13 classes unchanged, 4 enums unchanged, 4 scriptstructs unchanged, 2 functions remapped, 4 scriptstructs remapped +[2025.06.14-03.20.29:977][483]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3489.220947 +[2025.06.14-03.20.31:161][487]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.20.31:161][487]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3490.055420, Update Interval: 314.857635 +[2025.06.14-03.24.18:734][170]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-03.26.23:536][544]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 3842.781006 +[2025.06.14-03.26.24:533][547]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.26.24:533][547]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 3843.445068, Update Interval: 311.915039 +[2025.06.14-03.30.04:385][206]LogUObjectHash: Compacting FUObjectHashTables data took 1.12ms +[2025.06.14-03.30.04:386][206]LogFileHelpers: Editor autosave (incl. external actors) for '/Game/Maps/Dabaza' took 0.082 +[2025.06.14-03.30.04:387][206]OBJ SavePackage: Generating thumbnails for [0] asset(s) in package [/Game/Gameplay/BP_Dabaza_GameMode] ([2] browsable assets)... +[2025.06.14-03.30.04:387][206]OBJ SavePackage: Finished generating thumbnails for package [/Game/Gameplay/BP_Dabaza_GameMode] +[2025.06.14-03.30.04:387][206]Cmd: OBJ SAVEPACKAGE PACKAGE="/Game/Gameplay/BP_Dabaza_GameMode" FILE="G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset" SILENT=false AUTOSAVING=true +[2025.06.14-03.30.04:395][206]LogSavePackage: Moving output files for package: /Temp/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1 +[2025.06.14-03.30.04:396][206]LogSavePackage: Moving 'G:/TestForNPCAI/ProjectFish/Saved/BP_Dabaza_GameMode_Auto194C4E6BE4A32A7A0E6A010AFFA0C1857.tmp' to 'G:/TestForNPCAI/ProjectFish/Saved/Autosaves/Game/Gameplay/BP_Dabaza_GameMode_Auto1.uasset' +[2025.06.14-03.30.04:396][206]LogFileHelpers: Auto-saving content packages took 0.010 +[2025.06.14-03.32.29:914][643]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4209.164551 +[2025.06.14-03.32.30:914][646]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.32.30:914][646]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4209.831543, Update Interval: 331.000702 +[2025.06.14-03.38.54:656][797]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4593.910645 +[2025.06.14-03.38.55:660][800]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.38.55:660][800]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4594.578125, Update Interval: 348.698395 +[2025.06.14-03.45.35:735][ 0]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 4994.980957 +[2025.06.14-03.45.36:737][ 3]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.45.36:737][ 3]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 4995.647949, Update Interval: 344.093140 +[2025.06.14-03.52.10:126][183]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5389.371094 +[2025.06.14-03.52.11:125][186]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.52.11:125][186]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5390.036133, Update Interval: 352.351440 +[2025.06.14-03.58.49:506][381]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 5788.757324 +[2025.06.14-03.58.50:508][384]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-03.58.50:508][384]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 5789.430176, Update Interval: 315.542480 +[2025.06.14-04.04.37:561][425]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6136.816406 +[2025.06.14-04.04.38:559][428]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.04.38:559][428]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6137.482910, Update Interval: 317.344269 +[2025.06.14-04.10.29:944][482]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6489.201172 +[2025.06.14-04.10.30:946][485]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.10.30:946][485]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6489.867676, Update Interval: 331.551880 +[2025.06.14-04.17.01:666][657]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 6880.921387 +[2025.06.14-04.17.02:664][660]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.17.02:664][660]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 6881.590820, Update Interval: 323.443695 +[2025.06.14-04.20.49:699][341]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.14-04.20.49:699][341]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.91 RefreshExpires: 1.549e+07 +[2025.06.14-04.20.50:697][344]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-06.20.50 Remaining: 7200.23] Refresh[Expires: 2025-12-10T10:21:22.158Z Remaining: 15487232.16] State: Valid +[2025.06.14-04.23.13:050][771]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7252.310059 +[2025.06.14-04.23.14:050][774]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.23.14:050][774]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7252.975586, Update Interval: 328.211914 +[2025.06.14-04.24.18:733][969]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-04.29.15:097][857]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7614.364258 +[2025.06.14-04.29.16:116][860]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.29.16:116][860]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 7615.041504, Update Interval: 353.384186 +[2025.06.14-04.35.56:502][ 61]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8015.775391 +[2025.06.14-04.35.57:495][ 64]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.35.57:495][ 64]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8016.440918, Update Interval: 343.867920 +[2025.06.14-04.42.31:922][247]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8411.193359 +[2025.06.14-04.42.32:922][250]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.42.32:922][250]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8411.866211, Update Interval: 354.808807 +[2025.06.14-04.49.22:018][477]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 8821.298828 +[2025.06.14-04.49.23:008][480]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.49.23:008][481]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8821.968750, Update Interval: 313.178497 +[2025.06.14-04.55.08:405][516]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 9167.679688 +[2025.06.14-04.55.09:419][519]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-04.55.09:419][519]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9168.339844, Update Interval: 332.602936 +[2025.06.14-05.01.18:153][625]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 9537.437500 +[2025.06.14-05.01.19:135][628]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.01.19:136][628]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9538.093750, Update Interval: 348.482300 +[2025.06.14-05.07.48:213][796]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 9927.494141 +[2025.06.14-05.07.49:215][798]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.07.49:215][798]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 9928.166992, Update Interval: 329.643860 +[2025.06.14-05.13.56:623][900]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 10295.895508 +[2025.06.14-05.13.57:607][903]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.13.57:607][904]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 10296.567383, Update Interval: 342.349915 +[2025.06.14-05.20.20:022][ 50]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 10679.302734 +[2025.06.14-05.20.21:017][ 53]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.20.21:017][ 53]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 10679.956055, Update Interval: 339.363373 +[2025.06.14-05.24.18:734][767]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-05.26.58:427][245]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11077.704102 +[2025.06.14-05.26.59:431][248]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.26.59:431][249]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11078.376953, Update Interval: 358.297058 +[2025.06.14-05.33.45:493][466]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11484.778320 +[2025.06.14-05.33.46:485][469]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.33.46:485][469]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11485.425781, Update Interval: 357.141632 +[2025.06.14-05.40.20:240][650]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 11879.509766 +[2025.06.14-05.40.21:243][653]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.40.21:243][653]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 11880.168945, Update Interval: 328.330933 +[2025.06.14-05.46.19:961][729]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12239.211914 +[2025.06.14-05.46.20:952][732]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.46.20:952][732]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12239.874023, Update Interval: 313.227936 +[2025.06.14-05.52.17:364][801]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12596.605469 +[2025.06.14-05.52.18:358][804]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.52.18:358][804]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12597.277344, Update Interval: 304.215210 +[2025.06.14-05.58.00:761][831]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 12940.012695 +[2025.06.14-05.58.01:751][834]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-05.58.01:751][834]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 12940.665039, Update Interval: 309.056671 +[2025.06.14-06.04.03:167][918]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 13302.432617 +[2025.06.14-06.04.04:170][921]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.04.04:170][921]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 13303.092773, Update Interval: 319.298065 +[2025.06.14-06.09.58:555][984]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 13657.812500 +[2025.06.14-06.09.59:550][987]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.09.59:550][987]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 13658.467773, Update Interval: 348.835724 +[2025.06.14-06.16.25:957][146]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14045.213867 +[2025.06.14-06.16.26:948][149]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.16.26:948][149]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14045.869141, Update Interval: 327.829224 +[2025.06.14-06.19.10:975][641]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.14-06.19.10:975][641]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.9 RefreshExpires: 1.548e+07 +[2025.06.14-06.19.11:991][644]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-08.19.11 Remaining: 7200.59] Refresh[Expires: 2025-12-10T10:21:22.158Z Remaining: 15480131.16] State: Valid +[2025.06.14-06.22.29:012][235]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14408.259766 +[2025.06.14-06.22.30:010][238]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.22.30:010][238]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14408.923828, Update Interval: 356.713165 +[2025.06.14-06.24.18:735][565]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.001 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-06.29.20:761][470]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 14820.029297 +[2025.06.14-06.29.21:774][473]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.29.21:775][473]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 14820.706055, Update Interval: 345.819885 +[2025.06.14-06.36.06:822][688]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 15226.099609 +[2025.06.14-06.36.07:832][691]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.36.07:832][691]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 15226.757812, Update Interval: 357.414459 +[2025.06.14-06.42.51:562][902]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 15630.849609 +[2025.06.14-06.42.52:570][905]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.42.52:571][905]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 15631.529297, Update Interval: 355.572388 +[2025.06.14-06.49.32:985][106]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 16032.266602 +[2025.06.14-06.49.34:651][111]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.49.34:651][112]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 16033.585938, Update Interval: 347.321381 +[2025.06.14-06.56.14:060][309]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 16433.351562 +[2025.06.14-06.56.15:067][312]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-06.56.15:067][313]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 16434.019531, Update Interval: 323.879517 +[2025.06.14-07.02.19:787][406]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 16799.068359 +[2025.06.14-07.02.20:790][409]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.02.20:791][409]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 16799.732422, Update Interval: 352.887970 +[2025.06.14-07.09.01:533][611]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 17200.804688 +[2025.06.14-07.09.02:517][614]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.09.02:517][615]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 17201.462891, Update Interval: 338.374573 +[2025.06.14-07.15.28:578][772]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 17587.845703 +[2025.06.14-07.15.29:601][775]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.15.29:601][776]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 17588.521484, Update Interval: 349.062775 +[2025.06.14-07.22.10:992][979]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 17990.248047 +[2025.06.14-07.22.12:657][984]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.22.12:658][985]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 17991.580078, Update Interval: 350.401306 +[2025.06.14-07.24.18:736][363]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.001 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-07.28.48:743][172]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 18388.013672 +[2025.06.14-07.28.49:742][175]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.28.49:742][175]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 18388.685547, Update Interval: 348.987701 +[2025.06.14-07.35.22:120][352]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 18781.406250 +[2025.06.14-07.35.23:127][355]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.35.23:127][356]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 18782.078125, Update Interval: 337.199005 +[2025.06.14-07.41.59:862][545]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 19179.154297 +[2025.06.14-07.42.00:865][548]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.42.00:865][549]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 19179.824219, Update Interval: 318.483215 +[2025.06.14-07.47.53:586][606]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 19532.849609 +[2025.06.14-07.47.54:597][609]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.47.54:597][609]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 19533.525391, Update Interval: 327.301849 +[2025.06.14-07.53.56:314][694]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 19895.558594 +[2025.06.14-07.53.57:308][697]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-07.53.57:308][698]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 19896.230469, Update Interval: 359.719849 +[2025.06.14-08.00.48:056][929]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 20307.271484 +[2025.06.14-08.00.49:065][932]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.00.49:065][932]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 20307.945312, Update Interval: 328.561676 +[2025.06.14-08.06.49:108][ 12]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 20668.339844 +[2025.06.14-08.06.50:116][ 15]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.06.50:116][ 16]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 20669.019531, Update Interval: 318.433777 +[2025.06.14-08.13.03:191][134]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 21042.392578 +[2025.06.14-08.13.04:183][137]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.13.04:183][138]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 21043.041016, Update Interval: 348.172852 +[2025.06.14-08.17.32:559][942]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.14-08.17.32:559][943]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.93 RefreshExpires: 1.547e+07 +[2025.06.14-08.17.33:555][945]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-10.17.33 Remaining: 7200.26] Refresh[Expires: 2025-12-10T10:21:22.158Z Remaining: 15473029.16] State: Valid +[2025.06.14-08.19.44:930][339]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 21444.134766 +[2025.06.14-08.19.45:924][342]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.19.45:924][342]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 21444.783203, Update Interval: 317.860657 +[2025.06.14-08.24.18:735][161]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-08.25.53:315][444]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 21812.548828 +[2025.06.14-08.25.54:334][447]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.25.54:334][448]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 21813.218750, Update Interval: 303.803223 +[2025.06.14-08.31.30:395][455]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 22149.634766 +[2025.06.14-08.31.31:398][458]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.31.31:398][458]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 22150.306641, Update Interval: 324.985504 +[2025.06.14-08.37.37:467][556]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 22516.732422 +[2025.06.14-08.37.38:469][559]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.37.38:469][559]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 22517.392578, Update Interval: 327.430023 +[2025.06.14-08.43.44:527][657]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 22883.808594 +[2025.06.14-08.43.45:516][660]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.43.45:516][661]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 22884.470703, Update Interval: 357.421783 +[2025.06.14-08.50.37:614][896]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 23296.890625 +[2025.06.14-08.50.38:605][899]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.50.38:605][899]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 23297.544922, Update Interval: 355.380096 +[2025.06.14-08.57.25:023][118]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 23704.285156 +[2025.06.14-08.57.26:007][121]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-08.57.26:007][122]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 23704.943359, Update Interval: 314.983978 +[2025.06.14-09.03.24:096][195]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 24063.349609 +[2025.06.14-09.03.25:092][198]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.03.25:092][199]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 24064.019531, Update Interval: 343.188568 +[2025.06.14-09.10.05:507][399]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 24464.740234 +[2025.06.14-09.10.06:509][402]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.10.06:509][402]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 24465.404297, Update Interval: 312.052368 +[2025.06.14-09.15.56:572][452]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 24815.818359 +[2025.06.14-09.15.57:570][455]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.15.57:570][455]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 24816.484375, Update Interval: 310.823700 +[2025.06.14-09.21.53:974][524]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 25173.175781 +[2025.06.14-09.21.54:966][527]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.21.54:966][527]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 25173.828125, Update Interval: 323.769653 +[2025.06.14-09.24.18:737][959]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.001 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-09.28.12:364][659]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 25551.572266 +[2025.06.14-09.28.13:380][662]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.28.13:380][663]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 25552.257812, Update Interval: 353.646057 +[2025.06.14-09.34.42:113][828]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 25941.330078 +[2025.06.14-09.34.43:133][831]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.34.43:133][832]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 25941.998047, Update Interval: 359.732666 +[2025.06.14-09.41.28:188][ 47]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 26347.367188 +[2025.06.14-09.41.29:194][ 49]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.41.29:194][ 50]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 26348.035156, Update Interval: 300.509064 +[2025.06.14-09.47.24:892][116]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 26704.359375 +[2025.06.14-09.47.25:892][119]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.47.25:892][119]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 26705.025391, Update Interval: 342.005676 +[2025.06.14-09.53.43:607][252]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 27083.398438 +[2025.06.14-09.53.44:607][255]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.53.44:607][255]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 27084.066406, Update Interval: 310.917084 +[2025.06.14-09.59.28:986][288]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 27429.060547 +[2025.06.14-09.59.29:986][291]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-09.59.29:986][291]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 27429.726562, Update Interval: 334.349792 +[2025.06.14-10.05.36:364][390]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 27796.773438 +[2025.06.14-10.05.37:364][393]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.05.37:364][393]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 27797.441406, Update Interval: 313.041168 +[2025.06.14-10.11.46:412][500]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 28167.158203 +[2025.06.14-10.11.47:417][503]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.11.47:417][503]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 28167.826172, Update Interval: 359.523926 +[2025.06.14-10.15.53:784][242]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.14-10.15.53:784][242]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.92 RefreshExpires: 1.547e+07 +[2025.06.14-10.15.54:784][245]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-12.15.54 Remaining: 7200.58] Refresh[Expires: 2025-12-10T10:21:22.158Z Remaining: 15465928.16] State: Valid +[2025.06.14-10.18.20:797][683]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 28561.726562 +[2025.06.14-10.18.21:796][686]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.18.21:796][687]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 28562.392578, Update Interval: 340.482178 +[2025.06.14-10.24.18:736][757]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-10.24.59:517][879]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 28960.615234 +[2025.06.14-10.25.00:517][882]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.25.00:517][882]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 28961.283203, Update Interval: 318.287292 +[2025.06.14-10.31.04:557][974]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 29325.861328 +[2025.06.14-10.31.05:556][977]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.31.05:556][977]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 29326.529297, Update Interval: 309.796448 +[2025.06.14-10.36.49:271][ 8]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 29670.746094 +[2025.06.14-10.36.50:271][ 11]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.36.50:271][ 11]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 29671.412109, Update Interval: 348.090454 +[2025.06.14-10.43.38:315][235]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 30080.060547 +[2025.06.14-10.43.39:316][238]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.43.39:316][238]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 30080.726562, Update Interval: 345.298004 +[2025.06.14-10.50.16:033][428]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 30478.064453 +[2025.06.14-10.50.17:034][431]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.50.17:034][431]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 30478.732422, Update Interval: 315.504028 +[2025.06.14-10.56.18:754][516]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 30841.121094 +[2025.06.14-10.56.19:754][519]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-10.56.19:754][519]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 30841.789062, Update Interval: 324.390381 +[2025.06.14-11.02.17:473][592]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 31200.164062 +[2025.06.14-11.02.18:473][595]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.02.18:473][595]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 31200.832031, Update Interval: 308.371826 +[2025.06.14-11.08.22:852][688]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 31565.876953 +[2025.06.14-11.08.23:852][691]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.08.23:852][691]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 31566.544922, Update Interval: 357.985779 +[2025.06.14-11.15.02:912][888]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 31966.291016 +[2025.06.14-11.15.03:912][891]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.15.03:912][891]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 31966.958984, Update Interval: 308.183228 +[2025.06.14-11.21.03:623][970]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 32327.193359 +[2025.06.14-11.21.04:622][973]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.21.04:622][973]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 32327.859375, Update Interval: 309.580383 +[2025.06.14-11.24.18:736][556]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-11.27.02:665][ 47]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 32686.386719 +[2025.06.14-11.27.03:667][ 50]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.27.03:667][ 51]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 32687.052734, Update Interval: 316.981720 +[2025.06.14-11.33.02:040][125]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 33045.246094 +[2025.06.14-11.33.03:038][128]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.33.03:038][128]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 33045.914062, Update Interval: 352.305664 +[2025.06.14-11.39.32:092][295]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 33434.585938 +[2025.06.14-11.39.33:093][298]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.39.33:093][298]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 33435.253906, Update Interval: 345.620300 +[2025.06.14-11.46.06:158][477]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 33827.953125 +[2025.06.14-11.46.07:157][480]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.46.07:157][480]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 33828.617188, Update Interval: 338.240906 +[2025.06.14-11.52.18:207][593]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 34199.332031 +[2025.06.14-11.52.19:206][596]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.52.19:206][596]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 34199.996094, Update Interval: 332.753082 +[2025.06.14-11.58.40:928][741]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 34581.140625 +[2025.06.14-11.58.41:927][744]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-11.58.41:927][744]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 34581.808594, Update Interval: 344.442871 +[2025.06.14-12.05.04:640][892]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 34963.707031 +[2025.06.14-12.05.05:640][895]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.05.05:640][895]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 34964.371094, Update Interval: 333.968933 +[2025.06.14-12.11.29:695][ 47]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 35347.648438 +[2025.06.14-12.11.30:696][ 50]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.11.30:696][ 50]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 35348.312500, Update Interval: 350.007629 +[2025.06.14-12.14.15:377][544]LogEOSSDK: LogEOSAuth: Refreshing authentication session. AccessTokenExpired: No RefreshRequired: Yes VerifyRequired: No UserId: 7c4...f20 +[2025.06.14-12.14.15:378][545]LogEOSSDK: LogEOSAuth: Refresh authentication session. AuthState: 1 AccessExpires: 99.91 RefreshExpires: 1.546e+07 +[2025.06.14-12.14.16:378][547]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.14-14.14.16 Remaining: 7200.26] Refresh[Expires: 2025-12-11T12:14:16.262Z Remaining: 15552000.26] State: Valid +[2025.06.14-12.17.56:071][206]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 35732.988281 +[2025.06.14-12.17.57:071][209]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.17.57:071][209]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 35733.652344, Update Interval: 348.062988 +[2025.06.14-12.24.18:738][354]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Maintenance finished in +00:00:00.000 and deleted 0 files with total size 0 MiB and 0 empty folders. Scanned 0 files in 1 folders with total size 0 MiB. +[2025.06.14-12.24.30:465][389]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 36126.390625 +[2025.06.14-12.24.31:465][392]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.24.31:465][392]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 36127.054688, Update Interval: 342.545837 +[2025.06.14-12.30.58:179][552]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 36513.234375 +[2025.06.14-12.30.59:181][555]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.30.59:181][555]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 36513.898438, Update Interval: 352.435669 +[2025.06.14-12.37.49:906][787]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 36923.937500 +[2025.06.14-12.37.50:907][790]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.37.50:907][790]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 36924.601562, Update Interval: 350.260315 +[2025.06.14-12.44.26:292][976]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 37319.222656 +[2025.06.14-12.44.27:291][979]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.44.27:291][979]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 37319.886719, Update Interval: 347.561279 +[2025.06.14-12.51.12:010][193]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 37723.886719 +[2025.06.14-12.51.13:010][196]LogEOSSDK: LogEOS: SDK Config Product Update Request Completed - No Change +[2025.06.14-12.51.13:010][196]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 37724.550781, Update Interval: 332.040771 +[2025.06.14-12.57.34:738][341]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 38106.191406 diff --git a/ProjectFish/Saved/Logs/ProjectFish_2.log b/ProjectFish/Saved/Logs/ProjectFish_2.log new file mode 100644 index 0000000..b632c80 --- /dev/null +++ b/ProjectFish/Saved/Logs/ProjectFish_2.log @@ -0,0 +1,1532 @@ +Log file open, 06/16/25 10:31:52 +LogWindows: Failed to load 'aqProf.dll' (GetLastError=126) +LogWindows: File 'aqProf.dll' does not exist +LogProfilingDebugging: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +LogWindows: Failed to load 'VtuneApi.dll' (GetLastError=126) +LogWindows: File 'VtuneApi.dll' does not exist +LogWindows: Failed to load 'VtuneApi32e.dll' (GetLastError=126) +LogWindows: File 'VtuneApi32e.dll' does not exist +LogWindows: Started CrashReportClient (pid=41632) +LogWindows: Enabling Tpause support +LogWindows: Warning: Failed to set completion port for job object "UE.ShaderCompileWorker.JobGroup": 参数错误。 +LogWindows: Custom abort handler registered for crash reporting. +LogInit: Display: Running engine for game: ProjectFish +LogCore: UTS: Unreal Trace Server launched successfully +LogTrace: Initializing trace... +LogCore: Display: Requested channels: 'cpu,gpu,frame,log,bookmark,screenshot,region' +LogTrace: Display: Display Control listening on port 37583 +LogTrace: Finished trace initialization. +LogCsvProfiler: Display: Metadata set : platform="Windows" +LogCsvProfiler: Display: Metadata set : config="Development" +LogCsvProfiler: Display: Metadata set : buildversion="++UE5+Release-5.5-CL-40574608" +LogCsvProfiler: Display: Metadata set : engineversion="5.5.4-40574608+++UE5+Release-5.5" +LogCsvProfiler: Display: Metadata set : os="Windows 11 (24H2) [10.0.26100.4349] " +LogCsvProfiler: Display: Metadata set : cpu="GenuineIntel|12th Gen Intel(R) Core(TM) i9-12900K" +LogCsvProfiler: Display: Metadata set : pgoenabled="0" +LogCsvProfiler: Display: Metadata set : pgoprofilingenabled="0" +LogCsvProfiler: Display: Metadata set : ltoenabled="0" +LogCsvProfiler: Display: Metadata set : asan="0" +LogCsvProfiler: Display: Metadata set : commandline="" G:\TestForNPCAI\ProjectFish\ProjectFish.uproject"" +LogCsvProfiler: Display: Metadata set : loginid="2be356334d8ddcb1f8647180700f1260" +LogCsvProfiler: Display: Metadata set : llm="0" +LogStats: Stats thread started at 0.571144 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetActorFactory id: 0 +LogIris: FNetObjectFactoryRegistry::UnregisterFactory is unregistering factory: None name: NetSubObjectFactory id: 1 +LogICUInternationalization: ICU TimeZone Detection - Raw Offset: +8:00, Platform Override: '' +LogInit: Session CrashGUID >==================================================== + Session CrashGUID > UECC-Windows-1F3FB1A94D4E4F93B816868A71E87E89 + Session CrashGUID >==================================================== +LogConfig: No local boot hotfix file found at: [G:/TestForNPCAI/ProjectFish/Saved/PersistentDownloadDir/HotfixForNextBoot.txt] +LogConfig: Display: Loading VulkanPC ini files took 0.02 seconds +LogConfig: Display: Loading Android ini files took 0.02 seconds +LogConfig: Display: Loading Unix ini files took 0.03 seconds +LogConfig: Display: Loading Windows ini files took 0.03 seconds +LogConfig: Display: Loading IOS ini files took 0.04 seconds +LogAudio: Display: Pre-Initializing Audio Device Manager... +LogConfig: Display: Loading VisionOS ini files took 0.05 seconds +LogConfig: Display: Loading TVOS ini files took 0.05 seconds +LogAudio: Display: AudioInfo: 'OPUS' Registered +LogConfig: Display: Loading Linux ini files took 0.05 seconds +LogConfig: Display: Loading Mac ini files took 0.05 seconds +LogAudioDebug: Display: Lib vorbis DLL was dynamically loaded. +LogAudio: Display: AudioInfo: 'OGG' Registered +LogConfig: Display: Loading LinuxArm64 ini files took 0.07 seconds +LogAudio: Display: AudioInfo: 'ADPCM' Registered +LogAudio: Display: AudioInfo: 'PCM' Registered +LogAudio: Display: AudioInfo: 'BINKA' Registered +LogAudio: Display: AudioInfo: 'RADA' Registered +LogAudio: Display: Audio Device Manager Pre-Initialized +LogPluginManager: Looking for build plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogPluginManager: Looking for enabled plugins target receipt +LogPluginManager: Found matching target receipt: G:/TestForNPCAI/ProjectFish/Binaries/Win64/ProjectFishEditor.target +LogAssetRegistry: Display: Asset registry cache read as 38.2 MiB from G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_0.bin +LogPluginManager: Mounting Engine plugin Bridge +LogPluginManager: Mounting Engine plugin ChaosCloth +LogPluginManager: Mounting Engine plugin ChaosVD +LogPluginManager: Mounting Engine plugin CmdLinkServer +LogPluginManager: Mounting Engine plugin EnhancedInput +LogPluginManager: Mounting Engine plugin FastBuildController +LogPluginManager: Mounting Engine plugin Fab +LogPluginManager: Mounting Engine plugin MeshPainting +LogPluginManager: Mounting Engine plugin RenderGraphInsights +LogPluginManager: Mounting Engine plugin TraceUtilities +LogPluginManager: Mounting Engine plugin WorldMetrics +LogPluginManager: Mounting Engine plugin UbaController +LogPluginManager: Mounting Engine plugin XGEController +LogPluginManager: Mounting Engine plugin OodleNetwork +LogPluginManager: Mounting Engine plugin AnimationSharing +LogPluginManager: Mounting Engine plugin CLionSourceCodeAccess +LogPluginManager: Mounting Engine plugin CodeLiteSourceCodeAccess +LogPluginManager: Mounting Engine plugin DumpGPUServices +LogPluginManager: Mounting Engine plugin GitSourceControl +LogPluginManager: Mounting Engine plugin KDevelopSourceCodeAccess +LogPluginManager: Mounting Engine plugin NullSourceCodeAccess +LogPluginManager: Mounting Engine plugin PerforceSourceControl +LogPluginManager: Mounting Engine plugin PixWinPlugin +LogPluginManager: Mounting Engine plugin PluginUtils +LogPluginManager: Mounting Engine plugin PlasticSourceControl +LogPluginManager: Mounting Engine plugin N10XSourceCodeAccess +LogPluginManager: Mounting Engine plugin PropertyAccessNode +LogPluginManager: Mounting Engine plugin RenderDocPlugin +LogPluginManager: Mounting Engine plugin RiderSourceCodeAccess +LogPluginManager: Mounting Engine plugin TextureFormatOodle +LogPluginManager: Mounting Engine plugin SubversionSourceControl +LogPluginManager: Mounting Engine plugin VisualStudioCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin UObjectPlugin +LogPluginManager: Mounting Engine plugin VisualStudioSourceCodeAccess +LogPluginManager: Mounting Engine plugin AssetManagerEditor +LogPluginManager: Mounting Engine plugin XCodeSourceCodeAccess +LogPluginManager: Mounting Engine plugin BlueprintHeaderView +LogPluginManager: Mounting Engine plugin ChangelistReview +LogPluginManager: Mounting Engine plugin ColorGrading +LogPluginManager: Mounting Engine plugin CryptoKeys +LogPluginManager: Mounting Engine plugin DataValidation +LogPluginManager: Mounting Engine plugin CurveEditorTools +LogPluginManager: Mounting Engine plugin EditorDebugTools +LogPluginManager: Mounting Engine plugin EditorScriptingUtilities +LogPluginManager: Mounting Engine plugin EngineAssetDefinitions +LogPluginManager: Mounting Engine plugin FacialAnimation +LogPluginManager: Mounting Engine plugin GeometryMode +LogPluginManager: Mounting Engine plugin GameplayTagsEditor +LogPluginManager: Mounting Engine plugin MacGraphicsSwitching +LogPluginManager: Mounting Engine plugin MeshLODToolset +LogPluginManager: Mounting Engine plugin MaterialAnalyzer +LogPluginManager: Mounting Engine plugin ModelingToolsEditorMode +LogPluginManager: Mounting Engine plugin PluginBrowser +LogPluginManager: Mounting Engine plugin MobileLauncherProfileWizard +LogPluginManager: Mounting Engine plugin ProxyLODPlugin +LogPluginManager: Mounting Engine plugin SpeedTreeImporter +LogPluginManager: Mounting Engine plugin SequencerAnimTools +LogPluginManager: Mounting Engine plugin UVEditor +LogPluginManager: Mounting Engine plugin UMGWidgetPreview +LogPluginManager: Mounting Engine plugin StylusInput +LogPluginManager: Mounting Engine plugin AdvancedRenamer +LogPluginManager: Mounting Engine plugin WorldPartitionHLODUtilities +LogPluginManager: Mounting Engine plugin AutomationUtils +LogPluginManager: Mounting Engine plugin BackChannel +LogPluginManager: Mounting Engine plugin ChaosCaching +LogPluginManager: Mounting Engine plugin ChaosEditor +LogPluginManager: Mounting Engine plugin ChaosNiagara +LogPluginManager: Mounting Engine plugin ChaosSolverPlugin +LogPluginManager: Mounting Engine plugin ChaosUserDataPT +LogPluginManager: Mounting Engine plugin CharacterAI +LogPluginManager: Mounting Engine plugin Dataflow +LogPluginManager: Mounting Engine plugin EditorDataStorage +LogPluginManager: Mounting Engine plugin EditorPerformance +LogPluginManager: Mounting Engine plugin EditorTelemetry +LogPluginManager: Mounting Engine plugin Fracture +LogPluginManager: Mounting Engine plugin FullBodyIK +LogPluginManager: Mounting Engine plugin GeometryCollectionPlugin +LogPluginManager: Mounting Engine plugin GeometryFlow +LogPluginManager: Mounting Engine plugin LowLevelNetTrace +LogPluginManager: Mounting Engine plugin LocalizableMessage +LogPluginManager: Mounting Engine plugin MeshModelingToolsetExp +LogPluginManager: Mounting Engine plugin NFORDenoise +LogPluginManager: Mounting Engine plugin PlanarCut +LogPluginManager: Mounting Engine plugin PlatformCrypto +LogPluginManager: Mounting Engine plugin PythonScriptPlugin +LogPluginManager: Mounting Engine plugin SkeletalReduction +LogPluginManager: Mounting Engine plugin StudioTelemetry +LogPluginManager: Mounting Engine plugin ToolPresets +LogPluginManager: Mounting Engine plugin InterchangeAssets +LogPluginManager: Mounting Engine plugin Interchange +LogPluginManager: Mounting Engine plugin InterchangeEditor +LogPluginManager: Mounting Engine plugin ActorSequence +LogPluginManager: Mounting Engine plugin LevelSequenceEditor +LogPluginManager: Mounting Engine plugin SequencerScripting +LogPluginManager: Mounting Engine plugin TemplateSequence +LogPluginManager: Mounting Engine plugin ActorLayerUtilities +LogPluginManager: Mounting Engine plugin AndroidFileServer +LogPluginManager: Mounting Engine plugin AndroidDeviceProfileSelector +LogPluginManager: Mounting Engine plugin AndroidMoviePlayer +LogPluginManager: Mounting Engine plugin AppleImageUtils +LogPluginManager: Mounting Engine plugin AndroidPermission +LogPluginManager: Mounting Engine plugin AppleMoviePlayer +LogPluginManager: Mounting Engine plugin ArchVisCharacter +LogPluginManager: Mounting Engine plugin AudioCapture +LogPluginManager: Mounting Engine plugin AssetTags +LogPluginManager: Mounting Engine plugin AudioSynesthesia +LogPluginManager: Mounting Engine plugin AudioWidgets +LogPluginManager: Mounting Engine plugin CableComponent +LogPluginManager: Mounting Engine plugin ChunkDownloader +LogPluginManager: Mounting Engine plugin ComputeFramework +LogPluginManager: Mounting Engine plugin CustomMeshComponent +LogPluginManager: Mounting Engine plugin ExampleDeviceProfileSelector +LogPluginManager: Mounting Engine plugin GeometryCache +LogPluginManager: Mounting Engine plugin GeometryProcessing +LogPluginManager: Mounting Engine plugin GoogleCloudMessaging +LogPluginManager: Mounting Engine plugin GooglePAD +LogPluginManager: Mounting Engine plugin HairStrands +LogPluginManager: Mounting Engine plugin InputDebugging +LogPluginManager: Mounting Engine plugin IOSDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LinuxDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LocationServicesBPLibrary +LogPluginManager: Mounting Engine plugin MeshModelingToolset +LogPluginManager: Mounting Engine plugin Metasound +LogPluginManager: Mounting Engine plugin MobilePatchingUtils +LogPluginManager: Mounting Engine plugin MsQuic +LogPluginManager: Mounting Engine plugin ProceduralMeshComponent +LogPluginManager: Mounting Engine plugin PropertyAccessEditor +LogPluginManager: Mounting Engine plugin ResonanceAudio +LogPluginManager: Mounting Engine plugin RigVM +LogPluginManager: Mounting Engine plugin SignificanceManager +LogPluginManager: Mounting Engine plugin SoundFields +LogPluginManager: Mounting Engine plugin Niagara +LogPluginManager: Mounting Engine plugin StateTree +LogPluginManager: Mounting Engine plugin USDCore +LogPluginManager: Mounting Engine plugin NiagaraSimCaching +LogPluginManager: Mounting Engine plugin NNEDenoiser +LogPluginManager: Mounting Engine plugin Synthesis +LogPluginManager: Mounting Engine plugin WaveTable +LogPluginManager: Mounting Engine plugin NNERuntimeORT +LogPluginManager: Mounting Engine plugin WebMMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsMoviePlayer +LogPluginManager: Mounting Engine plugin WindowsDeviceProfileSelector +LogPluginManager: Mounting Engine plugin LauncherChunkInstaller +LogPluginManager: Mounting Engine plugin Paper2D +LogPluginManager: Mounting Engine plugin AISupport +LogPluginManager: Mounting Engine plugin AnimationData +LogPluginManager: Mounting Engine plugin ACLPlugin +LogPluginManager: Mounting Engine plugin AnimationModifierLibrary +LogPluginManager: Mounting Engine plugin EnvironmentQueryEditor +LogPluginManager: Mounting Engine plugin Takes +LogPluginManager: Mounting Engine plugin BlendSpaceMotionAnalysis +LogPluginManager: Mounting Engine plugin EngineCameras +LogPluginManager: Mounting Engine plugin CameraShakePreviewer +LogPluginManager: Mounting Engine plugin GameplayCameras +LogPluginManager: Mounting Engine plugin ControlRig +LogPluginManager: Mounting Engine plugin DeformerGraph +LogPluginManager: Mounting Engine plugin ControlRigSpline +LogPluginManager: Mounting Engine plugin ControlRigModules +LogPluginManager: Mounting Engine plugin LiveLink +LogPluginManager: Mounting Engine plugin RigLogic +LogPluginManager: Mounting Engine plugin IKRig +LogPluginManager: Mounting Engine plugin AlembicImporter +LogPluginManager: Mounting Engine plugin GLTFExporter +LogPluginManager: Mounting Engine plugin DatasmithContent +LogPluginManager: Mounting Engine plugin VariantManager +LogPluginManager: Mounting Engine plugin VariantManagerContent +LogPluginManager: Mounting Engine plugin AndroidMedia +LogPluginManager: Mounting Engine plugin AvfMedia +LogPluginManager: Mounting Engine plugin ImgMedia +LogPluginManager: Mounting Engine plugin UdpMessaging +LogPluginManager: Mounting Engine plugin TcpMessaging +LogPluginManager: Mounting Engine plugin EOSShared +LogPluginManager: Mounting Engine plugin MediaCompositing +LogPluginManager: Mounting Engine plugin MediaPlate +LogPluginManager: Mounting Engine plugin OnlineBase +LogPluginManager: Mounting Engine plugin MediaPlayerEditor +LogPluginManager: Mounting Engine plugin OnlineServices +LogPluginManager: Mounting Engine plugin WebMMedia +LogPluginManager: Mounting Engine plugin WmfMedia +LogPluginManager: Mounting Engine plugin OnlineSubsystem +LogPluginManager: Mounting Engine plugin InterchangeTests +LogPluginManager: Mounting Engine plugin OnlineSubsystemNull +LogPluginManager: Mounting Engine plugin OnlineSubsystemUtils +LogPluginManager: Mounting Engine plugin ContentBrowserAssetDataSource +LogPluginManager: Mounting Engine plugin HoldoutComposite +LogPluginManager: Mounting Engine plugin ContentBrowserFileDataSource +LogPluginManager: Mounting Engine plugin ContentBrowserClassDataSource +LogPluginManager: Mounting Engine plugin ConcertMain +LogPluginManager: Mounting Engine plugin XInputDevice +LogPluginManager: Mounting Engine plugin BaseCharacterFXEditor +LogPluginManager: Mounting Engine plugin SQLiteCore +LogPluginManager: Mounting Engine plugin PortableObjectFileDataSource +LogPluginManager: Mounting Engine plugin MetaHumanSDK +LogPluginManager: Mounting Engine plugin SkeletalMeshModelingTools +LogPluginManager: Mounting Engine plugin OnlineSubsystemIOS +LogPluginManager: Mounting Engine plugin OnlineSubsystemGooglePlay +LogPluginManager: Mounting Engine plugin RiderLink +LogPluginManager: Mounting Engine plugin ObjectMixer +LogPluginManager: Mounting Engine plugin LightMixer +LogPluginManager: Mounting Engine plugin ConcertSyncCore +LogPluginManager: Mounting Engine plugin ConcertSyncClient +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +SourceControl: Revision control is disabled +LogWindows: Failed to load 'WinPixGpuCapturer.dll' (GetLastError=126) +LogWindows: File 'WinPixGpuCapturer.dll' does not exist +PixWinPlugin: PIX capture plugin failed to initialize! Check that the process is launched from PIX. +LogConfig: Applying CVar settings from Section [/Script/RenderDocPlugin.RenderDocPluginSettings] File [Engine] +RenderDocPlugin: Display: RenderDoc plugin will not be loaded. Use '-AttachRenderDoc' on the cmd line or enable 'renderdoc.AutoAttach' in the plugin settings. +LogNFORDenoise: NFORDenoise function starting up +LogStudioTelemetry: Display: Starting StudioTelemetry Module +LogStudioTelemetry: Started StudioTelemetry Session +LogEOSSDK: Initializing EOSSDK Version:1.17.0-39599718 +LogInit: Using libcurl 8.4.0 +LogInit: - built for Windows +LogInit: - supports SSL with OpenSSL/1.1.1t +LogInit: - supports HTTP deflate (compression) using libz 1.3 +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_HTTP2 +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: CreateHttpThread using FCurlMultiPollEventLoopHttpThread +LogInit: Creating http thread with maximum 2147483647 concurrent requests +LogInit: WinSock: version 1.1 (2.2), MaxSocks=32767, MaxUdp=65467 +LogOnline: OSS: Created online subsystem instance for: NULL +LogOnline: OSS: TryLoadSubsystemAndSetDefault: Loaded subsystem for type [NULL] +LogInit: ExecutableName: UnrealEditor.exe +LogInit: Build: ++UE5+Release-5.5-CL-40574608 +LogInit: Platform=WindowsEditor +LogInit: MachineId=2be356334d8ddcb1f8647180700f1260 +LogInit: DeviceId= +LogInit: Engine Version: 5.5.4-40574608+++UE5+Release-5.5 +LogInit: Compatible Engine Version: 5.5.0-37670630+++UE5+Release-5.5 +LogInit: Net CL: 37670630 +LogInit: OS: Windows 11 (24H2) [10.0.26100.4349] (), CPU: 12th Gen Intel(R) Core(TM) i9-12900K, GPU: NVIDIA GeForce RTX 3080 +LogInit: Compiled (64-bit): Mar 7 2025 14:49:53 +LogInit: Architecture: x64 +LogInit: Compiled with Visual C++: 19.38.33130.00 +LogInit: Build Configuration: Development +LogInit: Branch Name: ++UE5+Release-5.5 +LogInit: Command Line: +LogInit: Base Directory: F:/Epic/UE_5.5/Engine/Binaries/Win64/ +LogInit: Allocator: Mimalloc +LogInit: Installed Engine Build: 1 +LogInit: This binary is optimized with LTO: no, PGO: no, instrumented for PGO data collection: no +LogDevObjectVersion: Number of dev versions registered: 36 +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): 4 +LogDevObjectVersion: Dev-Editor (E4B068ED-F494-42E9-A231-DA0B2E46BB41): 40 +LogDevObjectVersion: Dev-Framework (CFFC743F-43B0-4480-9391-14DF171D2073): 37 +LogDevObjectVersion: Dev-Mobile (B02B49B5-BB20-44E9-A304-32B752E40360): 3 +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): 20 +LogDevObjectVersion: Dev-Platform (6631380F-2D4D-43E0-8009-CF276956A95A): 0 +LogDevObjectVersion: Dev-Rendering (12F88B9F-8875-4AFC-A67C-D90C383ABD29): 49 +LogDevObjectVersion: Dev-Sequencer (7B5AE74C-D270-4C10-A958-57980B212A5A): 13 +LogDevObjectVersion: Dev-VR (D7296918-1DD6-4BDD-9DE2-64A83CC13884): 3 +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): 15 +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): 170 +LogDevObjectVersion: FortniteValkyrie (8DBC2C5B-54A7-43E0-A768-FCBB7DA29060): 8 +LogDevObjectVersion: FortniteSeason (5B4C06B7-2463-4AF8-805B-BF70CDF5D0DD): 13 +LogDevObjectVersion: FortniteRelease (E7086368-6B23-4C58-8439-1B7016265E91): 15 +LogDevObjectVersion: Dev-Enterprise (9DFFBCD6-494F-0158-E221-12823C92A888): 10 +LogDevObjectVersion: Dev-Niagara (F2AED0AC-9AFE-416F-8664-AA7FFA26D6FC): 1 +LogDevObjectVersion: Dev-Destruction (174F1F0B-B4C6-45A5-B13F-2EE8D0FB917D): 10 +LogDevObjectVersion: Dev-Physics-Ext (35F94A83-E258-406C-A318-09F59610247C): 41 +LogDevObjectVersion: Dev-PhysicsMaterial-Chaos (B68FC16E-8B1B-42E2-B453-215C058844FE): 1 +LogDevObjectVersion: Dev-CineCamera (B2E18506-4273-CFC2-A54E-F4BB758BBA07): 1 +LogDevObjectVersion: Dev-VirtualProduction (64F58936-FD1B-42BA-BA96-7289D5D0FA4E): 1 +LogDevObjectVersion: UE5-Main (697DD581-E64F-41AB-AA4A-51ECBEB7B628): 119 +LogDevObjectVersion: UE5-Release (D89B5E42-24BD-4D46-8412-ACA8DF641779): 51 +LogDevObjectVersion: UE5-PrivateFrosty (59DA5D52-1232-4948-B878-597870B8E98B): 8 +LogDevObjectVersion: Dev-MediaFramework (6F0ED827-A609-4895-9C91-998D90180EA4): 2 +LogDevObjectVersion: Dev-NaniteResearch (30D58BE3-95EA-4282-A6E3-B159D8EBB06A): 1 +LogDevObjectVersion: Dev-ComputeFramework (6304A3E7-0059-4F59-8CFC-21BD7721FD4E): 0 +LogConfig: Branch 'EditorLayout' had been unloaded. Reloading on-demand took 0.48ms +LogConfig: Branch 'Bridge' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ChaosCloth' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CmdLinkServer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'FastBuildController' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshPainting' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RenderGraphInsights' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldMetrics' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UbaController' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XGEController' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'OodleNetwork' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationSharing' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CLionSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CodeLiteSourceCodeAccess' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'DumpGPUServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GitSourceControl' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'KDevelopSourceCodeAccess' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'NullSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PerforceSourceControl' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PixWinPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PluginUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PlasticSourceControl' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'N10XSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PropertyAccessNode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RenderDocPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TextureFormatOodle' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SubversionSourceControl' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'VisualStudioCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UObjectPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'VisualStudioSourceCodeAccess' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AssetManagerEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'XCodeSourceCodeAccess' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlueprintHeaderView' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChangelistReview' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ColorGrading' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CryptoKeys' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'DataValidation' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CurveEditorTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EditorDebugTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineAssetDefinitions' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'FacialAnimation' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryMode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'GameplayTagsEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MacGraphicsSwitching' had been unloaded. Reloading on-demand took 0.16ms +LogConfig: Branch 'MeshLODToolset' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MaterialAnalyzer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ModelingToolsEditorMode' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PluginBrowser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MobileLauncherProfileWizard' had been unloaded. Reloading on-demand took 0.15ms +LogConfig: Branch 'ProxyLODPlugin' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SpeedTreeImporter' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'SequencerAnimTools' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UVEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'UMGWidgetPreview' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StylusInput' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AdvancedRenamer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WorldPartitionHLODUtilities' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AutomationUtils' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'BackChannel' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ChaosEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ChaosNiagara' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChaosSolverPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ChaosUserDataPT' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'CharacterAI' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'Dataflow' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorDataStorage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorPerformance' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'EditorTelemetry' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'Fracture' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryCollectionPlugin' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'GeometryFlow' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'LowLevelNetTrace' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LocalizableMessage' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MeshModelingToolsetExp' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NFORDenoise' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'PlanarCut' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PlatformCrypto' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PythonScriptPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalReduction' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'StudioTelemetry' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'InterchangeEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ActorSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LevelSequenceEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SequencerScripting' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'TemplateSequence' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ActorLayerUtilities' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AndroidFileServer' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AndroidMoviePlayer' had been unloaded. Reloading on-demand took 0.19ms +LogConfig: Branch 'AppleImageUtils' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AndroidPermission' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AppleMoviePlayer' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'ArchVisCharacter' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'AudioCapture' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AssetTags' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AudioSynesthesia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'AudioWidgets' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'CableComponent' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ChunkDownloader' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ComputeFramework' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'CustomMeshComponent' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ExampleDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GeometryCache' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GeometryProcessing' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'GoogleCloudMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'GooglePAD' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'InputDebugging' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'IOSDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'LinuxDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LocationServicesBPLibrary' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MeshModelingToolset' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MobilePatchingUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'MsQuic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ProceduralMeshComponent' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'PropertyAccessEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ResonanceAudio' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SignificanceManager' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'SoundFields' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NiagaraSimCaching' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'NNEDenoiser' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'WaveTable' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'NNERuntimeORT' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WebMMoviePlayer' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'WindowsMoviePlayer' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'WindowsDeviceProfileSelector' had been unloaded. Reloading on-demand took 0.11ms +LogConfig: Branch 'LauncherChunkInstaller' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AISupport' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AnimationData' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ACLPlugin' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AnimationModifierLibrary' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'EnvironmentQueryEditor' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BlendSpaceMotionAnalysis' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EngineCameras' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'CameraShakePreviewer' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigSpline' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ControlRigModules' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'RigLogic' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'AlembicImporter' had been unloaded. Reloading on-demand took 0.10ms +LogConfig: Branch 'VariantManager' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'AndroidMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'AvfMedia' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'ImgMedia' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'UdpMessaging' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'TcpMessaging' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'EOSShared' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'MediaCompositing' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'MediaPlate' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineBase' had been unloaded. Reloading on-demand took 0.05ms +LogConfig: Branch 'MediaPlayerEditor' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineServices' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'WebMMedia' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'WmfMedia' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystem' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'InterchangeTests' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemNull' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'OnlineSubsystemUtils' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserAssetDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ContentBrowserClassDataSource' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'ConcertMain' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'XInputDevice' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'BaseCharacterFXEditor' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'SQLiteCore' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'PortableObjectFileDataSource' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'SkeletalMeshModelingTools' had been unloaded. Reloading on-demand took 0.09ms +LogConfig: Branch 'OnlineSubsystemIOS' had been unloaded. Reloading on-demand took 0.07ms +LogConfig: Branch 'OnlineSubsystemGooglePlay' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'RiderLink' had been unloaded. Reloading on-demand took 0.06ms +LogConfig: Branch 'ObjectMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'LightMixer' had been unloaded. Reloading on-demand took 0.08ms +LogConfig: Branch 'ConcertSyncClient' had been unloaded. Reloading on-demand took 0.08ms +LogInit: Presizing for max 25165824 objects, including 0 objects not considered by GC. +LogStreaming: Display: AsyncLoading2 - Created: Event Driven Loader: false, Async Loading Thread: false, Async Post Load: false +LogStreaming: Display: AsyncLoading2 - Initialized +LogInit: Object subsystem initialized +LogConfig: Set CVar [[con.DebugEarlyDefault:1]] +LogConfig: CVar [[con.DebugLateDefault:1]] deferred - dummy variable created +LogConfig: CVar [[con.DebugLateCheat:1]] deferred - dummy variable created +LogConfig: CVar [[LogNamedEventFilters:Frame *]] deferred - dummy variable created +LogConfig: Set CVar [[r.setres:1280x720]] +LogConfig: CVar [[framepro.ScopeMinTimeMicroseconds:10]] deferred - dummy variable created +LogConfig: Set CVar [[fx.NiagaraAllowRuntimeScalabilityChanges:1]] +LogConfig: CVar [[QualityLevelMapping:high]] deferred - dummy variable created +LogConfig: CVar [[r.Occlusion.SingleRHIThreadStall:1]] deferred - dummy variable created +LogConfig: Set CVar [[r.Nanite.Streaming.ReservedResources:1]] +LogConfig: Set CVar [[r.Nanite.Streaming.AsyncCompute:0 ; Temporary workaround for Nanite geometry corruption (FORT-805141)]] +LogConfig: CVar [[D3D12.Bindless.ResourceDescriptorHeapSize:32768]] deferred - dummy variable created +LogConfig: CVar [[D3D12.Bindless.SamplerDescriptorHeapSize:2048]] deferred - dummy variable created +LogConfig: Set CVar [[r.PSOPrecache.GlobalShaders:1]] +LogConfig: Set CVar [[r.DynamicRes.DynamicFrameTime:1]] +LogConfig: Set CVar [[r.VRS.EnableSoftware:1]] +LogConfig: Set CVar [[r.VRS.ContrastAdaptiveShading:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.VSync:0]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.RHICmdBypass:0]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererSettings] File [Engine] +[2025.06.16-02.31.53:786][ 0]LogConfig: CVar [[VisualizeCalibrationColorMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationColor.PPM_DefaultCalibrationColor]] deferred - dummy variable created +[2025.06.16-02.31.53:786][ 0]LogConfig: CVar [[VisualizeCalibrationGrayscaleMaterialPath:/Engine/EngineMaterials/PPM_DefaultCalibrationGrayscale.PPM_DefaultCalibrationGrayscale]] deferred - dummy variable created +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.GPUCrashDebugging:0]] +[2025.06.16-02.31.53:786][ 0]LogConfig: CVar [[MaxSkinBones:(Default=65536,PerPlatform=(("Mobile", 256)))]] deferred - dummy variable created +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.DefaultFeature.AutoExposure.ExtendDefaultLuminanceRange:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.AllowStaticLighting:0]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.GenerateMeshDistanceFields:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.DynamicGlobalIlluminationMethod:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.ReflectionMethod:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.SkinCache.CompileShaders:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.RayTracing:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.Enable:1]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.HighlightContrastScale:0.8]] +[2025.06.16-02.31.53:786][ 0]LogConfig: Set CVar [[r.DefaultFeature.LocalExposure.ShadowContrastScale:0.8]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[r.Shaders.RemoveUnusedInterpolators:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[r.Shadow.DetectVertexShaderLayerAtRuntime:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.RendererOverrideSettings] File [Engine] +[2025.06.16-02.31.53:787][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.StreamingSettings] File [Engine] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.MinBulkDataSizeForAsyncLoading:131072]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.AsyncLoadingThreadEnabled:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.EventDrivenLoaderEnabled:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.WarnIfTimeLimitExceeded:0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMultiplier:1.5]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.TimeLimitExceededMinTime:0.005]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.UseBackgroundLevelStreaming:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.PriorityAsyncLoadingExtraTime:15.0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.LevelStreamingActorsUpdateTimeLimit:5.0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.PriorityLevelStreamingActorsUpdateExtraTime:5.0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsRegistrationGranularity:10]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.UnregisterComponentsTimeLimit:1.0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.LevelStreamingComponentsUnregistrationGranularity:5]] +[2025.06.16-02.31.53:787][ 0]LogConfig: CVar [[s.MaxPackageSummarySize:16384]] deferred - dummy variable created +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[s.FlushStreamingOnExit:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__SoundBase]] deferred - dummy variable created +[2025.06.16-02.31.53:787][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__MaterialInterface]] deferred - dummy variable created +[2025.06.16-02.31.53:787][ 0]LogConfig: CVar [[FixedBootOrder:/Script/Engine/Default__DeviceProfileManager]] deferred - dummy variable created +[2025.06.16-02.31.53:787][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.GarbageCollectionSettings] File [Engine] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[gc.MaxObjectsNotConsideredByGC:1]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[gc.FlushStreamingOnGC:0]] +[2025.06.16-02.31.53:787][ 0]LogConfig: Set CVar [[gc.NumRetriesBeforeForcingGC:10]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.AllowParallelGC:1]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.TimeBetweenPurgingPendingKillObjects:61.1]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.MaxObjectsInEditor:25165824]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.IncrementalBeginDestroyEnabled:1]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.CreateGCClusters:1]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.MinGCClusterSize:5]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.AssetClustreringEnabled:0]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.ActorClusteringEnabled:0]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.VerifyUObjectsAreNotFGCObjects:0]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Set CVar [[gc.GarbageEliminationEnabled:1]] +[2025.06.16-02.31.53:788][ 0]LogConfig: Applying CVar settings from Section [/Script/Engine.NetworkSettings] File [Engine] +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Average",ToolTip="Simulates average internet conditions")]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[NetworkEmulationProfiles:(ProfileName="Bad",ToolTip="Simulates laggy internet conditions")]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: Applying CVar settings from Section [/Script/UnrealEd.CookerSettings] File [Engine] +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[DefaultASTCQualityBySpeed:2]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[DefaultASTCQualityBySize:3]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[DefaultASTCQualityBySizeHQ:4]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GroupActor]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MetaData]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NavMeshRenderingComponent]] deferred - dummy variable created +[2025.06.16-02.31.53:788][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ReflectionCaptureComponent]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:TextRenderComponent]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:Font]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:MaterialExpression]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraEmitter]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:NiagaraScript]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleEmitter]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleLODLevel]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:ParticleModule]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SubUVAnimation]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:SoundNode]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:GameplayEffectUIData]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedServer:AmbientSound]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:WidgetBlueprint]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:GroupActor]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:MetaData]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:ObjectRedirector]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[ClassesExcludedOnDedicatedClient:InterpCurveEdSetup]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[VersionedIntRValues:r.AllowStaticLighting]] deferred - dummy variable created +[2025.06.16-02.31.53:789][ 0]LogConfig: CVar [[VersionedIntRValues:r.MaterialEditor.LWCTruncateMode]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.GBuffer]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.VelocityOutputPass]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.SelectiveBasePassOutputs]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.DBuffer]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Mobile.DBuffer]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Symbols]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.GenerateSymbols]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.WriteSymbols]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.AllowUniqueSymbols]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.ExtraData]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.Shaders.Optimize]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.CompileShadersForDevelopment]] deferred - dummy variable created +[2025.06.16-02.31.53:790][ 0]LogConfig: CVar [[VersionedIntRValues:r.MobileHDR]] deferred - dummy variable created +[2025.06.16-02.31.53:791][ 0]LogConfig: CVar [[VersionedIntRValues:r.UsePreExposure]] deferred - dummy variable created +[2025.06.16-02.31.53:796][ 0]LogConfig: Applying CVar settings from Section [ViewDistanceQuality@3] File [Scalability] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.SkeletalMeshLODBias:0]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.ViewDistanceScale:1.0]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Applying CVar settings from Section [AntiAliasingQuality@3] File [Scalability] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.FXAA.Quality:4]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TemporalAA.Quality:2]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.History.R11G11B10:1]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.History.ScreenPercentage:200]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.History.UpdateQuality:3]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.ShadingRejection.Flickering:1]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.RejectionAntiAliasingQuality:2]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.ReprojectionField:1]] +[2025.06.16-02.31.53:796][ 0]LogConfig: Set CVar [[r.TSR.Resurrection:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Applying CVar settings from Section [ShadowQuality@3] File [Scalability] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.LightFunctionQuality:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.ShadowQuality:5]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.CSM.MaxCascades:10]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.MaxResolution:2048]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.MaxCSMResolution:2048]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.RadiusThreshold:0.01]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.DistanceScale:1.0]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.CSM.TransitionScale:1.0]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.PreShadowResolutionFactor:1.0]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.DistanceFieldShadowing:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.VolumetricFog:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridPixelSize:8]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.VolumetricFog.GridSizeZ:128]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.VolumetricFog.HistoryMissSupersampleCount:4]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.LightMaxDrawDistanceScale:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.CapsuleShadows:1]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.MaxPhysicalPages:4096]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectional:-1.5]] +[2025.06.16-02.31.53:797][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasDirectionalMoving:-1.5]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocal:0.0]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.ResolutionLodBiasLocalMoving:1.0]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountDirectional:8]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayDirectional:4]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.RayCountLocal:8]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Shadow.Virtual.SMRT.SamplesPerRayLocal:4]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Applying CVar settings from Section [GlobalIlluminationQuality@3] File [Scalability] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.DistanceFieldAO:1]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.AOQuality:2]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.DiffuseIndirect.Allow:1]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.ProbeSpacing:4]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.LumenScene.Radiosity.HemisphereProbeResolution:4]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.TraceMeshSDFs.Allow:1]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.ProbeResolution:32]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.RadianceCache.NumProbesToTraceBudget:300]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.DownsampleFactor:16]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TracingOctahedronResolution:8]] +[2025.06.16-02.31.53:798][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.IrradianceFormat:0]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.StochasticInterpolation:0]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.FullResolutionJitterWidth:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.TwoSidedFoliageBackfaceDiffuse:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ScreenTraces.HZBTraversal.FullResDepth:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.ShortRangeAO.HardwareRayTracing:0]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.GridPixelSize:32]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TraceFromVolume:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.TracingOctahedronResolution:3]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.ProbeResolution:8]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyVolume.RadianceCache.NumProbesToTraceBudget:200]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.SkyLight.RealTimeReflectionCapture:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.RayTracing.Scene.BuildMode:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Applying CVar settings from Section [ReflectionQuality@3] File [Scalability] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.SSR.Quality:3]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.SSR.HalfResSceneColor:0]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.Allow:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.DownsampleFactor:1]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.MaxRoughnessToTraceForFoliage:0.4]] +[2025.06.16-02.31.53:799][ 0]LogConfig: Set CVar [[r.Lumen.ScreenProbeGather.MaxRoughnessToEvaluateRoughSpecularForFoliage:0.8]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.TonemapMode:1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Lumen.Reflections.ScreenSpaceReconstruction.MinWeight:0]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Allow:1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Lumen.TranslucencyReflections.FrontLayer.Enable:0]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Applying CVar settings from Section [PostProcessQuality@3] File [Scalability] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.MotionBlurQuality:4]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.MotionBlur.HalfResGather:0]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMipLevelFactor:0.4]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.AmbientOcclusionMaxQuality:100]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.AmbientOcclusionLevels:-1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.AmbientOcclusionRadiusScale:1.0]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.DepthOfFieldQuality:2]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.RenderTargetPoolMin:400]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.LensFlareQuality:2]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.SceneColorFringeQuality:1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.EyeAdaptationQuality:2]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.BloomQuality:5]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Bloom.ScreenPercentage:50.000]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.FastBlurThreshold:100]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Upscale.Quality:3]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.LightShaftQuality:1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Filter.SizeScale:1]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.Tonemapper.Quality:5]] +[2025.06.16-02.31.53:800][ 0]LogConfig: Set CVar [[r.DOF.Gather.ResolutionDivisor:2 ; lower gathering resolution]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Gather.AccumulatorQuality:1 ; higher gathering accumulator quality]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Gather.PostfilterMethod:1 ; Median3x3 postfilering method]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Gather.EnableBokehSettings:0 ; no bokeh simulation when gathering]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Gather.RingCount:4 ; medium number of samples when gathering]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Scatter.ForegroundCompositing:1 ; additive foreground scattering]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Scatter.BackgroundCompositing:2 ; additive background scattering]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Scatter.EnableBokehSettings:1 ; bokeh simulation when scattering]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Scatter.MaxSpriteRatio:0.1 ; only a maximum of 10% of scattered bokeh]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Recombine.Quality:1 ; cheap slight out of focus]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Recombine.EnableBokehSettings:0 ; no bokeh simulation on slight out of focus]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.TemporalAAQuality:1 ; more stable temporal accumulation]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxForegroundRadius:0.025]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.DOF.Kernel.MaxBackgroundRadius:0.025]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Applying CVar settings from Section [TextureQuality@3] File [Scalability] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.Streaming.MipBias:0]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.Streaming.AmortizeCPUToGPUCopy:0]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.Streaming.MaxNumTexturesToStreamPerFrame:0]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.Streaming.Boost:1]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.MaxAnisotropy:8]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.VT.MaxAnisotropy:8]] +[2025.06.16-02.31.53:802][ 0]LogConfig: Set CVar [[r.Streaming.LimitPoolSizeToVRAM:0]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.Streaming.PoolSize:1000]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.Streaming.MaxEffectiveScreenSize:0]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Applying CVar settings from Section [EffectsQuality@3] File [Scalability] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.TranslucencyLightingVolumeDim:64]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.RefractionQuality:2]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SceneColorFormat:4]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.DetailMode:3]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.TranslucencyVolumeBlur:1]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.MaterialQualityLevel:1 ; High quality]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SSS.Scale:1]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SSS.SampleSet:2]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SSS.Quality:1]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SSS.HalfRes:0]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SSGI.Quality:3]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.EmitterSpawnRateScale:1.0]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.ParticleLightQuality:2]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.FastApplyOnOpaque:1 ; Always have FastSkyLUT 1 in this case to avoid wrong sky]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.SampleCountMaxPerSlice:4]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.AerialPerspectiveLUT.DepthResolution:16.0]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT:1]] +[2025.06.16-02.31.53:803][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMin:4.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.FastSkyLUT.SampleCountMax:128.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMin:4.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.SampleCountMax:128.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.UseSmallFormat:0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.TransmittanceLUT.SampleCount:10.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.SkyAtmosphere.MultiScatteringLUT.SampleCount:15.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[fx.Niagara.QualityLevel:3]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.Refraction.OffsetQuality:1]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.DownsampleFactor:1]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.MaxStepCount:512]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HeterogeneousVolumes.Shadows.Resolution:512]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Applying CVar settings from Section [FoliageQuality@3] File [Scalability] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[foliage.DensityScale:1.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[grass.DensityScale:1.0]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Applying CVar settings from Section [ShadingQuality@3] File [Scalability] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HairStrands.SkyLighting.IntegrationType:2]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HairStrands.SkyAO.SampleCount:4]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.HairStrands.Visibility.MSAA.SamplePerPixel:4]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Set CVar [[r.AnisotropicMaterials:1]] +[2025.06.16-02.31.53:804][ 0]LogConfig: Applying CVar settings from Section [LandscapeQuality@3] File [Scalability] +[2025.06.16-02.31.53:807][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-02.31.53:807][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-02.31.53:807][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-02.31.53:816][ 0]LogD3D12RHI: Loading WinPixEventRuntime.dll for PIX profiling (from ../../../Engine/Binaries/ThirdParty/Windows/WinPixEventRuntime/x64). +[2025.06.16-02.31.53:816][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-02.31.54:035][ 0]LogD3D12RHI: Found D3D12 adapter 0: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-02.31.54:035][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-02.31.54:035][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 2 output[s] +[2025.06.16-02.31.54:035][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-02.31.54:035][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-02.31.54:050][ 0]LogD3D12RHI: Found D3D12 adapter 1: Microsoft Basic Render Driver (VendorId: 1414, DeviceId: 008c, SubSysId: 0000, Revision: 0000 +[2025.06.16-02.31.54:050][ 0]LogD3D12RHI: Max supported Feature Level 12_1, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-02.31.54:050][ 0]LogD3D12RHI: Adapter has 0MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-02.31.54:157][ 0]LogD3D12RHI: Found D3D12 adapter 2: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-02.31.54:157][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-02.31.54:157][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-02.31.54:157][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-02.31.54:157][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-02.31.54:265][ 0]LogD3D12RHI: Found D3D12 adapter 3: NVIDIA GeForce RTX 3080 (VendorId: 10de, DeviceId: 2216, SubSysId: 48853842, Revision: 00a1 +[2025.06.16-02.31.54:265][ 0]LogD3D12RHI: Max supported Feature Level 12_2, shader model 6.7, binding tier 3, wave ops supported, atomic64 supported +[2025.06.16-02.31.54:265][ 0]LogD3D12RHI: Adapter has 10053MB of dedicated video memory, 0MB of dedicated system memory, and 16254MB of shared system memory, 0 output[s] +[2025.06.16-02.31.54:266][ 0]LogD3D12RHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-02.31.54:266][ 0]LogD3D12RHI: Driver Date: 8-14-2024 +[2025.06.16-02.31.54:266][ 0]LogD3D12RHI: DirectX Agility SDK runtime found. +[2025.06.16-02.31.54:266][ 0]LogD3D12RHI: Chosen D3D12 Adapter Id = 0 +[2025.06.16-02.31.54:266][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-02.31.54:266][ 0]LogInit: Selected Device Profile: [WindowsEditor] +[2025.06.16-02.31.54:266][ 0]LogHAL: Display: Platform has ~ 32 GB [34088476672 / 34359738368 / 32], which maps to Largest [LargestMinGB=32, LargerMinGB=12, DefaultMinGB=8, SmallerMinGB=6, SmallestMinGB=0) +[2025.06.16-02.31.54:266][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [Windows] +[2025.06.16-02.31.54:266][ 0]LogDeviceProfileManager: Going up to parent DeviceProfile [] +[2025.06.16-02.31.54:266][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.RasterizationMode:Bitmap -> Msdf]] +[2025.06.16-02.31.54:266][ 0]LogDeviceProfileManager: Pushing Device Profile CVar: [[UI.SlateSDFText.ResolutionLevel:2 -> 2]] +[2025.06.16-02.31.54:266][ 0]LogConfig: Applying CVar settings from Section [Startup] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-02.31.54:267][ 0]LogConfig: Set CVar [[r.DumpShaderDebugInfo:2]] +[2025.06.16-02.31.54:267][ 0]LogConfig: Set CVar [[p.chaos.AllowCreatePhysxBodies:1]] +[2025.06.16-02.31.54:267][ 0]LogConfig: Set CVar [[fx.SkipVectorVMBackendOptimizations:1]] +[2025.06.16-02.31.54:267][ 0]LogConfig: CVar [[ds.CADTranslator.Meshing.ActivateThinZoneMeshing:0]] deferred - dummy variable created +[2025.06.16-02.31.54:267][ 0]LogConfig: CVar [[ds.CADTranslator.Stitching.RemoveThinFaces:0]] deferred - dummy variable created +[2025.06.16-02.31.54:267][ 0]LogConfig: Applying CVar settings from Section [Startup_Windows] File [../../../Engine/Config/ConsoleVariables.ini] +[2025.06.16-02.31.54:267][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [Engine] +[2025.06.16-02.31.54:267][ 0]LogConfig: Set CVar [[memory.MemoryPressureCriticalThresholdMB:512]] +[2025.06.16-02.31.54:267][ 0]LogConfig: Applying CVar settings from Section [ConsoleVariables] File [G:/TestForNPCAI/ProjectFish/Saved/Config/WindowsEditor/Editor.ini] +[2025.06.16-02.31.54:268][ 0]LogInit: Computer: T +[2025.06.16-02.31.54:268][ 0]LogInit: User: 99714 +[2025.06.16-02.31.54:268][ 0]LogInit: CPU Page size=4096, Cores=16 +[2025.06.16-02.31.54:268][ 0]LogInit: High frequency timer resolution =10.000000 MHz +[2025.06.16-02.31.54:608][ 0]LogMemory: Process is running as part of a Windows Job with separate resource limits +[2025.06.16-02.31.54:608][ 0]LogMemory: Memory total: Physical=31.7GB (32GB approx) Virtual=51.7GB +[2025.06.16-02.31.54:609][ 0]LogMemory: Platform Memory Stats for WindowsEditor +[2025.06.16-02.31.54:609][ 0]LogMemory: Process Physical Memory: 615.55 MB used, 628.41 MB peak +[2025.06.16-02.31.54:609][ 0]LogMemory: Process Virtual Memory: 662.32 MB used, 662.32 MB peak +[2025.06.16-02.31.54:609][ 0]LogMemory: Physical Memory: 25682.79 MB used, 6826.52 MB free, 32509.30 MB total +[2025.06.16-02.31.54:609][ 0]LogMemory: Virtual Memory: 43632.77 MB used, 9356.54 MB free, 52989.30 MB total +[2025.06.16-02.31.54:609][ 0]LogCsvProfiler: Display: Metadata set : extradevelopmentmemorymb="0" +[2025.06.16-02.31.54:615][ 0]LogWindows: WindowsPlatformFeatures enabled +[2025.06.16-02.31.54:632][ 0]LogChaosDD: Chaos Debug Draw Startup +[2025.06.16-02.31.54:632][ 0]LogInit: Physics initialised using underlying interface: Chaos +[2025.06.16-02.31.54:633][ 0]LogInit: Overriding language with editor language configuration option (en). +[2025.06.16-02.31.54:633][ 0]LogInit: Using OS detected locale (zh-CN). +[2025.06.16-02.31.54:639][ 0]LogInit: Setting process to per monitor DPI aware +[2025.06.16-02.31.54:921][ 0]LogWindowsTextInputMethodSystem: Available input methods: +[2025.06.16-02.31.54:921][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-02.31.54:921][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 微软拼音 (TSF IME). +[2025.06.16-02.31.54:921][ 0]LogWindowsTextInputMethodSystem: - 简体中文(中国大陆) - 触控输入更正 (TSF IME). +[2025.06.16-02.31.54:921][ 0]LogWindowsTextInputMethodSystem: Activated input method: 简体中文(中国大陆) - 微信输入法 (TSF IME). +[2025.06.16-02.31.54:939][ 0]LogSlate: New Slate User Created. Platform User Id 0, User Index 0, Is Virtual User: 0 +[2025.06.16-02.31.54:941][ 0]LogSlate: Slate User Registered. User Index 0, Is Virtual User: 0 +[2025.06.16-02.31.55:149][ 0]LogRHI: Using Default RHI: D3D12 +[2025.06.16-02.31.55:149][ 0]LogRHI: Using Highest Feature Level of D3D12: SM6 +[2025.06.16-02.31.55:149][ 0]LogRHI: Loading RHI module D3D12RHI +[2025.06.16-02.31.55:149][ 0]LogRHI: Checking if RHI D3D12 with Feature Level SM6 is supported by your system. +[2025.06.16-02.31.55:149][ 0]LogRHI: RHI D3D12 with Feature Level SM6 is supported and will be used. +[2025.06.16-02.31.55:149][ 0]LogD3D12RHI: Display: Creating D3D12 RHI with Max Feature Level SM6 +[2025.06.16-02.31.55:149][ 0]LogWindows: Attached monitors: +[2025.06.16-02.31.55:149][ 0]LogWindows: resolution: 2560x1440, work area: (0, 0) -> (2560, 1392), device: '\\.\DISPLAY1' [PRIMARY] +[2025.06.16-02.31.55:149][ 0]LogWindows: resolution: 2560x1440, work area: (-2560, 0) -> (0, 1392), device: '\\.\DISPLAY2' +[2025.06.16-02.31.55:149][ 0]LogWindows: Found 2 attached monitors. +[2025.06.16-02.31.55:149][ 0]LogWindows: Gathering driver information using Windows Setup API +[2025.06.16-02.31.55:150][ 0]LogRHI: RHI Adapter Info: +[2025.06.16-02.31.55:150][ 0]LogRHI: Name: NVIDIA GeForce RTX 3080 +[2025.06.16-02.31.55:150][ 0]LogRHI: Driver Version: 560.94 (internal:32.0.15.6094, unified:560.94) +[2025.06.16-02.31.55:150][ 0]LogRHI: Driver Date: 8-14-2024 +[2025.06.16-02.31.55:150][ 0]LogD3D12RHI: GPU DeviceId: 0x2216 (for the marketing name, search the web for "GPU Device Id") +[2025.06.16-02.31.55:150][ 0]LogD3D12RHI: InitD3DDevice: -D3DDebug = off -D3D12GPUValidation = off +[2025.06.16-02.31.55:233][ 0]LogNvidiaAftermath: Aftermath initialized +[2025.06.16-02.31.55:233][ 0]LogD3D12RHI: Emitting draw events for PIX profiling. +[2025.06.16-02.31.55:286][ 0]LogNvidiaAftermath: Aftermath enabled. Active feature flags: +[2025.06.16-02.31.55:286][ 0]LogNvidiaAftermath: - Feature: EnableResourceTracking +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device1 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device2 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device3 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device4 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device5 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device6 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device7 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device8 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device9 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device10 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device11 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: ID3D12Device12 is supported. +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: Bindless resources are supported +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: Stencil ref from pixel shader is not supported +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: Raster order views are supported +[2025.06.16-02.31.55:286][ 0]LogD3D12RHI: Wave Operations are supported (wave size: min=32 max=32). +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: D3D12 ray tracing tier 1.1 and bindless resources are supported. +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: Mesh shader tier 1.0 is supported +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: AtomicInt64OnTypedResource is supported +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: AtomicInt64OnGroupShared is supported +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: AtomicInt64OnDescriptorHeapResource is supported +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: Shader Model 6.6 atomic64 is supported +[2025.06.16-02.31.55:287][ 0]LogD3D12RHI: Work Graphs are supported +[2025.06.16-02.31.55:346][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000485BE402300) +[2025.06.16-02.31.55:347][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000485BE402580) +[2025.06.16-02.31.55:347][ 0]LogD3D12RHI: [GPUBreadCrumb] Successfully setup breadcrumb resource for DiagnosticBuffer (Queue: 0x00000485BE402800) +[2025.06.16-02.31.55:347][ 0]LogD3D12RHI: Display: Not using pipeline state disk cache per r.D3D12.PSO.DiskCache=0 +[2025.06.16-02.31.55:347][ 0]LogD3D12RHI: Display: Not using driver-optimized pipeline state disk cache per r.D3D12.PSO.DriverOptimizedDiskCache=0 +[2025.06.16-02.31.55:348][ 0]LogRHI: Texture pool is 5849 MB (70% of 8356 MB) +[2025.06.16-02.31.55:348][ 0]LogD3D12RHI: Async texture creation enabled +[2025.06.16-02.31.55:348][ 0]LogD3D12RHI: RHI has support for 64 bit atomics +[2025.06.16-02.31.55:359][ 0]LogVRS: Current RHI supports per-draw and screenspace Variable Rate Shading +[2025.06.16-02.31.55:361][ 0]LogInit: Initializing FReadOnlyCVARCache +[2025.06.16-02.31.55:380][ 0]LogTurnkeySupport: Running Turnkey SDK detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all' +[2025.06.16-02.31.55:380][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_0.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_0.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -platform=all" ] +[2025.06.16-02.31.55:435][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatASTC +[2025.06.16-02.31.55:435][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatDXT +[2025.06.16-02.31.55:435][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatETC2 +[2025.06.16-02.31.55:435][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatIntelISPCTexComp +[2025.06.16-02.31.55:435][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatUncompressed +[2025.06.16-02.31.55:435][ 0]LogTextureFormatOodle: Display: Oodle Texture TFO init; latest sdk version = 2.9.12 +[2025.06.16-02.31.55:435][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.12.dll +[2025.06.16-02.31.55:439][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.5.dll +[2025.06.16-02.31.55:445][ 0]LogTextureFormatManager: Display: Loaded Base TextureFormat: TextureFormatOodle +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTC' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXT' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'AndroidClient' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ASTCClient' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_DXTClient' +[2025.06.16-02.31.55:483][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_ETC2Client' +[2025.06.16-02.31.55:484][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_Multi' +[2025.06.16-02.31.55:484][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Android_MultiClient' +[2025.06.16-02.31.55:514][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOS' +[2025.06.16-02.31.55:514][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'IOSClient' +[2025.06.16-02.31.55:544][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Linux' +[2025.06.16-02.31.55:544][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxEditor' +[2025.06.16-02.31.55:544][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxServer' +[2025.06.16-02.31.55:544][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxClient' +[2025.06.16-02.31.55:574][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64' +[2025.06.16-02.31.55:574][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Server' +[2025.06.16-02.31.55:574][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'LinuxArm64Client' +[2025.06.16-02.31.55:602][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Mac' +[2025.06.16-02.31.55:602][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacEditor' +[2025.06.16-02.31.55:602][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacServer' +[2025.06.16-02.31.55:602][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'MacClient' +[2025.06.16-02.31.55:630][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOS' +[2025.06.16-02.31.55:630][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'TVOSClient' +[2025.06.16-02.31.55:666][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'Windows' +[2025.06.16-02.31.55:666][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsEditor' +[2025.06.16-02.31.55:666][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsServer' +[2025.06.16-02.31.55:666][ 0]LogTargetPlatformManager: Display: Loaded TargetPlatform 'WindowsClient' +[2025.06.16-02.31.55:666][ 0]LogTargetPlatformManager: Display: Building Assets For WindowsEditor +[2025.06.16-02.31.55:792][ 0]LogTargetPlatformManager: Unable to find shader format SF_METAL from hinted modules, loading all potential format modules to find it +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: Loaded format module MetalShaderFormat +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_MRT +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_TVOS +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_MRT_TVOS +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_SM5 +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_SM6 +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_SIM +[2025.06.16-02.31.55:799][ 0]LogTargetPlatformManager: SF_METAL_MACES3_1 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_METAL_MRT_MAC +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatD3D +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: PCD3D_SM6 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: PCD3D_SM5 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: PCD3D_ES31 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatOpenGL +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: GLSL_150_ES31 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: GLSL_ES3_1_ANDROID +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: Loaded format module ShaderFormatVectorVM +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: VVM_1_0 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: Loaded format module VulkanShaderFormat +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_VULKAN_SM5 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_VULKAN_ES31_ANDROID +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_VULKAN_ES31 +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_VULKAN_SM5_ANDROID +[2025.06.16-02.31.55:801][ 0]LogTargetPlatformManager: SF_VULKAN_SM6 +[2025.06.16-02.31.55:802][ 0]LogRendererCore: Ray tracing is enabled (dynamic). Reason: r.RayTracing=1 and r.RayTracing.EnableOnDemand=1. +[2025.06.16-02.31.55:802][ 0]LogRendererCore: Ray tracing shaders are enabled. +[2025.06.16-02.31.55:804][ 0]LogDerivedDataCache: Display: Memory: Max Cache Size: -1 MB +[2025.06.16-02.31.55:804][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: Pak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/DDC.ddp not found, will not use a pak cache. +[2025.06.16-02.31.55:804][ 0]LogDerivedDataCache: Unable to find inner node Pak for hierarchy Hierarchy. +[2025.06.16-02.31.55:804][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: CompressedPak pak cache file G:/TestForNPCAI/ProjectFish/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-02.31.55:804][ 0]LogDerivedDataCache: Unable to find inner node CompressedPak for hierarchy Hierarchy. +[2025.06.16-02.31.55:862][ 0]LogDerivedDataCache: Display: ../../../Engine/DerivedDataCache/Compressed.ddp: Opened pak cache for reading. (1559 MiB) +[2025.06.16-02.31.55:862][ 0]LogDerivedDataCache: FDerivedDataBackendGraph: EnterprisePak pak cache file ../../../Enterprise/DerivedDataCache/Compressed.ddp not found, will not use a pak cache. +[2025.06.16-02.31.55:862][ 0]LogDerivedDataCache: Unable to find inner node EnterprisePak for hierarchy Hierarchy. +[2025.06.16-02.31.55:863][ 0]LogZenServiceInstance: Found Zen config default=C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Data +[2025.06.16-02.31.55:863][ 0]LogZenServiceInstance: InTree version at 'F:/Epic/UE_5.5/Engine/Binaries/Win64/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-02.31.55:865][ 0]LogZenServiceInstance: Installed version at 'C:/Users/99714/AppData/Local/UnrealEngine/Common/Zen/Install/zenserver.exe' is '5.5.7-202409112143-windows-x64-release-f523a01' +[2025.06.16-02.31.55:865][ 0]LogZenServiceInstance: Found existing instance running on port 8558 matching our settings, no actions needed +[2025.06.16-02.31.55:867][ 0]LogZenServiceInstance: Display: Unreal Zen Storage Server HTTP service at [::1]:8558 status: OK!. +[2025.06.16-02.31.55:867][ 0]LogZenServiceInstance: Local ZenServer AutoLaunch initialization completed in 0.003 seconds +[2025.06.16-02.31.55:868][ 0]LogDerivedDataCache: Display: ZenLocal: Using ZenServer HTTP service at http://[::1]:8558/ with namespace ue.ddc status: OK!. +[2025.06.16-02.31.55:881][ 0]LogDerivedDataCache: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Speed tests took 0.01 seconds. +[2025.06.16-02.31.55:881][ 0]LogDerivedDataCache: Display: C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: Performance: Latency=0.07ms. RandomReadSpeed=294.82MBs, RandomWriteSpeed=112.99MBs. Assigned SpeedClass 'Local' +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Local: Using data cache path C:/Users/99714/AppData/Local/UnrealEngine/Common/DerivedDataCache: DeleteOnly +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: ZenShared: Disabled because Host is set to 'None' +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Unable to find inner node ZenShared for hierarchy Hierarchy. +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Shared: Disabled because no path is configured. +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Unable to find inner node Shared for hierarchy Hierarchy. +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Cloud: Disabled because Host is set to 'None' +[2025.06.16-02.31.55:882][ 0]LogDerivedDataCache: Unable to find inner node Cloud for hierarchy Hierarchy. +[2025.06.16-02.31.55:883][ 0]LogShaderCompilers: Guid format shader working directory is 19 characters bigger than the processId version (G:/TestForNPCAI/ProjectFish/Intermediate/Shaders/WorkingDirectory/5884/). +[2025.06.16-02.31.55:883][ 0]LogShaderCompilers: Cleaned the shader compiler working directory 'C:/Users/99714/AppData/Local/Temp/UnrealShaderWorkingDir/1D41C6B74F2256508D79ECBD29D0AB26/'. +[2025.06.16-02.31.55:883][ 0]LogXGEController: Cannot use XGE Controller as Incredibuild is not installed on this machine. +[2025.06.16-02.31.55:883][ 0]LogShaderCompilers: Display: Using Local Shader Compiler with 12 workers. +[2025.06.16-02.31.55:884][ 0]LogShaderCompilers: Display: Compiling shader autogen file: G:/TestForNPCAI/ProjectFish/Intermediate/ShaderAutogen/PCD3D_SM6/AutogenShaderHeaders.ush +[2025.06.16-02.31.55:884][ 0]LogShaderCompilers: Display: Autogen file is unchanged, skipping write. +[2025.06.16-02.31.56:552][ 0]LogTurnkeySupport: Completed SDK detection: ExitCode = 0 +[2025.06.16-02.31.57:467][ 0]LogSlate: Using FreeType 2.10.0 +[2025.06.16-02.31.57:470][ 0]LogSlate: SlateFontServices - WITH_FREETYPE: 1, WITH_HARFBUZZ: 1 +[2025.06.16-02.31.57:473][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-02.31.57:473][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-02.31.57:476][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-02.31.57:476][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-02.31.57:476][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-02.31.57:478][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-02.31.57:505][ 0]LogAssetRegistry: FAssetRegistry took 0.0025 seconds to start up +[2025.06.16-02.31.57:506][ 0]LogEditorDomain: Display: EditorDomain is Disabled +[2025.06.16-02.31.57:511][ 0]LogAssetRegistry: Display: AssetDataGatherer spent 0.000s loading caches G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin. +[2025.06.16-02.31.57:643][ 0]LogStreaming: Display: FlushAsyncLoading(1): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-02.31.57:645][ 0]LogTextureEncodingSettings: Display: Texture Encode Speed: FinalIfAvailable (editor). +[2025.06.16-02.31.57:645][ 0]LogTextureEncodingSettings: Display: Oodle Texture Encode Speed settings: Fast: RDO Off Lambda=0, Effort=Normal Final: RDO Off Lambda=0, Effort=Normal +[2025.06.16-02.31.57:645][ 0]LogTextureEncodingSettings: Display: Shared linear texture encoding: Disabled +[2025.06.16-02.31.57:658][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64Editor not found. +[2025.06.16-02.31.57:658][ 0]LogDeviceProfileManager: Display: Deviceprofile LinuxArm64 not found. +[2025.06.16-02.31.57:677][ 0]LogDeviceProfileManager: Active device profile: [00000485DBD76000][00000485C05BA000 66] WindowsEditor +[2025.06.16-02.31.57:677][ 0]LogCsvProfiler: Display: Metadata set : deviceprofile="WindowsEditor" +[2025.06.16-02.31.57:678][ 0]LogTurnkeySupport: Turnkey Platform: Win64: (Status=Valid, MinAllowed_Sdk=10.0.19041.0, MaxAllowed_Sdk=10.9.99999.0, Current_Sdk=10.0.22621.0, Allowed_AutoSdk=10.0.22621.0, Current_AutoSdk=, Flags="InstalledSdk_ValidVersionExists, Sdk_HasBestVersion") +[2025.06.16-02.31.57:684][ 0]LogTurnkeySupport: Running Turnkey device detection: ' -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T' +[2025.06.16-02.31.57:684][ 0]LogMonitoredProcess: Running Serialized UAT: [ cmd.exe /c ""F:/Epic/UE_5.5/Engine/Build/BatchFiles/RunUAT.bat" -ScriptsForProject="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" Turnkey -utf8output -WaitForUATMutex -command=VerifySdk -ReportFilename="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyReport_1.log" -log="G:/TestForNPCAI/ProjectFish/Intermediate/TurnkeyLog_1.log" -project="G:/TestForNPCAI/ProjectFish/ProjectFish.uproject" -Device=Win64@T" -nocompile -nocompileuat ] +[2025.06.16-02.31.57:713][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:713][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 18 to allow recursive sync load to finish +[2025.06.16-02.31.57:713][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:713][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:713][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 19 to allow recursive sync load to finish +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 20 to allow recursive sync load to finish +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 21 to allow recursive sync load to finish +[2025.06.16-02.31.57:715][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:716][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:716][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:716][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 23 to allow recursive sync load to finish +[2025.06.16-02.31.57:716][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 24 to allow recursive sync load to finish +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 26 to allow recursive sync load to finish +[2025.06.16-02.31.57:717][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:718][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:718][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 27 to allow recursive sync load to finish +[2025.06.16-02.31.57:718][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:718][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: WaitingForIo) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:718][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDiffuse with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness has reached state ExportsDone > CreateLinkerLoadExports, releasing request 29 to allow recursive sync load to finish +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/PowerToRoughness with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Flushing package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec has reached state ExportsDone > CreateLinkerLoadExports, releasing request 30 to allow recursive sync load to finish +[2025.06.16-02.31.57:719][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions01/Shading/ConvertFromDiffSpec with requester package /Engine/EngineMaterials/DefaultPostProcessMaterial +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Merging postload groups of package /Engine/Functions/Engine_MaterialFunctions02/Utility/BreakOutFloat2Components with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 28 to allow recursive sync load to finish +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultPostProcessMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultPostProcessMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 31 to allow recursive sync load to finish +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultPostProcessMaterial with requester package /Engine/EngineMaterials/DefaultLightFunctionMaterial +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 25 to allow recursive sync load to finish +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultLightFunctionMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultLightFunctionMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 32 to allow recursive sync load to finish +[2025.06.16-02.31.57:720][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultLightFunctionMaterial with requester package /Engine/EngineMaterials/DefaultDeferredDecalMaterial +[2025.06.16-02.31.57:722][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 22 to allow recursive sync load to finish +[2025.06.16-02.31.57:722][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:722][ 0]LogStreaming: Display: Flushing package /Engine/EngineMaterials/DefaultDeferredDecalMaterial (state: ExportsDone) recursively from another package /Engine/EngineMaterials/WorldGridMaterial (state: CreateLinkerLoadExports) will result in a partially loaded package to avoid a deadlock. +[2025.06.16-02.31.57:722][ 0]LogStreaming: Display: Package /Engine/EngineMaterials/DefaultDeferredDecalMaterial has reached state ExportsDone > CreateLinkerLoadExports, releasing request 33 to allow recursive sync load to finish +[2025.06.16-02.31.57:722][ 0]LogStreaming: Display: Merging postload groups of package /Engine/EngineMaterials/DefaultDeferredDecalMaterial with requester package /Engine/EngineMaterials/WorldGridMaterial +[2025.06.16-02.31.57:914][ 0]LogMeshReduction: Display: Using QuadricMeshReduction for automatic static mesh reduction +[2025.06.16-02.31.57:914][ 0]LogMeshReduction: Display: Using SkeletalMeshReduction for automatic skeletal mesh reduction +[2025.06.16-02.31.57:914][ 0]LogMeshReduction: Display: Using ProxyLODMeshReduction for automatic mesh merging +[2025.06.16-02.31.57:914][ 0]LogMeshReduction: Display: No distributed automatic mesh merging module available +[2025.06.16-02.31.57:914][ 0]LogMeshMerging: No distributed automatic mesh merging module available +[2025.06.16-02.31.58:169][ 0]LogConfig: Branch 'PIEPreviewSettings' had been unloaded. Reloading on-demand took 0.60ms +[2025.06.16-02.31.58:185][ 0]LogConfig: Branch 'GameplayTagsList' had been unloaded. Reloading on-demand took 0.54ms +[2025.06.16-02.31.58:196][ 0]LogConfig: Branch 'TemplateDefs' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.16-02.31.58:197][ 0]LogConfig: Branch 'TemplateCategories' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-02.31.58:347][ 0]LogVirtualization: Display: VirtualizationSystem name found in ini file: None +[2025.06.16-02.31.58:347][ 0]LogVirtualization: Display: FNullVirtualizationSystem mounted, virtualization will be disabled +[2025.06.16-02.31.58:389][ 0]LogSlate: Border +[2025.06.16-02.31.58:389][ 0]LogSlate: BreadcrumbButton +[2025.06.16-02.31.58:389][ 0]LogSlate: Brushes.Title +[2025.06.16-02.31.58:389][ 0]LogSlate: Default +[2025.06.16-02.31.58:389][ 0]LogSlate: Icons.Save +[2025.06.16-02.31.58:389][ 0]LogSlate: Icons.Toolbar.Settings +[2025.06.16-02.31.58:389][ 0]LogSlate: ListView +[2025.06.16-02.31.58:389][ 0]LogSlate: SoftwareCursor_CardinalCross +[2025.06.16-02.31.58:389][ 0]LogSlate: SoftwareCursor_Grab +[2025.06.16-02.31.58:389][ 0]LogSlate: TableView.DarkRow +[2025.06.16-02.31.58:390][ 0]LogSlate: TableView.Row +[2025.06.16-02.31.58:390][ 0]LogSlate: TreeView +[2025.06.16-02.31.58:483][ 0]LogTurnkeySupport: Completed device detection: Code = 0 +[2025.06.16-02.31.58:592][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize started... +[2025.06.16-02.31.58:593][ 0]LogWorldPartition: Display: FWorldPartitionClassDescRegistry::Initialize took 1.460 ms +[2025.06.16-02.31.58:614][ 0]LogConfig: Branch 'Mass' had been unloaded. Reloading on-demand took 0.38ms +[2025.06.16-02.31.58:663][ 0]LogInit: XR: Instanced Stereo Rendering is Disabled +[2025.06.16-02.31.58:663][ 0]LogInit: XR: MultiViewport is Disabled +[2025.06.16-02.31.58:663][ 0]LogInit: XR: Mobile Multiview is Disabled +[2025.06.16-02.31.58:663][ 0]LogTurnkeySupport: Turnkey Device: Win64@T: (Name=T, Type=Computer, Status=Valid, MinAllowed=10.0.19041.0, MaxAllowed=, Current=10.0.26100.0, Flags="Device_InstallSoftwareValid") +[2025.06.16-02.31.58:820][ 0]LogConfig: Branch 'TranslationPickerSettings' had been unloaded. Reloading on-demand took 0.40ms +[2025.06.16-02.31.59:607][ 0]LogMetaSound: Display: MetaSound Page Target Initialized to 'Default' +[2025.06.16-02.31.59:607][ 0]LogAudio: Display: Registering Engine Module Parameter Interfaces... +[2025.06.16-02.31.59:619][ 0]LogMetaSound: MetaSound Engine Initialized +[2025.06.16-02.31.59:712][ 0]LogNiagaraDebuggerClient: Niagara Debugger Client Initialized | Session: 988C61089B8845688000000000004500 | Instance: C5EAFA9C4302E892CEAD0D8B8BAB65EF (T-5884). +[2025.06.16-02.31.59:887][ 0]LogNNERuntimeORT: Available graphics and compute adapters: +[2025.06.16-02.31.59:887][ 0]LogNNERuntimeORT: 0: NVIDIA GeForce RTX 3080 (Compute, Graphics) +[2025.06.16-02.31.59:888][ 0]LogNNERuntimeORT: 1: Microsoft Basic Render Driver (Compute, Graphics) +[2025.06.16-02.31.59:892][ 0]LogNNERuntimeORT: No NPU adapter found! +[2025.06.16-02.32.00:106][ 0]LogUdpMessaging: Display: Work queue size set to 1024. +[2025.06.16-02.32.00:106][ 0]LogUdpMessaging: Initializing bridge on interface 0.0.0.0:0 to multicast group 230.0.0.1:6666. +[2025.06.16-02.32.00:107][ 0]LogUdpMessaging: Display: Unicast socket bound to '0.0.0.0:60432'. +[2025.06.16-02.32.00:111][ 0]LogUdpMessaging: Display: Added local interface '192.168.2.199' to multicast group '230.0.0.1:6666' +[2025.06.16-02.32.00:123][ 0]LogTcpMessaging: Initializing TcpMessaging bridge +[2025.06.16-02.32.00:709][ 0]LogSkeletalMesh: Building Skeletal Mesh SKM_Quinn... +[2025.06.16-02.32.01:065][ 0]SourceControl: Revision control is disabled +[2025.06.16-02.32.01:103][ 0]SourceControl: Revision control is disabled +[2025.06.16-02.32.01:171][ 0]LogConfig: Branch 'ObjectMixerSerializedData' had been unloaded. Reloading on-demand took 0.41ms +[2025.06.16-02.32.01:191][ 0]LogConfig: Branch 'Crypto' had been unloaded. Reloading on-demand took 0.37ms +[2025.06.16-02.32.01:832][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-02.32.01:832][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-02.32.01:883][ 0]LogAndroidPermission: UAndroidPermissionCallbackProxy::GetInstance +[2025.06.16-02.32.01:909][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-02.32.01:909][ 0]LogAudioCaptureCore: Display: No Audio Capture implementations found. Audio input will be silent. +[2025.06.16-02.32.02:108][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/glf/resources/plugInfo.json' +[2025.06.16-02.32.02:109][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdGp/resources/plugInfo.json' +[2025.06.16-02.32.02:109][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRender/resources/plugInfo.json' +[2025.06.16-02.32.02:111][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShade/resources/plugInfo.json' +[2025.06.16-02.32.02:111][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdStorm/resources/plugInfo.json' +[2025.06.16-02.32.02:112][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRiPxrImaging/resources/plugInfo.json' +[2025.06.16-02.32.02:112][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdx/resources/plugInfo.json' +[2025.06.16-02.32.02:113][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdShaders/resources/plugInfo.json' +[2025.06.16-02.32.02:113][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hd/resources/plugInfo.json' +[2025.06.16-02.32.02:114][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdRi/resources/plugInfo.json' +[2025.06.16-02.32.02:114][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hio/resources/plugInfo.json' +[2025.06.16-02.32.02:115][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ndr/resources/plugInfo.json' +[2025.06.16-02.32.02:116][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hdSt/resources/plugInfo.json' +[2025.06.16-02.32.02:116][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkel/resources/plugInfo.json' +[2025.06.16-02.32.02:117][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdf/resources/plugInfo.json' +[2025.06.16-02.32.02:117][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/hgiGL/resources/plugInfo.json' +[2025.06.16-02.32.02:118][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdSkelImaging/resources/plugInfo.json' +[2025.06.16-02.32.02:118][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdUI/resources/plugInfo.json' +[2025.06.16-02.32.02:119][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVol/resources/plugInfo.json' +[2025.06.16-02.32.02:119][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/plugInfo.json' +[2025.06.16-02.32.02:120][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdVolImaging/resources/plugInfo.json' +[2025.06.16-02.32.02:120][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/sdrGlslfx/resources/plugInfo.json' +[2025.06.16-02.32.02:122][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdGeom/resources/plugInfo.json' +[2025.06.16-02.32.02:123][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdHydra/resources/plugInfo.json' +[2025.06.16-02.32.02:123][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImagingGL/resources/plugInfo.json' +[2025.06.16-02.32.02:124][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMedia/resources/plugInfo.json' +[2025.06.16-02.32.02:125][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdAbc/resources/plugInfo.json' +[2025.06.16-02.32.02:125][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdMtlx/resources/plugInfo.json' +[2025.06.16-02.32.02:126][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdPhysics/resources/plugInfo.json' +[2025.06.16-02.32.02:127][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdLux/resources/plugInfo.json' +[2025.06.16-02.32.02:128][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProc/resources/plugInfo.json' +[2025.06.16-02.32.02:128][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdProcImaging/resources/plugInfo.json' +[2025.06.16-02.32.02:129][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/ar/resources/plugInfo.json' +[2025.06.16-02.32.02:129][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usdImaging/resources/plugInfo.json' +[2025.06.16-02.32.02:131][ 0]LogUsd: Updated LibraryPaths for USD plugInfo.json file 'F:/Epic/UE_5.5/Engine/Binaries/ThirdParty/USD/UsdResources/Win64/plugins/usd/resources/codegenTemplates/plugInfo.json' +[2025.06.16-02.32.02:171][ 0]LogConfig: Applying CVar settings from Section [/Script/NNEDenoiser.NNEDenoiserSettings] File [Engine] +[2025.06.16-02.32.02:521][ 0]LogCollectionManager: Loaded 0 collections in 0.000678 seconds +[2025.06.16-02.32.02:522][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Saved/Collections/' took 0.00s +[2025.06.16-02.32.02:524][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Developers/99714/Collections/' took 0.00s +[2025.06.16-02.32.02:527][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/Collections/' took 0.00s +[2025.06.16-02.32.02:703][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png' error. +[2025.06.16-02.32.02:703][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Developer/PlasticSourceControl/Resources/Icon128.png +[2025.06.16-02.32.02:706][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png' error. +[2025.06.16-02.32.02:706][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_24x.png +[2025.06.16-02.32.02:706][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png' error. +[2025.06.16-02.32.02:706][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Platforms/VisionOS/Content/Editor/Slate/Launcher/Platform_VisionOS_128x.png +[2025.06.16-02.32.02:731][ 0]LogStreaming: Warning: Failed to read file '../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png' error. +[2025.06.16-02.32.02:731][ 0]LogSlate: Could not find file for Slate resource: ../../../Engine/Plugins/Interchange/Editor/Content/Old/Tiles/Outer/alertSolid.png +[2025.06.16-02.32.02:742][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Version 1.17.0-39599718 booting at 2025-06-16T02:32:02.742Z using C +[2025.06.16-02.32.02:742][ 0]LogEOSSDK: LogEOS: [Boot] EOSSDK Platform Properties [OS=Windows/10.0.26100.4202.64bit, ClientId=xyza7891REBVsEqSJRRNXmlS7EQHM459, ProductId=86f32f1151354e7cb39c12f8ab2c22a3, SandboxId=a01927f7421a4d4995673fe30ef46945, DeploymentId=a652a72ea1664dcab3a467891eea5f30, ProductName=ProjectFish, ProductVersion=++UE5+Release-5.5-CL-40574608, IsServer=false, Flags=DisableOverlay] +[2025.06.16-02.32.02:743][ 0]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-02.32.02:743][ 0]LogEOSSDK: LogEOSOverlay: Overlay will not load, because it was explicitly disabled when creating the platform +[2025.06.16-02.32.02:747][ 0]LogEOSSDK: LogEOSAntiCheat: [AntiCheatClient] Anti-cheat client not available. Verify that the game was started using the anti-cheat bootstrapper if you intend to use it. +[2025.06.16-02.32.02:747][ 0]LogEOSSDK: LogEOS: SetApplicationStatus - OldStatus: EOS_AS_Foreground, NewStatus: EOS_AS_Foreground, Current Time: 0001.01.01-00.00.00 +[2025.06.16-02.32.02:748][ 0]LogEOSSDK: LogEOS: SetNetworkStatus - OldStatus: EOS_NS_Online, NewStatus: EOS_NS_Online +[2025.06.16-02.32.02:748][ 0]LogEOSSDK: LogEOS: Updating Platform SDK Config, Time: 0.000183 +[2025.06.16-02.32.02:748][ 0]LogFab: Display: Logging in using persist +[2025.06.16-02.32.02:784][ 0]LogUObjectArray: 52516 objects as part of root set at end of initial load. +[2025.06.16-02.32.02:784][ 0]LogUObjectArray: CloseDisregardForGC: 0/0 objects in disregard for GC pool +[2025.06.16-02.32.02:794][ 0]LogStreaming: Display: AsyncLoading2 - NotifyRegistrationComplete: Registered 36349 public script object entries (985.50 KB) +[2025.06.16-02.32.02:794][ 0]LogStreaming: Display: AsyncLoading2 - Thread Started: false, IsInitialLoad: false +[2025.06.16-02.32.02:869][ 0]LogClass: Error: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:869][ 0]LogClass: Error: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:870][ 0]LogClass: Error: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:870][ 0]LogClass: Display: 10 Uninitialized script struct members found including 2 object properties +[2025.06.16-02.32.02:879][ 0]LogClass: Warning: Property StructProperty FSkillData::SkillTexture defines MetaData key "AllowedClasses" which contains short type name "Texture2D". Suggested pathname: "/Script/Engine.Texture2D". Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:896][ 0]LogClass: Display: 1 short type names in reflected types' MetaData +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::SkillManager is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: ObjectProperty FSkillContext::Self is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::SelecterType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::TargetType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillTargetSelector::RandomType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: EnumProperty FSkillEffectData::EffectType is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillEffectData::EffectValue is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: FloatProperty FSkillData::CD is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::Endurance is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogAutomationTest: Error: LogClass: IntProperty FSkillData::WeightLimit is not initialized properly. Module:ProjectFish File:Definations.h +[2025.06.16-02.32.02:898][ 0]LogEngine: Initializing Engine... +[2025.06.16-02.32.02:902][ 0]LogStylusInput: Initializing StylusInput subsystem. +[2025.06.16-02.32.02:902][ 0]LogStats: UGameplayTagsManager::InitializeManager - 0.000 s +[2025.06.16-02.32.02:971][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.11.dll +[2025.06.16-02.32.02:996][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world Untitled +[2025.06.16-02.32.03:013][ 0]LogNetVersion: Set ProjectVersion to 1.0.0.0. Version Checksum will be recalculated on next use. +[2025.06.16-02.32.03:013][ 0]LogInit: Texture streaming: Enabled +[2025.06.16-02.32.03:038][ 0]LogAnalytics: Display: [UEEditor.Rocket.Release] APIServer = https://datarouter.ol.epicgames.com/datarouter/api/v1/public/data. AppVersion = 5.5.4-40574608+++UE5+Release-5.5 +[2025.06.16-02.32.03:054][ 0]LogAudio: Display: Initializing Audio Device Manager... +[2025.06.16-02.32.03:077][ 0]LogAudio: Display: Loading Default Audio Settings Objects... +[2025.06.16-02.32.03:078][ 0]LogAudio: Display: No default SoundConcurrencyObject specified (or failed to load). +[2025.06.16-02.32.03:078][ 0]LogAudio: Display: Audio Device Manager Initialized +[2025.06.16-02.32.03:078][ 0]LogAudio: Display: Creating Audio Device: Id: 1, Scope: Shared, Realtime: True +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Audio Mixer Platform Settings: +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Sample Rate: 48000 +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Callback Buffer Frame Size Requested: 1024 +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Callback Buffer Frame Size To Use: 1024 +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Number of buffers to queue: 1 +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Max Channels (voices): 32 +[2025.06.16-02.32.03:078][ 0]LogAudioMixer: Display: Number of Async Source Workers: 4 +[2025.06.16-02.32.03:078][ 0]LogAudio: Display: AudioDevice MaxSources: 32 +[2025.06.16-02.32.03:078][ 0]LogAudio: Display: Audio Spatialization Plugin: None (built-in). +[2025.06.16-02.32.03:079][ 0]LogAudio: Display: Audio Reverb Plugin: None (built-in). +[2025.06.16-02.32.03:079][ 0]LogAudio: Display: Audio Occlusion Plugin: None (built-in). +[2025.06.16-02.32.03:098][ 0]LogAudioMixer: Display: Initializing audio mixer using platform API: 'XAudio2' +[2025.06.16-02.32.03:146][ 0]LogAudioMixer: Display: Using Audio Hardware Device 扬声器 (USB PnP Sound Device) +[2025.06.16-02.32.03:146][ 0]LogAudioMixer: Display: Initializing Sound Submixes... +[2025.06.16-02.32.03:147][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterSubmixDefault' +[2025.06.16-02.32.03:147][ 0]LogAudioMixer: Display: Creating Master Submix 'MasterReverbSubmixDefault' +[2025.06.16-02.32.03:148][ 0]LogAudioMixer: FMixerPlatformXAudio2::StartAudioStream() called. InstanceID=1 +[2025.06.16-02.32.03:148][ 0]LogAudioMixer: Display: Output buffers initialized: Frames=1024, Channels=2, Samples=2048, InstanceID=1 +[2025.06.16-02.32.03:150][ 0]LogAudioMixer: Display: Starting AudioMixerPlatformInterface::RunInternal(), InstanceID=1 +[2025.06.16-02.32.03:150][ 0]LogInit: FAudioDevice initialized with ID 1. +[2025.06.16-02.32.03:150][ 0]LogAudioMixer: Display: FMixerPlatformXAudio2::SubmitBuffer() called for the first time. InstanceID=1 +[2025.06.16-02.32.03:150][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'Untitled'. +[2025.06.16-02.32.03:151][ 0]LogAudioMixer: Initializing Audio Bus Subsystem for audio device with ID 1 +[2025.06.16-02.32.03:162][ 0]LogCsvProfiler: Display: Metadata set : largeworldcoordinates="1" +[2025.06.16-02.32.03:164][ 0]LogInit: Undo buffer set to 256 MB +[2025.06.16-02.32.03:164][ 0]LogInit: Transaction tracking system initialized +[2025.06.16-02.32.03:191][ 0]LogSourceControl: Display: Uncontrolled Changelist persistency file loaded G:/TestForNPCAI/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json +[2025.06.16-02.32.03:326][ 0]LogConfig: Branch 'LocalizationServiceSettings' had been unloaded. Reloading on-demand took 0.53ms +[2025.06.16-02.32.03:327][ 0]LocalizationService: Localization service is disabled +[2025.06.16-02.32.03:352][ 0]LogTimingProfiler: Initialize +[2025.06.16-02.32.03:352][ 0]LogTimingProfiler: OnSessionChanged +[2025.06.16-02.32.03:352][ 0]LoadingProfiler: Initialize +[2025.06.16-02.32.03:352][ 0]LoadingProfiler: OnSessionChanged +[2025.06.16-02.32.03:353][ 0]LogNetworkingProfiler: Initialize +[2025.06.16-02.32.03:353][ 0]LogNetworkingProfiler: OnSessionChanged +[2025.06.16-02.32.03:353][ 0]LogMemoryProfiler: Initialize +[2025.06.16-02.32.03:353][ 0]LogMemoryProfiler: OnSessionChanged +[2025.06.16-02.32.03:634][ 0]LogFileCache: Scanning file cache for directory 'G:/TestForNPCAI/ProjectFish/Content/' took 0.01s +[2025.06.16-02.32.03:678][ 0]LogPython: Using Python 3.11.8 +[2025.06.16-02.32.04:354][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 2 +[2025.06.16-02.32.04:354][ 0]LogSkeletalMeshReduction: Reducing skeletal mesh for LOD 3 +[2025.06.16-02.32.04:389][ 0]LogPython: Display: No enabled plugins with python dependencies found, skipping +[2025.06.16-02.32.04:400][ 0]LogRenderer: Requested compilation of Path Tracing RTPSOs (1 permutations). +[2025.06.16-02.32.04:435][ 0]LogStreaming: Warning: Failed to read file 'Common/Selector.png' error. +[2025.06.16-02.32.04:435][ 0]LogSlate: Could not find file for Slate resource: Common/Selector.png +[2025.06.16-02.32.04:472][ 0]LogLevelSequenceEditor: LevelSequenceEditor subsystem initialized. +[2025.06.16-02.32.04:718][ 0]LogEditorDataStorage: Initializing +[2025.06.16-02.32.04:718][ 0]LogEditorDataStorage: Initialized +[2025.06.16-02.32.04:747][ 0]LogInit: Display: Engine is initialized. Leaving FEngineLoop::Init() +[2025.06.16-02.32.04:749][ 0]SourceControl: Revision control is disabled +[2025.06.16-02.32.04:749][ 0]LogUnrealEdMisc: Loading editor; pre map load, took 12.475 +[2025.06.16-02.32.04:749][ 0]Cmd: MAP LOAD FILE="G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap" TEMPLATE=0 SHOWPROGRESS=1 FEATURELEVEL=4 +[2025.06.16-02.32.04:751][ 0]LogWorld: UWorld::CleanupWorld for Untitled, bSessionEnded=true, bCleanupResources=true +[2025.06.16-02.32.04:752][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-02.32.04:768][ 0]LogSkeletalMesh: Display: Waiting for skinned assets to be ready 0/1 (SKM_Quinn) ... +[2025.06.16-02.32.04:812][ 0]LogAssetRegistry: Display: Triggering cache save on discovery complete +[2025.06.16-02.32.05:523][ 0]LogAssetRegistry: Display: Asset registry cache written as 38.2 MiB to G:/TestForNPCAI/ProjectFish/Intermediate/CachedAssetRegistry_*.bin +[2025.06.16-02.32.07:230][ 0]LogSkeletalMesh: Skeletal mesh [/Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn]: The derived data key is different after the build. Save the asset to avoid rebuilding it everytime the editor load it. +[2025.06.16-02.32.07:242][ 0]LogSkeletalMesh: Built Skeletal Mesh [6.53s] /Game/Characters/Mannequins/Meshes/SKM_Quinn.SKM_Quinn +[2025.06.16-02.32.07:253][ 0]LogAudio: Display: Audio Device unregistered from world 'None'. +[2025.06.16-02.32.07:254][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.36ms +[2025.06.16-02.32.07:261][ 0]LogAudio: Display: Audio Device (ID: 1) registered with world 'TopDownMap'. +[2025.06.16-02.32.07:261][ 0]LogChaosDD: Creating Chaos Debug Draw Scene for world TopDownMap +[2025.06.16-02.32.07:263][ 0]LogWorldPartition: ULevel::OnLevelLoaded(TopDownMap)(bIsOwningWorldGameWorld=0, bIsOwningWorldPartitioned=1, InitializeForMainWorld=1, InitializeForEditor=1, InitializeForGame=0) +[2025.06.16-02.32.07:263][ 0]LogWorldPartition: Display: WorldPartition initialize started... +[2025.06.16-02.32.07:263][ 0]LogWorldPartition: UWorldPartition::Initialize : World = /Game/TopDown/Maps/TopDownMap.TopDownMap, World Type = Editor, IsMainWorldPartition = 1, Location = V(0), Rotation = R(0), IsEditor = 1, IsGame = 0, IsPIEWorldTravel = 0, IsCooking = 0 +[2025.06.16-02.32.07:308][ 0]LogTextureFormatOodle: Display: Oodle Texture loading DLL: oo2tex_win64_2.9.8.dll +[2025.06.16-02.32.07:334][ 0]LogWorldPartition: Display: WorldPartition initialize took 71.258 ms +[2025.06.16-02.32.07:343][ 0]LogEditorServer: Finished looking for orphan Actors (0.000 secs) +[2025.06.16-02.32.07:353][ 0]LogUObjectHash: Compacting FUObjectHashTables data took 0.34ms +[2025.06.16-02.32.07:354][ 0]Cmd: MAP CHECKDEP NOCLEARLOG +[2025.06.16-02.32.07:354][ 0]MapCheck: Map check complete: 0 Error(s), 0 Warning(s), took 0.432ms to complete. +[2025.06.16-02.32.07:361][ 0]LogUnrealEdMisc: Total Editor Startup Time, took 15.086 +[2025.06.16-02.32.07:511][ 0]LogActorFactory: Loading ActorFactory Class /Script/Engine.LevelInstance +[2025.06.16-02.32.07:558][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-02.32.07:589][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-02.32.07:618][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-02.32.07:648][ 0]LogSlate: Updating window title bar state: overlay mode, drag disabled, window buttons hidden, title bar hidden +[2025.06.16-02.32.07:657][ 0]LogSlate: Took 0.000605 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansMono.ttf' (77K) +[2025.06.16-02.32.07:674][ 0]LogSlate: Took 0.000738 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Regular.ttf' (155K) +[2025.06.16-02.32.07:678][ 0]LogSlate: Took 0.003202 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/DroidSansFallback.ttf' (3848K) +[2025.06.16-02.32.07:748][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:748][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/StarterContent.upack', mount point: 'root:/' +[2025.06.16-02.32.07:750][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:751][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPerson.upack', mount point: 'root:/' +[2025.06.16-02.32.07:752][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:752][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_FirstPersonBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:753][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:754][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_HandheldARBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:755][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:755][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPerson.upack', mount point: 'root:/' +[2025.06.16-02.32.07:756][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:757][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_ThirdPersonBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:757][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:757][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDown.upack', mount point: 'root:/' +[2025.06.16-02.32.07:758][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:758][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_TopDownBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:759][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:759][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VehicleAdvBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:761][ 0]LogPakFile: Initializing PakPlatformFile +[2025.06.16-02.32.07:762][ 0]LogPakFile: Display: Mounted Pak file 'F:/Epic/UE_5.5/FeaturePacks/TP_VirtualRealityBP.upack', mount point: 'root:/' +[2025.06.16-02.32.07:910][ 0]LogSceneOutliner: Outliner Column Data Layer Visibility does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:910][ 0]LogSceneOutliner: Outliner Column Data Layer Loaded In Editor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:910][ 0]LogSceneOutliner: Outliner Column Item Label does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:910][ 0]LogSceneOutliner: Outliner Column Remove Actor does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:910][ 0]LogSceneOutliner: Outliner Column Initial State does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:912][ 0]LogSceneOutliner: Outliner Column ID Name does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:912][ 0]LogSceneOutliner: Outliner Column Debug Color does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:912][ 0]LogSceneOutliner: Outliner Column Data Layer Has Errors does not have a localizable name, please specify one to FSceneOutlinerColumnInfo +[2025.06.16-02.32.07:995][ 0]LogSlate: Took 0.000555 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Bold.ttf' (160K) +[2025.06.16-02.32.08:025][ 0]LogNNEDenoiser: ApplySettings: bDenoiserEnabled 1 +[2025.06.16-02.32.08:029][ 0]LogNNEDenoiser: Loaded input mapping from NNEDIM_ColorAlbedoNormal_Alpha +[2025.06.16-02.32.08:029][ 0]LogNNEDenoiser: Loaded output mapping from NNEDOM_Output_Alpha +[2025.06.16-02.32.08:029][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-02.32.08:068][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-02.32.08:068][ 0]LogNNEDenoiser: Create denoiser from asset /NNEDenoiser/NNED_Oidn2-3_Balanced_Alpha.NNED_Oidn2-3_Balanced_Alpha... +[2025.06.16-02.32.08:069][ 0]LogNNEDenoiser: Loaded input mapping from NNEDTIM_ColorAlbedoNormal_Alpha +[2025.06.16-02.32.08:069][ 0]LogNNEDenoiser: Loaded output mapping from NNEDTOM_Output_Alpha +[2025.06.16-02.32.08:069][ 0]LogNNEDenoiser: Try create model instance with runtime NNERuntimeORTDml on RDG... +[2025.06.16-02.32.08:100][ 0]LogNNEDenoiser: Display: Created model instance with runtime NNERuntimeORTDml on RDG +[2025.06.16-02.32.08:100][ 0]LogNNEDenoiser: Create temporal denoiser from asset /NNEDenoiser/NNEDT_Oidn2-3_Balanced_Alpha.NNEDT_Oidn2-3_Balanced_Alpha... +[2025.06.16-02.32.08:134][ 0]LogSlate: Took 0.000743 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Light.ttf' (167K) +[2025.06.16-02.32.08:303][ 0]LogD3D12RHI: Creating RTPSO with 21 shaders (0 cached, 21 new) took 110.25 ms. Compile time 29.68 ms, link time 80.43 ms. +[2025.06.16-02.32.08:439][ 0]LogStall: Startup... +[2025.06.16-02.32.08:441][ 0]LogStall: Startup complete. +[2025.06.16-02.32.08:464][ 0]LogLoad: (Engine Initialization) Total time: 16.19 seconds +[2025.06.16-02.32.08:595][ 0]LogAssetRegistry: AssetRegistryGather time 0.0927s: AssetDataDiscovery 0.0503s, AssetDataGather 0.0073s, StoreResults 0.0351s. Wall time 11.0920s. + NumCachedDirectories 0. NumUncachedDirectories 1717. NumCachedFiles 7502. NumUncachedFiles 0. + BackgroundTickInterruptions 0. +[2025.06.16-02.32.08:613][ 0]LogSourceControl: Uncontrolled asset enumeration started... +[2025.06.16-02.32.08:614][ 0]LogCollectionManager: Fixed up redirectors for 0 collections in 0.000000 seconds (updated 0 objects) +[2025.06.16-02.32.08:615][ 0]LogContentStreaming: Texture pool size now 1000 MB +[2025.06.16-02.32.08:615][ 0]LogCsvProfiler: Display: Metadata set : streamingpoolsizemb="1000" +[2025.06.16-02.32.08:647][ 0]LogSlate: InvalidateAllWidgets triggered. All widgets were invalidated +[2025.06.16-02.32.08:649][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... started... +[2025.06.16-02.32.08:697][ 0]LogPython: registering + +[2025.06.16-02.32.08:708][ 0]LogPython: Display: Running start-up script F:/Epic/UE_5.5/Engine/Plugins/Animation/ControlRig/Content/Python/init_unreal.py... took 58.710 ms +[2025.06.16-02.32.08:809][ 1]LogSourceControl: Uncontrolled asset enumeration finished in 0.195885 seconds (Found 7477 uncontrolled assets) +[2025.06.16-02.32.10:042][ 9]LogEOSSDK: LogEOS: SDK Config Platform Update Request Successful, Time: 6.879833 +[2025.06.16-02.32.10:043][ 9]LogEOSSDK: LogEOSAnalytics: EOS SDK Analytics disabled for route [1]. +[2025.06.16-02.32.10:044][ 9]LogEOSSDK: LogEOS: Updating Product SDK Config, Time: 7.293920 +[2025.06.16-02.32.11:296][ 13]LogEOSSDK: LogEOSAnalytics: Start Session (User: ...) +[2025.06.16-02.32.11:963][ 15]LogEOSSDK: LogEOS: SDK Config Product Update Request Successful, Time: 8.880818 +[2025.06.16-02.32.11:964][ 15]LogEOSSDK: LogEOS: SDK Config Data - Watermark: -987497851 +[2025.06.16-02.32.11:964][ 15]LogEOSSDK: LogEOS: ScheduleNextSDKConfigDataUpdate - Time: 8.880818, Update Interval: 345.525085 +[2025.06.16-02.32.12:963][ 18]LogEOSSDK: LogEOSAuth: UpdateUserAuthToken: User ClientId: xyz...459 AccountId: 7c4...f20 Access[Expires: 2025.06.16-04.32.10 Remaining: 7200.62] Refresh[Expires: 2025-12-13T02:14:53.574Z Remaining: 15550963.57] State: Valid +[2025.06.16-02.32.13:295][ 19]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Received FUserAuthToken +[2025.06.16-02.32.14:295][ 22]LogEOSSDK: LogEOSAuth: UserAuthGenerated: Login complete: EOS_Success +[2025.06.16-02.32.14:295][ 22]LogFab: Display: User logged in +[2025.06.16-02.32.14:295][ 22]LogFab: Display: User client id: xyza7891REBVsEqSJRRNXmlS7EQHM459 +[2025.06.16-02.32.14:962][ 24]LogEOSSDK: Warning: LogEOS: Error response received from backend. ServiceName=[Friend], OperationName=[GetBlockList], Url=[], HttpStatus=[403], ErrorCode=[errors.com.epicgames.common.insufficient_scopes], NumericErrorCode=[1056], ErrorMessage=[Insufficient access scopes. Expected: [friends_list]], CorrId=[EOS-rkaGgOcIfky2eFaLU94eNg-C654Ac5t20exIC5A2LWyXQ] +[2025.06.16-02.32.36:804][322]LogStreaming: Display: FlushAsyncLoading(363): 1 QueuedPackages, 0 AsyncPackages +[2025.06.16-02.32.36:807][322]LogAssetEditorSubsystem: Opening Asset editor for WidgetBlueprint /Game/UI/WBP_SkillCard.WBP_SkillCard +[2025.06.16-02.32.36:807][322]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_0 +[2025.06.16-02.32.36:812][322]LogChaosDD: Not creating Chaos Debug Draw Scene for world World_1 +[2025.06.16-02.32.36:817][322]LogSlate: Warning: The command 'UMGEditor.OpenAnimDrawer' has the same default chord as 'EditorViewport.Next' [Ctrl+Shift+Space Bar] +[2025.06.16-02.32.37:567][322]LogSlate: Took 0.001120 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-BoldCondensed.ttf' (158K) +[2025.06.16-02.32.37:571][322]LogSlateStyle: Warning: Missing Resource from 'CoreStyle' Style: 'Unable to find SlateColor 'Foreground'.' +[2025.06.16-02.32.37:572][322]LogSlate: Took 0.000671 seconds to synchronously load lazily loaded font '../../../Engine/Content/Editor/Slate/Fonts/FontAwesome.ttf' (139K) +[2025.06.16-02.32.39:889][574]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.39:901][574]LogSlate: Took 0.000602 seconds to synchronously load lazily loaded font '../../../Engine/Content/Slate/Fonts/Roboto-Italic.ttf' (157K) +[2025.06.16-02.32.44:851][133]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.48:118][516]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.52:082][981]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.53:425][127]LogUObjectHash: Compacting FUObjectHashTables data took 0.73ms +[2025.06.16-02.32.53:468][127]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.54:452][238]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.57:479][585]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.57:976][637]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.32.58:003][638]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + +[2025.06.16-02.33.33:787][484]LogClass: Warning: Short type name "Texture2D" provided for TryFindType. Please convert it to a path name (suggested: "/Script/Engine.Texture2D"). Callstack: + +0x00007ffd0469085d UnrealEditor-CoreUObject.dll!UnknownFunction [] +0x00007ffcf20a1b68 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf21c9f90 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf23fb005 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf238dc17 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf1fbb5a4 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffcf2031288 UnrealEditor-PropertyEditor.dll!UnknownFunction [] +0x00007ffce90bc1a2 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] +0x00007ffce9775881 UnrealEditor-DetailCustomizations.dll!UnknownFunction [] + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00000388-2025-06-15T10.47.35.896Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00000388-2025-06-15T10.47.35.896Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00000388-2025-06-15T10.47.35.896Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.33.27.120Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.33.27.120Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.33.27.120Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.34.22.022Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.34.22.022Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.34.22.022Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.38.54.063Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.38.54.063Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.38.54.063Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.40.06.590Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.40.06.590Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.40.06.590Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.41.37.413Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.41.37.413Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.41.37.413Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.42.24.119Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.42.24.119Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001878-2025-06-15T11.42.24.119Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.07.795Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.07.795Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.07.795Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.20.614Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.20.614Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.52.20.614Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.56.56.800Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.56.56.800Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.56.56.800Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.57.21.513Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.57.21.513Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001d58-2025-06-18T09.57.21.513Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.11.10.141Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.11.10.141Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.11.10.141Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.17.10.172Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.17.10.172Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.17.10.172Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.19.39.155Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.19.39.155Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.19.39.155Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.12.964Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.12.964Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.12.964Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.39.577Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.39.577Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.39.577Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.46.842Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.46.842Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.20.46.842Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.21.12.257Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.21.12.257Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.21.12.257Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.24.309Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.24.309Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.24.309Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.38.455Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.38.455Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.23.38.455Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.00.543Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.00.543Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.00.543Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.12.184Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.12.184Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.12.184Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.29.132Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.29.132Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.29.132Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.41.060Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.41.060Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.24.41.060Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.07.757Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.07.757Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.07.757Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.11.622Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.11.622Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.25.11.622Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.06.331Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.06.331Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.06.331Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.32.425Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.32.425Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.26.32.425Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.27.20.361Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.27.20.361Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.27.20.361Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.43.970Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.43.970Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.43.970Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.48.551Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.48.551Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.28.48.551Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.14.727Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.14.727Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.14.727Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.31.983Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.31.983Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.29.31.983Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.32.56.818Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.32.56.818Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.32.56.818Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.33.18.453Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.33.18.453Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.33.18.453Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.37.287Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.37.287Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.37.287Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.46.180Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.46.180Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.34.46.180Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.11.388Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.11.388Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.11.388Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.20.369Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.20.369Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.20.369Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.27.455Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.27.455Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.27.455Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.57.077Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.57.077Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.37.57.077Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.02.156Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.02.156Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.02.156Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.26.965Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.26.965Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.26.965Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.41.813Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.41.813Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.39.41.813Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.40.02.228Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.40.02.228Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.40.02.228Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.10.296Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.10.296Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.10.296Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.19.786Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.19.786Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.19.786Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.22.907Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.22.907Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.41.22.907Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.04.635Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.04.635Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.04.635Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.40.880Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.40.880Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.42.40.880Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.19.053Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.19.053Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.19.053Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.39.454Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.39.454Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.43.39.454Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.44.34.187Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.44.34.187Z.log new file mode 100644 index 0000000..ed82e0b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00001da0-2025-06-17T11.44.34.187Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.41.30.065Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.41.30.065Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.41.30.065Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.42.02.415Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.42.02.415Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.42.02.415Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.18.495Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.18.495Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.18.495Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.45.211Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.45.211Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.45.45.211Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.47.48.449Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.47.48.449Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.47.48.449Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.02.452Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.02.452Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.02.452Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.18.250Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.18.250Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.48.18.250Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.07.023Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.07.023Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.07.023Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.14.570Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.14.570Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.14.570Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.45.178Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.45.178Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.49.45.178Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.50.36.780Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.50.36.780Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000022e0-2025-06-16T15.50.36.780Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.48.46.930Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.48.46.930Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.48.46.930Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.49.36.012Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.49.36.012Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000327c-2025-06-15T10.49.36.012Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.51.467Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.51.467Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.51.467Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.58.861Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.58.861Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.37.58.861Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.25.661Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.25.661Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.25.661Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.31.166Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.31.166Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.38.31.166Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.39.10.097Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.39.10.097Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.39.10.097Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.40.20.121Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.40.20.121Z.log new file mode 100644 index 0000000..9e655b3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.40.20.121Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.42.03.306Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.42.03.306Z.log new file mode 100644 index 0000000..9e655b3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.42.03.306Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.00.062Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.00.062Z.log new file mode 100644 index 0000000..9e655b3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.00.062Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.20.669Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.20.669Z.log new file mode 100644 index 0000000..9e655b3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003504-2025-06-15T10.44.20.669Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.16.49.701Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.16.49.701Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.16.49.701Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.33.880Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.33.880Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.33.880Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.49.792Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.49.792Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.17.49.792Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.02.487Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.02.487Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.02.487Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.27.862Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.27.862Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.18.27.862Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.21.44.630Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.21.44.630Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.21.44.630Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.22.36.180Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.22.36.180Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.22.36.180Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.24.29.564Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.24.29.564Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.24.29.564Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.10.756Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.10.756Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.10.756Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.29.006Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.29.006Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.29.006Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.48.228Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.48.228Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.25.48.228Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.26.45.602Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.26.45.602Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.26.45.602Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.27.48.636Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.27.48.636Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.27.48.636Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.28.41.330Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.28.41.330Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.28.41.330Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.34.623Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.34.623Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.34.623Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.46.384Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.46.384Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.29.46.384Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.30.25.201Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.30.25.201Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.30.25.201Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.09.764Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.09.764Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.09.764Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.53.597Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.53.597Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T16.32.53.597Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.17.29.785Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.17.29.785Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.17.29.785Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.18.32.877Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.18.32.877Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.18.32.877Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.19.49.850Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.19.49.850Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.19.49.850Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.21.12.943Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.21.12.943Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.21.12.943Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.00.478Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.00.478Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.00.478Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.36.045Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.36.045Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.28.36.045Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.29.30.131Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.29.30.131Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.29.30.131Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.46.242Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.46.242Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.46.242Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.54.765Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.54.765Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d48-2025-06-16T17.30.54.765Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.30.17.743Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.30.17.743Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.30.17.743Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.08.285Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.08.285Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.08.285Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.35.180Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.35.180Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.35.180Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.59.067Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.59.067Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.31.59.067Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.32.31.034Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.32.31.034Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00003d54-2025-06-16T15.32.31.034Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.01.316Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.01.316Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.01.316Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.45.962Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.45.962Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.22.45.962Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.14.408Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.14.408Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.14.408Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.46.870Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.46.870Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.23.46.870Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.27.098Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.27.098Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.27.098Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.44.403Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.44.403Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.25.44.403Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.00.326Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.00.326Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.00.326Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.08.069Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.08.069Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.08.069Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.18.063Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.18.063Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.18.063Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.38.086Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.38.086Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.38.086Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.53.026Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.53.026Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.26.53.026Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.44.512Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.44.512Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.44.512Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.59.041Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.59.041Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.27.59.041Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.21.647Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.21.647Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.21.647Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.28.541Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.28.541Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.28.541Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.53.012Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.53.012Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.28.53.012Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.32.065Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.32.065Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.32.065Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.46.226Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.46.226Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.30.46.226Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.09.780Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.09.780Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.09.780Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.33.753Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.33.753Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.31.33.753Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.21.932Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.21.932Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.21.932Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.28.457Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.28.457Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-000069d4-2025-06-17T06.32.28.457Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.00.56.867Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.00.56.867Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.00.56.867Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.05.31.072Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.05.31.072Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-00007398-2025-06-15T11.05.31.072Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a224-2025-06-16T16.00.32.164Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a224-2025-06-16T16.00.32.164Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a224-2025-06-16T16.00.32.164Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.34.44.104Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.34.44.104Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.34.44.104Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.00.001Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.00.001Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.00.001Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.24.904Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.24.904Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.24.904Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.44.485Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.44.485Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.35.44.485Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.20.751Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.20.751Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.20.751Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.57.047Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.57.047Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.36.57.047Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.37.53.501Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.37.53.501Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.37.53.501Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.38.42.305Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.38.42.305Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.38.42.305Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.39.42.202Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.39.42.202Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T17.39.42.202Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.03.039Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.03.039Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.03.039Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.32.637Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.32.637Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.06.32.637Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.07.18.140Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.07.18.140Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.07.18.140Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.03.542Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.03.542Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.03.542Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.36.056Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.36.056Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.36.056Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.44.829Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.44.829Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.08.44.829Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.09.07.705Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.09.07.705Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.09.07.705Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.21.926Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.21.926Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.21.926Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.34.118Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.34.118Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.10.34.118Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.13.56.468Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.13.56.468Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.13.56.468Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.15.19.813Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.15.19.813Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.15.19.813Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.08.736Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.08.736Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.08.736Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.19.293Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.19.293Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.16.19.293Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.04.614Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.04.614Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.04.614Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.22.154Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.22.154Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.22.154Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.38.485Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.38.485Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.17.38.485Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.23.488Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.23.488Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.23.488Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.57.212Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.57.212Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.18.57.212Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.14.642Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.14.642Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.14.642Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.50.103Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.50.103Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.19.50.103Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.06.343Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.06.343Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.06.343Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.53.207Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.53.207Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.20.53.207Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.15.230Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.15.230Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.15.230Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.26.948Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.26.948Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.21.26.948Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.29.867Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.29.867Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.29.867Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.40.368Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.40.368Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.40.368Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.50.689Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.50.689Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.22.50.689Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.23.15.607Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.23.15.607Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.23.15.607Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.11.711Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.11.711Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.11.711Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.48.348Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.48.348Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.24.48.348Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.16.138Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.16.138Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.16.138Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.30.850Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.30.850Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.30.850Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.55.231Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.55.231Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.25.55.231Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.26.05.987Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.26.05.987Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.26.05.987Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.06.583Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.06.583Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.06.583Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.17.274Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.17.274Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.27.17.274Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.04.969Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.04.969Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.04.969Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.58.032Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.58.032Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.28.58.032Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.10.998Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.10.998Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.10.998Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.22.989Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.22.989Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.22.989Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.53.019Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.53.019Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.30.53.019Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.31.16.147Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.31.16.147Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.31.16.147Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.38.944Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.38.944Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.38.944Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.46.867Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.46.867Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.34.46.867Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.36.14.856Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.36.14.856Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.36.14.856Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.07.893Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.07.893Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.07.893Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.45.259Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.45.259Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.37.45.259Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.14.205Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.14.205Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.14.205Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.21.311Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.21.311Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.21.311Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.43.611Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.43.611Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.38.43.611Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.08.462Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.08.462Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.08.462Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.52.495Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.52.495Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.39.52.495Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.06.274Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.06.274Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.06.274Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.24.446Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.24.446Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.24.446Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.32.773Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.32.773Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.32.773Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.51.638Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.51.638Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.40.51.638Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.02.518Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.02.518Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.02.518Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.23.240Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.23.240Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.23.240Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.31.861Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.31.861Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.31.861Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.43.228Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.43.228Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.41.43.228Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.22.760Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.22.760Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.22.760Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.31.681Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.31.681Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.31.681Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.57.785Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.57.785Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.42.57.785Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.22.225Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.22.225Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.22.225Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.36.003Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.36.003Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.36.003Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.44.754Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.44.754Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.43.44.754Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.45.44.309Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.45.44.309Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.45.44.309Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.18.541Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.18.541Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.18.541Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.26.578Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.26.578Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.26.578Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.43.581Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.43.581Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.46.43.581Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.13.349Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.13.349Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.13.349Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.41.489Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.41.489Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.47.41.489Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.49.31.340Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.49.31.340Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.49.31.340Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.51.51.060Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.51.51.060Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.51.51.060Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.52.28.533Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.52.28.533Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.52.28.533Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.53.15.694Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.53.15.694Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.53.15.694Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.54.07.864Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.54.07.864Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.54.07.864Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.07.519Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.07.519Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.07.519Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.24.747Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.24.747Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T18.59.24.747Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.11.095Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.11.095Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.11.095Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.15.418Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.15.418Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.03.15.418Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.03.095Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.03.095Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.03.095Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.05.083Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.05.083Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.05.083Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.06.946Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.06.946Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.06.946Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.18.775Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.18.775Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.18.775Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.20.505Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.20.505Z.log new file mode 100644 index 0000000..e7a2d35 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000a504-2025-06-16T19.08.20.505Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/ProjectFish.PawnWithSkill Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.22.21.312Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.22.21.312Z.log new file mode 100644 index 0000000..b53cbe1 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.22.21.312Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1063.175 Y=1626.686 Z=-8.000), Max=(X=1296.356 Y=1931.428 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1063.175 Y=1626.686 Z=-8.000), Max=(X=1296.356 Y=1931.428 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=872.000 Y=1682.000 Z=-35.987), Max=(X=1240.000 Y=1938.000 Z=220.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 5] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 7] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1063.175 Y=1626.686 Z=-8.000), Max=(X=1296.356 Y=1931.428 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1063.175 Y=1626.686 Z=-8.000), Max=(X=1296.356 Y=1931.428 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 8] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 10] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 11] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 12] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 13] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 16] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=872.000 Y=1682.000 Z=-35.987), Max=(X=1240.000 Y=1938.000 Z=220.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/Maps/UEDPIE_0_Dabaza_InstanceOf_/Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/UEDPIE_0_Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.01.663Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.01.663Z.log new file mode 100644 index 0000000..6607d7d --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.01.663Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 5] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 7] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 8] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 10] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 11] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 12] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 13] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 16] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.08.310Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.08.310Z.log new file mode 100644 index 0000000..6607d7d --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.08.310Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 5] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 7] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 8] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 10] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 11] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 12] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 13] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 16] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.39.604Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.39.604Z.log new file mode 100644 index 0000000..6607d7d --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.40.39.604Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 5] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 7] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 8] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 10] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 11] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 12] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 13] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 16] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.21.986Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.21.986Z.log new file mode 100644 index 0000000..a4c45c3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.21.986Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.37.071Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.37.071Z.log new file mode 100644 index 0000000..a4c45c3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.45.37.071Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.18.423Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.18.423Z.log new file mode 100644 index 0000000..a4c45c3 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.18.423Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=1256.309), Max=(X=1144.624 Y=1821.793 Z=1633.869) RuntimeBounds:IsValid=true, Min=(X=919.499 Y=1653.793 Z=1451.969), Max=(X=1113.749 Y=1733.793 Z=1559.769) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.32.893Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.32.893Z.log new file mode 100644 index 0000000..4aa7519 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.32.893Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=83.334), Max=(X=1266.976 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=961.015 Y=1653.793 Z=113.719), Max=(X=1072.233 Y=1733.793 Z=308.950) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=83.334), Max=(X=1266.976 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=961.015 Y=1653.793 Z=113.719), Max=(X=1072.233 Y=1733.793 Z=308.950) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.37.564Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.37.564Z.log new file mode 100644 index 0000000..f468c73 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.37.564Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1433.124 Z=83.334), Max=(X=1195.138 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=956.834 Y=1626.476 Z=113.719), Max=(X=1076.413 Y=1761.111 Z=308.950) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1433.124 Z=83.334), Max=(X=1195.138 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=956.834 Y=1626.476 Z=113.719), Max=(X=1076.413 Y=1761.111 Z=308.950) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.45.935Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.45.935Z.log new file mode 100644 index 0000000..f1304a8 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.45.935Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=-9.641), Max=(X=1256.940 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=922.811 Y=1647.957 Z=113.363), Max=(X=1110.437 Y=1739.629 Z=309.306) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=-9.641), Max=(X=1256.940 Y=1821.793 Z=339.334) RuntimeBounds:IsValid=true, Min=(X=922.811 Y=1647.957 Z=113.363), Max=(X=1110.437 Y=1739.629 Z=309.306) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.52.752Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.52.752Z.log new file mode 100644 index 0000000..1aee36b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.52.752Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=355.707), Max=(X=1256.940 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=922.811 Y=1647.957 Z=478.711), Max=(X=1110.437 Y=1739.629 Z=674.654) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=355.707), Max=(X=1256.940 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=922.811 Y=1647.957 Z=478.711), Max=(X=1110.437 Y=1739.629 Z=674.654) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.59.439Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.59.439Z.log new file mode 100644 index 0000000..60615db --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.46.59.439Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=317.884), Max=(X=1184.222 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=914.200 Y=1647.957 Z=501.665), Max=(X=1119.048 Y=1739.629 Z=651.700) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=546.185 Y=1211.383 Z=-1.426), Max=(X=613.519 Y=1360.134 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=317.884), Max=(X=1184.222 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=914.200 Y=1647.957 Z=501.665), Max=(X=1119.048 Y=1739.629 Z=651.700) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.47.379Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.47.379Z.log new file mode 100644 index 0000000..db4340d --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.47.379Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=394.292), Max=(X=1273.714 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=935.351 Y=1647.957 Z=475.325), Max=(X=1097.897 Y=1739.629 Z=678.040) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=394.292), Max=(X=1273.714 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=935.351 Y=1647.957 Z=475.325), Max=(X=1097.897 Y=1739.629 Z=678.040) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.53.075Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.53.075Z.log new file mode 100644 index 0000000..c9f10d4 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.47.53.075Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=346.420), Max=(X=1249.082 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1647.957 Z=480.859), Max=(X=1113.205 Y=1739.629 Z=672.505) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1565.793 Z=346.420), Max=(X=1249.082 Y=1821.793 Z=704.682) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1647.957 Z=480.859), Max=(X=1113.205 Y=1739.629 Z=672.505) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.48.03.768Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.48.03.768Z.log new file mode 100644 index 0000000..f6c1af9 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.48.03.768Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=427.624 Y=1792.844 Z=-1.426), Max=(X=494.958 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:CameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-520.613 Y=683.793 Z=435.089), Max=(X=1499.387 Y=2703.793 Z=2455.089) RuntimeBounds:IsValid=true, Min=(X=489.387 Y=1693.793 Z=1445.089), Max=(X=489.387 Y=1693.793 Z=1445.089) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.07.893Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.07.893Z.log new file mode 100644 index 0000000..755fa40 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.07.893Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.298 Y=1792.844 Z=-1.426), Max=(X=1062.632 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.298 Y=1792.844 Z=-1.426), Max=(X=1062.632 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.298 Y=1792.844 Z=-1.426), Max=(X=1062.632 Y=1941.596 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.298 Y=1792.844 Z=-1.426), Max=(X=1062.632 Y=1941.596 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.27.631Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.27.631Z.log new file mode 100644 index 0000000..3c1e3d0 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T16.49.27.631Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.08.54.780Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.08.54.780Z.log new file mode 100644 index 0000000..3c1e3d0 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.08.54.780Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.35.781Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.35.781Z.log new file mode 100644 index 0000000..3c1e3d0 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.35.781Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-212.651), Max=(X=2092.043 Y=2742.825 Z=1807.349) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=797.349), Max=(X=1082.043 Y=1732.825 Z=797.349) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.54.011Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.54.011Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.09.54.011Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.10.38.557Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.10.38.557Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.10.38.557Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.01.053Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.01.053Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.01.053Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.25.153Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.25.153Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.11.25.153Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.12.11.452Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.12.11.452Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.12.11.452Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.08.383Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.08.383Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.08.383Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.38.122Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.38.122Z.log new file mode 100644 index 0000000..8f6c5ab --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.38.122Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=1010.017 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.58.122Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.58.122Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T17.13.58.122Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.12.33.715Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.12.33.715Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.12.33.715Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.13.14.645Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.13.14.645Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.13.14.645Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.14.05.103Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.14.05.103Z.log new file mode 100644 index 0000000..965cd6b --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_Dabaza-0000b5d8-2025-06-11T18.14.05.103Z.log @@ -0,0 +1,121 @@ +[+] Containers: + |- [+] Container: /Game/Maps/Dabaza + | |- [+] ActorDescs: + | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:088069E799AF3502A33FC17D756D7E39 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 1] + | | | |- Guid:262AA723C617330EB4FF7DFBDB873248 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 2] + | | | |- Guid:311448CCCFC43B5EA8B37427CE1E1C64 NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=692.000), Max=(X=128.000 Y=128.000 Z=948.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:4E2C846D486130AF91EE8E528BF518CD NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 4] + | | | |- Guid:56BBEF3C4F322C4B866F7AA3805778D3 BaseClass:/Game/Characters/BP_Dabaza_Pawn.BP_Dabaza_Pawn_C NativeClass:/Script/Engine.Pawn Name:BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 Label:BP_Dabaza_Pawn SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeBounds:IsValid=true, Min=(X=995.200 Y=1795.911 Z=-1.426), Max=(X=1047.302 Y=1940.019 Z=185.456) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 5] + | | | |- Guid:5CBE7D8CF43D353AA39DE39534C35FC5 NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5728.000 Y=-178.000 Z=-6978.000), Max=(X=-5472.000 Y=78.000 Z=-6722.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 6] + | | | |- Guid:608E9B84D2ED3CD3A88A8CAEEE71BE9C NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 7] + | | | |- Guid:69BC1772AD203417ABC2DD8ECDEA8CDB NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 8] + | | | |- Guid:7213210F14E83EFB8FC66C1C60221694 BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1696.656 Y=1716.670 Z=-8.000), Max=(X=2051.330 Y=2023.753 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 9] + | | | |- Guid:736A5F2A53DC3D99B0D4A549F5E0CEF9 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 10] + | | | |- Guid:873743FD6EF935FF9165965166D6E9AB NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2112.000 Y=900.000 Z=-38.000), Max=(X=2368.000 Y=1158.000 Z=230.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 11] + | | | |- Guid:8A23A3ABF4C03F73B85334CE59441379 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-128.100 Y=972.000 Z=12.013), Max=(X=127.900 Y=2225.000 Z=268.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 12] + | | | |- Guid:8F993DF5B66E311B8586E84110A6F853 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-128.000 Y=-128.000 Z=892.000), Max=(X=240.000 Y=128.000 Z=1148.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 13] + | | | |- Guid:931087F496403AB28D5E7A643E033893 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:A54E9F3DD72632B6AFBE43D31636E7C4 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 15] + | | | |- Guid:B29E40C738AD35218F25622066BF4B27 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1.000 Y=-1.000 Z=-1.000), Max=(X=1.000 Y=1.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:B2C42925D8C93F92A8634A194C2E74FB NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 17] + | | | |- Guid:BB2BFE88427F38415B334B927FB74CBD NativeClass:/Script/Engine.CameraActor Name:CameraActor_UAID_5811220C528A167102_2029580696 Label:TopCameraActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=72.043 Y=722.825 Z=-245.005), Max=(X=2092.043 Y=2742.825 Z=1774.995) RuntimeBounds:IsValid=true, Min=(X=1082.043 Y=1732.825 Z=764.995), Max=(X=1082.043 Y=1732.825 Z=764.995) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 18] + | | | |- Guid:C0492812A16B3F41A50C9BD2C9E2C841 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=888.624 Y=1671.328 Z=670.605), Max=(X=1249.082 Y=1927.328 Z=1028.867) RuntimeBounds:IsValid=true, Min=(X=920.043 Y=1753.492 Z=805.044), Max=(X=1113.205 Y=1845.163 Z=996.690) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 19] + | | | |- Guid:DFB84F12EAF0304B96CDEA40990EA85C NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/Maps/Dabaza +---------------------------------------------------------------------------------------------------------------- +Dabaza - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of Dabaza Persistent Level + |- Always loaded Actor Count: 20 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_Dabaza_Pawn_C_UAID_5811220C528A177102_1201291873 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.CameraActor_UAID_5811220C528A167102_2029580696 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4 + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I + |- Actor Path: /Game/Maps/Dabaza.Dabaza:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R + +---------------------------------------------------------------------------------------------------------------- +Dabaza - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.36.16.724Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.36.16.724Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.36.16.724Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.38.27.650Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.38.27.650Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001878-2025-06-15T11.38.27.650Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001da0-2025-06-17T11.44.32.391Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001da0-2025-06-17T11.44.32.391Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00001da0-2025-06-17T11.44.32.391Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00003504-2025-06-15T10.37.40.022Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00003504-2025-06-15T10.37.40.022Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00003504-2025-06-15T10.37.40.022Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00007b5c-2025-06-11T16.02.14.112Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00007b5c-2025-06-11T16.02.14.112Z.log new file mode 100644 index 0000000..be0d01c --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-00007b5c-2025-06-11T16.02.14.112Z.log @@ -0,0 +1,106 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 14] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 17 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000a224-2025-06-16T16.00.25.816Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000a224-2025-06-16T16.00.25.816Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000a224-2025-06-16T16.00.25.816Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.19.46.854Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.19.46.854Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.19.46.854Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.20.38.656Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.20.38.656Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.20.38.656Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.21.34.503Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.21.34.503Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.21.34.503Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.22.20.340Z.log b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.22.20.340Z.log new file mode 100644 index 0000000..9a34cd2 --- /dev/null +++ b/ProjectFish/Saved/Logs/WorldPartition/StreamingGeneration-PIE_TopDownMap-0000b5d8-2025-06-11T16.22.20.340Z.log @@ -0,0 +1,111 @@ +[+] Containers: + |- [+] Container: /Game/TopDown/Maps/TopDownMap + | |- [+] ActorDescs: + | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | |- [+] Clusters: + | | |- [+] [ 0] + | | | |- Guid:07810DB5476552C6ECC207B8FBE94500 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 Label:SM_SkySphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeBounds:IsValid=true, Min=(X=-1638400.000 Y=-1638400.000 Z=-1638400.000), Max=(X=1638400.000 Y=1638400.000 Z=1638400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 1] + | | | |- Guid:0EE0E5D1466B2603910C569929142127 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_39 Label:SM_Cube5 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=-0.000 Y=100.000 Z=0.000), Max=(X=100.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 2] + | | | |- Guid:124EE53143C875A1C4F174B08C31D407 NativeClass:/Script/Engine.SkyAtmosphere Name:SkyAtmosphere_1 Label:SkyAtmosphere SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=1020.000), Max=(X=0.000 Y=0.000 Z=1020.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 3] + | | | |- Guid:1A013F6D454DDAB5AD8E77B766ED9FAD NativeClass:/Script/Engine.ExponentialHeightFog Name:ExponentialHeightFog_1 Label:ExponentialHeightFog SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeBounds:IsValid=true, Min=(X=-5600.000 Y=-50.000 Z=-6850.000), Max=(X=-5600.000 Y=-50.000 Z=-6850.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 4] + | | | |- Guid:20BCA97640857441FE4D28B054684C07 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_40 Label:SM_Cube6 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=2900.000 Y=100.000 Z=0.000), Max=(X=3000.000 Y=3400.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 5] + | | | |- Guid:2D35D16542032F78BA8C8AB1CC4FA726 NativeClass:/Script/Engine.PlayerStart Name:PlayerStart_1 Label:PlayerStart SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeBounds:IsValid=true, Min=(X=960.000 Y=1770.000 Z=0.013), Max=(X=1040.000 Y=1850.000 Z=184.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 6] + | | | |- Guid:30527CC149F7950197BFFDB79ABBC6A9 NativeClass:/Script/Engine.TextRenderActor Name:TextRenderActor_1 Label:TextRenderActor SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeBounds:IsValid=true, Min=(X=-0.100 Y=1100.000 Z=65.013), Max=(X=-0.100 Y=2225.000 Z=215.013) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 7] + | | | |- Guid:3AA00CC7473B3AB860032482C86F1357 NativeClass:/Script/Engine.SkyLight Name:SkyLight_1 Label:SkyLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=690.000), Max=(X=0.000 Y=0.000 Z=690.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 8] + | | | |- Guid:44B5B14A4724B1A960164EB2B8595C48 NativeClass:/Script/AIModule.NavLinkProxy Name:NavLinkProxy_1 Label:NavLinkProxy3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeBounds:IsValid=true, Min=(X=2240.000 Y=1030.000 Z=90.000), Max=(X=2240.000 Y=1030.000 Z=90.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 9] + | | | |- Guid:505B4ED943FA99164AF46CAED7EC7B12 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_34 Label:SM_Cube SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=-50.000), Max=(X=3000.000 Y=3500.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 10] + | | | |- Guid:6CFE69CB41732F0CDEB04A85666FA67E NativeClass:/Script/Engine.WorldDataLayers Name:WorldDataLayers Label:WorldDataLayers-1 SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:true + | | |- [+] [ 11] + | | | |- Guid:963169944433A544D75FF79A1B9FC159 NativeClass:/Script/NavigationSystem.NavMeshBoundsVolume Name:NavMeshBoundsVolume_1 Label:NavMeshBoundsVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeBounds:IsValid=true, Min=(X=-100.000 Y=-100.000 Z=-110.000), Max=(X=3100.000 Y=3600.000 Z=390.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Navigation FolderGuid:5FBB7B1041A3902AEFBB4E87AA1D500F + | | |- [+] [ 12] + | | | |- Guid:A45756D6495C3CBE8AA73EAD039CE983 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_35 Label:SM_Cube2 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=3000.000 Y=100.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + | | |- [+] [ 13] + | | | |- Guid:B149AD854E2D39307742C5B871B6746A BaseClass:/Game/Characters/BP_DeepFish.BP_DeepFish_C NativeClass:/Script/Engine.Pawn Name:BP_DeepFish_C_UAID_5811220C528A157102_1117927520 Label:BP_DeepFish SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeBounds:IsValid=true, Min=(X=1179.156 Y=1712.779 Z=-8.000), Max=(X=1543.359 Y=2031.673 Z=114.940) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false + | | |- [+] [ 14] + | | | |- Guid:BC9F05DA4F26FE20B8ADBEAC803D9E07 NativeClass:/Script/Engine.PostProcessVolume Name:PostProcessVolume_1 Label:PostProcessVolume SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=400.000), Max=(X=200.000 Y=200.000 Z=600.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 15] + | | | |- Guid:C1F343BF47546FC406FC86B4815E25C6 NativeClass:/Script/Engine.DirectionalLight Name:DirectionalLight_1 Label:DirectionalLight SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeBounds:IsValid=true, Min=(X=-1048576.000 Y=-1048576.000 Z=-1048576.000), Max=(X=1048576.000 Y=1048576.000 Z=1048576.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 16] + | | | |- Guid:E92B029A43F3DD683C1B2481BF7B68DE NativeClass:/Script/Engine.VolumetricCloud Name:VolumetricCloud_1 Label:VolumetricCloud SpatiallyLoaded:false EditorBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=0.000 Z=820.000), Max=(X=0.000 Y=0.000 Z=820.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:false ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Lighting FolderGuid:E13570EE436BA15E35C622BAA5B21164 + | | |- [+] [ 17] + | | | |- Guid:FE4F9F4044D3F2F9C3F6629B135091C3 NativeClass:/Script/Engine.StaticMeshActor Name:StaticMeshActor_36 Label:SM_Cube3 SpatiallyLoaded:true EditorBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeBounds:IsValid=true, Min=(X=0.000 Y=3400.000 Z=0.000), Max=(X=3000.000 Y=3500.000 Z=400.000) RuntimeGrid:None EditorOnly:false RuntimeOnly:false HLODRelevant:true ListedInSceneOutliner:true IsMainWorldOnly:false FolderPath:Playground FolderGuid:8746DDAD42A18A3736DBE9BBB77675E5 + |- ContainerInstances: + |- [+] MainContainer: + | |- ID: 00000000000000000000000000000000 + | |- ParentID: 00000000000000000000000000000000 + | |- Bounds: IsValid=false, Min=(X=0.000 Y=0.000 Z=0.000), Max=(X=0.000 Y=0.000 Z=0.000) + | |- Transform: 0.000000,0.000000,0.000000|0.000000,0.000000,-0.000000|1.000000,1.000000,1.000000 + | |- Container: /Game/TopDown/Maps/TopDownMap +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Persistent Level +---------------------------------------------------------------------------------------------------------------- +[+] Content of TopDownMap Persistent Level + |- Always loaded Actor Count: 18 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.BP_DeepFish_C_UAID_5811220C528A157102_1117927520 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.DirectionalLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.ExponentialHeightFog_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavLinkProxy_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.NavMeshBoundsVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PlayerStart_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.PostProcessVolume_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyAtmosphere_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.SkyLight_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_34 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_35 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_36 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_39 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04 + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_40 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.StaticMeshActor_UAID_A4AE111137DC5CFB00_1546167071 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.TextRenderActor_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.VolumetricCloud_1 + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO + |- Actor Path: /Game/TopDown/Maps/TopDownMap.TopDownMap:PersistentLevel.WorldDataLayers + |- Actor Package: /Game/__ExternalActors__/TopDown/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7 + +---------------------------------------------------------------------------------------------------------------- +TopDownMap - Runtime Hash Set +---------------------------------------------------------------------------------------------------------------- + diff --git a/ProjectFish/Saved/ShaderDebugInfo/PCD3D_SM6/WorldGridMaterial_c1ff929ae6e37fb4/Default/DDCKey-Editor.txt b/ProjectFish/Saved/ShaderDebugInfo/PCD3D_SM6/WorldGridMaterial_c1ff929ae6e37fb4/Default/DDCKey-Editor.txt new file mode 100644 index 0000000..0266557 --- /dev/null +++ b/ProjectFish/Saved/ShaderDebugInfo/PCD3D_SM6/WorldGridMaterial_c1ff929ae6e37fb4/Default/DDCKey-Editor.txt @@ -0,0 +1,2 @@ +MATSM_44E9459DFF424B47B2892C780C11F872_PCD3D_SM6_312346775__BC5N_NoCCBN_NoIris_DEV_NoSL_LWC2_PreExp_DBuf_UnInt_DXC1_VFO_LFV_LTRRT_SKYATM_SKYHF_SLWSMDLT_STRDSTRIP_gs1_sdct_VT-0-0-1-0_MIN_SHRC_DF_MS_T0_MS_T1_BNDLSRTRES_BNDLSRTSAM_SSBL-RT_RAY-CHS1AHS1LOD0_VED_Aniso-1_ComprOodle_Compr2_Lev4_ExclNonPipSh-1_LWC-lld_llu_SLWDP_SKPassThrough1_Nanite-Spline1Skinned1DB6FCC63A5C44EA751315CBC3EF5DDED_Num_SM6_FL_0000000d_MFA_00000008_V_B6A0A753ED62499D8F30931E61FCAB05_0_DB3E993F4E2E98B305AD13B92D8C5DA5_36371EB4A8F29B54EB4A531149DE9D434CD639C8___TShadowDepthPSPixelShadowDepth_PerspectiveCorrect0_0_03581B2D06E1213FFEB0F086AC4A5BE8AE9C84C0BDCCD8F1A5E9098844CA88EDA21613C3AB026A209_TShadowDepthPSPixelShadowDepth_NonPerspectiveCorrect0_0_03581B2D06E1213FFEB0F086AC4A5BE8AE9C84C0BDBF1DBF44242F8838A44F11D5782D0ABCDB37C08_TShadowDepthVSVertexShadowDepth_OutputDepthPositionOnly0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89FD8CCFC2A130BDF3FA7028A6FCA716DE3E97FEC76_FMicropolyRasterizeCS0_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS3_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS4_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS5_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS6_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS7_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS8_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS9_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS10_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS11_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS12_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS13_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS14_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS15_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS16_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS17_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS18_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS19_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS20_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS21_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS22_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS23_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS24_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS25_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS26_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS27_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS28_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS29_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS30_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS31_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS32_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS33_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS34_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS35_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS36_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS37_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS38_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS39_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS40_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS41_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS42_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS43_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS44_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS45_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS46_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS47_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS48_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS49_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS50_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS51_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS52_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS53_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS54_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS55_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS56_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS57_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS58_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS59_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS60_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS61_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS62_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS63_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS64_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS65_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS66_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS67_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS68_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS69_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS70_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS71_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS72_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS73_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS74_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS75_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS76_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS77_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS78_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS79_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS80_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS81_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS82_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS83_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS84_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS85_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS86_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS87_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS88_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS89_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS90_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS91_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS92_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS93_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS94_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS95_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS96_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS97_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS98_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS99_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS100_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS101_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS102_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS103_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS104_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS105_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS106_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS107_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS108_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS109_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS110_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS111_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS112_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS113_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS114_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS115_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS116_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS117_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS118_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS119_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS120_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS121_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS122_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS123_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS124_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS125_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS126_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS127_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS128_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS129_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS130_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS131_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS132_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS133_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS134_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS135_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS136_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS137_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS138_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS139_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS140_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS141_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS142_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS143_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS144_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS145_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS146_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS147_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS148_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS149_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS150_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS151_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS152_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS153_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS154_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS155_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS156_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS157_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS158_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS159_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS160_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS161_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS162_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS163_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS164_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS165_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS166_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS167_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS168_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS169_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS170_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS171_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS172_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS173_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS174_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS175_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS176_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS177_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS178_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS179_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS180_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS181_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS182_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS183_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS184_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS185_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS186_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS187_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS188_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS189_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS190_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS191_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS192_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS193_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS194_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS195_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS196_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS197_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS198_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS199_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS200_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS201_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS202_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS203_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS204_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS205_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS206_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS207_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS208_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS209_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS210_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS211_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS212_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS213_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS214_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS215_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS216_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS217_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS218_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS219_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS220_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS221_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS222_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS223_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS224_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS225_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS226_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS227_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS228_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS229_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS230_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS231_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS232_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS233_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS234_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS235_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS236_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS237_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS238_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS239_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS240_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS241_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS242_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS243_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS244_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS245_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS246_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS247_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS248_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS249_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS250_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS251_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS252_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS253_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS254_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS255_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS256_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS257_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS258_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS259_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS260_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS261_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS262_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS263_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS264_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS265_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS266_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS267_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS268_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS269_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS270_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS271_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS272_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS273_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS274_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS275_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS276_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS277_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS278_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS279_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS280_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS281_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS282_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS283_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS284_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS285_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS286_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS287_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS288_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS289_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS290_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS291_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS292_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS293_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS294_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS295_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS296_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS297_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS298_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS299_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS300_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS301_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS302_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS303_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS304_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS305_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS306_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS307_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS308_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS309_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS310_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS311_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS312_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS313_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS314_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS315_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS316_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS317_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS318_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS319_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS320_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS321_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS322_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS323_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS324_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS325_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS326_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS327_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS328_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS329_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS330_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS331_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS332_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS333_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS334_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS335_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS336_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS337_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS338_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS339_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS340_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS341_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS342_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS343_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS344_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS345_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS346_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS347_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS348_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS349_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS350_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS351_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS352_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS353_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS354_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS355_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS356_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS357_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS358_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS359_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS360_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS361_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS362_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS363_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS364_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS365_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS366_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS367_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS368_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS369_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS370_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS371_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS372_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS373_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS374_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS375_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS376_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS377_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS378_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS379_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS380_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS381_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS382_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS383_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS384_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS385_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS386_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS387_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS388_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS389_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS390_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS391_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS392_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS393_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS394_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS395_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS396_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS397_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS398_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS399_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS400_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS401_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS402_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS403_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS404_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS405_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS406_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS407_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS408_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS409_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS410_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS411_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS412_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS413_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS414_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS415_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS416_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS417_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS418_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS419_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS420_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS421_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS422_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS423_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS424_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS425_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS426_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS427_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS428_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS429_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS430_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS431_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS432_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS433_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS434_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS435_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS436_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS437_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS438_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS439_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS440_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS441_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS442_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS443_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS444_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS445_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS446_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS447_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS448_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS449_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS450_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS451_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS452_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS453_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS454_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS455_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS456_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS457_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS458_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS459_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS460_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS461_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS462_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS463_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS464_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS465_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS466_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS467_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS468_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS469_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS470_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS471_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS472_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS473_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS474_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS475_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS476_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS477_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS478_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS479_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS480_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS481_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS482_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS483_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS484_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS485_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS486_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS487_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS488_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS489_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS490_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS491_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS492_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS493_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS494_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS495_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS496_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS497_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS498_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS499_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS500_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS501_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS502_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS503_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS504_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS505_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS506_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS507_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS508_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS509_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS510_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS511_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS512_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS513_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS514_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS515_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS516_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS517_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS518_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS519_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS520_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS521_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS522_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS523_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS524_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS525_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS526_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS527_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS528_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS529_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS530_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS531_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS532_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS533_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS534_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS535_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS536_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS537_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS538_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS539_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS540_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS541_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS542_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS543_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS544_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS545_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS546_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS547_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS548_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS549_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS550_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS551_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS552_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS553_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS554_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS555_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS556_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS557_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS558_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS559_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS560_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS561_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS562_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS563_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS564_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS565_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS566_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS567_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS568_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS569_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS570_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS571_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS572_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS573_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS574_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS575_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS576_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS577_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS578_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS579_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS580_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS581_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS582_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS583_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS584_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS585_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS586_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS587_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS588_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS589_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS590_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS591_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS592_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS593_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS594_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS595_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS596_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS597_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS598_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS599_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS600_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS601_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS602_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS603_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS604_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS605_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS606_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS607_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS608_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS609_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS610_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS611_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS612_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS613_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS614_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS615_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS616_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS617_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS618_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS619_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS620_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS621_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS622_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS623_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS624_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS625_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS626_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS627_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS628_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS629_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS630_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS631_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS632_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS633_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS634_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS635_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS636_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS637_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS638_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS639_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS640_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS641_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS642_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS643_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS644_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS645_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS646_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS647_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS648_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS649_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS650_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS651_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS652_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS653_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS654_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS655_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS656_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS657_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS658_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS659_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS660_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS661_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS662_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS663_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS664_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS665_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS666_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS667_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS668_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS669_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS670_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS671_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS672_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS673_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS674_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS675_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS676_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS677_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS678_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS679_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS680_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS681_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS682_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS683_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS684_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS685_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS686_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS687_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS688_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS689_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS690_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS691_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS692_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS693_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS694_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS695_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS696_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS697_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS698_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS699_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS700_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS701_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS702_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS703_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS704_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS705_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS706_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS707_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS708_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS709_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS710_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS711_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS712_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS713_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS714_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS715_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS716_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS717_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS718_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS719_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS720_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS721_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS722_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS723_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS724_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS725_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS726_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS727_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS728_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS729_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS730_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS731_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS732_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS733_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS734_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS735_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS736_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS737_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS738_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS739_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS740_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS741_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS742_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS743_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS744_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS745_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS746_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS747_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS748_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS749_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS750_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS751_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS752_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS753_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS754_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS755_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS756_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS757_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS758_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS759_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS760_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS761_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS762_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS763_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS764_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS765_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS766_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS767_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS768_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS769_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS770_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS771_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS772_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS773_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS774_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS775_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS776_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS777_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS778_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS779_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS780_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS781_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS782_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS783_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS784_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS785_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS786_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS787_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS788_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS789_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS790_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS791_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS792_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS793_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS794_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS795_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS796_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS797_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS798_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS799_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS800_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS801_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS802_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS803_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS804_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS805_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS806_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS807_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS808_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS809_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS810_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS811_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS812_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS813_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS814_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS815_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS816_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS817_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS818_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS819_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS820_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS821_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS822_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS823_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS824_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS825_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS826_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS827_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS828_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS829_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS830_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS831_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS832_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS833_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS834_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS835_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS836_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS837_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS838_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS839_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS840_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS841_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS842_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS843_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS844_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS845_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS846_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS847_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS848_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS849_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS850_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS851_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS852_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS853_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS854_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS855_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS856_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS857_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS858_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS859_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS860_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS861_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS862_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS863_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS864_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS865_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS866_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS867_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS868_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS869_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS870_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS871_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS872_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS873_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS874_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS875_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS876_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS877_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS878_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS879_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS880_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS881_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS882_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS883_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS884_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS885_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS886_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS887_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS888_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS889_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS890_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS891_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS892_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS893_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS894_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS895_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS896_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS897_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS898_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS899_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS900_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS901_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS902_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS903_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS904_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS905_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS906_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS907_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS908_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS909_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS910_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS911_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS912_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS913_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS914_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS915_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS916_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS917_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS918_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS919_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS920_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS921_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS922_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS923_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS924_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS925_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS926_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS927_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS928_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS929_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS930_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS931_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS932_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS933_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS934_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS935_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS936_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS937_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS938_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS939_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS940_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS941_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS942_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS943_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS944_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS945_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS946_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS947_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS948_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS949_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS950_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS951_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS952_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS953_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS954_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS955_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS956_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS957_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS958_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS959_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS960_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS961_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS962_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS963_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS964_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS965_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS966_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS967_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS968_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS969_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS970_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS971_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS972_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS973_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS974_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS975_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS976_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS977_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS978_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS979_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS980_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS981_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS982_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS983_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS984_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS985_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS986_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS987_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS988_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS989_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS990_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS991_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS992_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS993_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS994_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS995_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS996_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS997_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS998_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS999_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1000_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1001_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1002_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1003_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1004_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1005_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1006_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1007_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1008_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1009_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1010_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1011_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1012_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1013_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1014_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1015_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1016_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1017_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1018_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1019_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1020_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1021_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1022_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1023_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1024_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1025_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1026_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1027_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1028_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1029_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1030_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1031_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1032_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1033_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1034_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1035_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1036_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1037_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1038_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1039_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1040_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1041_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1042_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1043_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1044_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1045_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1046_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1047_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1048_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1049_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1050_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1051_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1052_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1053_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1054_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1055_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1056_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1057_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1058_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1059_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1060_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1061_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1062_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1063_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1064_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1065_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1066_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1067_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1068_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1069_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1070_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1071_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1072_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1073_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1074_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1075_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1076_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1077_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1078_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1079_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1080_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1081_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1082_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1083_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1084_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1085_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1086_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1087_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1088_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1089_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1090_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1091_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1092_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1093_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1094_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1095_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1096_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1097_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1098_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1099_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1100_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1101_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1102_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1103_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1104_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1105_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1106_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1107_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1108_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1109_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1110_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1111_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1112_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1113_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1114_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1115_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1116_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1117_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1118_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1119_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1120_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1121_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1122_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1123_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1124_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1125_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1126_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1127_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1128_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1129_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1130_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1131_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1132_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1133_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1134_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1135_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1136_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1137_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1138_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1139_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1140_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1141_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1142_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1143_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1144_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1145_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1146_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1147_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1148_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1149_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1150_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1151_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1152_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1153_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1154_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1155_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1156_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1157_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1158_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1159_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1160_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1161_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1162_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1163_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1164_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1165_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1166_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1167_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1168_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1169_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1170_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1171_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1172_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1173_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1174_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1175_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1176_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1177_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1178_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1179_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1180_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1181_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1182_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1183_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1184_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1185_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1186_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1187_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1188_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1189_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1190_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1191_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1192_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1193_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1194_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1195_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1196_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1197_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1198_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1199_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1200_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1201_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1202_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1203_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1204_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1205_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1206_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1207_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1208_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1209_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1210_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1211_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1212_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1213_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1214_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1215_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1216_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1217_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1218_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1219_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1220_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1221_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1222_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1223_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1224_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1225_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1226_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1227_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1228_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1229_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1230_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1231_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1232_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1233_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1234_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1235_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1236_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1237_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1238_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1239_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1240_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1241_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1242_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1243_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1244_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1245_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1246_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1247_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1248_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1249_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1250_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1251_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1252_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1253_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1254_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1255_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1256_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1257_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1258_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1259_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1260_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1261_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1262_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1263_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1264_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1265_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1266_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1267_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1268_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1269_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1270_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1271_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1272_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1273_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1274_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1275_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1276_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1277_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1278_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1279_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1280_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1281_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1282_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1283_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1284_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1285_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1286_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1287_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1288_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1289_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1290_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1291_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1292_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1293_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1294_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1295_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1296_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1297_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1298_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1299_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1300_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1301_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1302_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1303_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1304_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1305_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1306_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1307_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1308_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1309_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1310_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1311_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1312_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1313_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1314_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1315_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1316_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1317_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1318_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1319_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1320_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1321_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1322_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1323_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1324_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1325_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1326_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1327_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1328_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1329_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1330_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1331_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1332_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1333_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1334_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1335_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1336_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1337_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1338_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1339_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1340_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1341_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1342_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1343_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1344_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1345_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1346_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1347_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1348_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1349_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1350_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1351_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1352_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1353_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1354_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1355_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1356_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1357_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1358_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1359_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1360_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1361_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1362_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1363_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1364_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1365_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1366_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1367_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1368_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1369_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1370_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1371_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1372_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1373_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1374_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1375_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1376_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1377_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1378_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1379_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1380_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1381_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1382_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1383_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1384_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1385_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1386_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1387_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1388_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1389_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1390_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1391_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1392_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1393_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1394_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1395_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1396_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1397_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1398_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1399_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1400_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1401_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1402_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1403_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1404_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1405_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1406_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1407_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1408_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1409_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1410_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1411_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1412_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1413_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1414_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1415_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1416_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1417_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1418_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1419_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1420_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1421_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1422_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1423_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1424_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1425_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1426_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1427_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1428_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1429_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1430_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1431_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1432_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1433_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1434_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1435_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1436_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1437_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1438_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1439_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1440_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1441_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1442_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1443_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1444_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1445_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1446_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1447_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1448_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1449_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1450_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1451_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1452_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1453_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1454_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1455_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1456_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1457_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1458_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1459_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1460_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1461_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1462_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1463_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1464_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1465_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1466_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1467_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1468_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1469_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1470_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1471_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1472_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1473_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1474_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1475_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1476_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1477_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1478_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1479_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1480_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1481_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1482_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1483_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1484_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1485_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1486_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1487_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1488_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1489_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1490_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1491_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1492_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1493_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1494_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1495_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1496_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1497_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1498_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1499_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1500_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1501_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1502_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1503_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1504_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1505_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1506_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1507_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1508_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1509_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1510_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1511_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1512_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1513_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1514_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1515_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1516_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1517_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1518_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1519_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1520_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1521_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1522_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1523_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1524_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1525_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1526_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1527_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1528_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1529_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1530_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1531_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1532_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1533_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1534_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1535_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1536_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1537_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1538_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1539_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1540_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1541_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1542_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1543_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1544_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1545_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1546_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1547_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1548_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1549_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1550_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1551_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1552_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1553_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1554_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1555_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1556_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1557_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1558_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1559_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1560_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1561_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1562_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1563_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1564_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1565_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1566_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1567_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1568_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1569_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1570_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1571_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1572_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1573_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1574_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1575_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1576_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1577_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1578_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1579_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1580_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1581_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1582_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1583_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1584_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1585_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1586_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1587_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1588_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1589_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1590_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1591_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1592_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1593_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1594_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1595_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1596_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1597_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1598_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1599_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1600_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1601_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1602_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1603_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1604_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1605_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1606_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1607_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1608_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1609_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1610_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1611_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1612_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1613_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1614_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1615_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1616_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1617_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1618_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1619_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1620_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1621_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1622_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1623_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1624_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1625_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1626_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1627_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1628_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1629_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1630_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1631_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1632_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1633_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1634_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1635_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1636_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1637_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1638_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1639_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1640_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1641_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1642_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1643_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1644_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1645_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1646_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1647_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1648_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1649_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1650_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1651_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1652_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1653_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1654_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1655_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1656_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1657_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1658_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1659_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1660_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1661_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1662_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1663_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1664_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1665_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1666_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1667_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1668_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1669_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1670_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1671_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1672_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1673_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1674_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1675_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1676_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1677_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1678_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1679_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1680_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1681_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1682_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1683_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1684_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1685_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1686_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1687_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1688_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1689_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1690_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1691_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1692_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1693_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1694_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1695_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1696_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1697_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1698_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1699_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1700_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1701_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1702_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1703_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1704_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1705_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1706_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1707_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1708_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1709_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1710_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1711_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1712_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1713_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1714_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1715_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1716_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1717_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1718_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1719_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1720_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1721_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1722_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1723_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1724_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1725_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1726_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1727_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1728_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1729_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1730_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1731_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1732_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1733_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1734_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1735_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1736_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1737_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1738_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1739_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1740_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1741_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1742_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1743_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1744_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1745_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1746_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1747_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1748_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1749_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1750_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1751_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1752_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1753_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1754_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1755_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1756_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1757_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1758_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1759_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1760_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1761_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1762_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1763_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1764_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1765_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1766_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1767_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1768_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1769_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1770_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1771_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1772_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1773_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1774_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1775_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1776_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1777_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1778_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1779_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1780_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1781_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1782_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1783_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1784_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1785_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1786_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1787_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1788_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1789_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1790_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1791_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1792_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1793_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1794_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1795_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1796_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1797_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1798_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1799_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1800_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1801_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1802_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1803_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1804_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1805_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1806_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1807_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1808_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1809_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1810_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1811_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1812_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1813_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1814_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1815_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1816_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1817_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1818_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1819_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1820_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1821_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1822_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1823_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1824_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1825_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1826_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1827_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1828_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1829_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1830_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1831_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1832_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1833_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1834_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1835_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1836_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1837_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1838_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1839_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1840_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1841_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1842_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1843_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1844_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1845_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1846_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1847_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1848_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1849_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1850_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1851_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1852_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1853_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1854_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1855_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1856_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1857_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1858_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1859_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1860_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1861_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1862_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1863_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1864_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1865_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1866_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1867_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1868_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1869_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1870_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1871_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1872_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1873_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1874_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1875_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1876_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1877_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1878_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1879_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1880_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1881_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1882_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1883_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1884_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1885_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1886_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1887_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1888_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1889_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1890_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1891_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1892_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1893_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1894_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1895_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1896_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1897_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1898_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1899_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1900_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1901_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1902_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1903_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1904_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1905_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1906_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1907_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1908_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1909_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1910_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1911_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1912_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1913_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1914_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1915_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1916_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1917_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1918_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1919_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1920_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1921_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1922_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1923_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1924_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1925_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1926_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1927_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1928_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1929_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1930_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1931_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1932_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1933_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1934_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1935_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1936_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1937_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1938_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1939_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1940_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1941_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1942_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1943_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1944_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1945_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1946_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1947_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1948_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1949_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1950_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1951_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1952_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1953_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1954_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1955_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1956_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1957_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1958_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1959_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1960_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1961_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1962_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1963_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1964_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1965_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1966_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1967_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1968_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1969_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1970_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1971_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1972_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1973_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1974_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1975_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1976_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1977_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1978_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1979_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1980_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1981_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1982_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1983_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1984_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1985_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1986_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1987_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1988_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1989_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1990_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1991_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1992_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1993_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1994_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1995_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1996_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1997_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1998_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS1999_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2000_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2001_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2002_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2003_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2004_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2005_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2006_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2007_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2008_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2009_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2010_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2011_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2012_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2013_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2014_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2015_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2016_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2017_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2018_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2019_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2020_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2021_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2022_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2023_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2024_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2025_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2026_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2027_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2028_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2029_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2030_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2031_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2032_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2033_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2034_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2035_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2036_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2037_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2038_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2039_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2040_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2041_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2042_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2043_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2044_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2045_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2046_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FMicropolyRasterizeCS2047_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9883432B02D7939AD73EBD46FAFF9777C9143423161_FRayTracingDynamicGeometryConverterCS0_0_03DA13143CA80AA0C4A723468A2A057CE789D4810373C72D67598F57B61C139E9434914C2DFC0DF9A_FLumenCardPS0_0_0E0B98F9D8B4A53CEE103A850554AA53F021B12A5394870B955876B5BB71E2F6BAB725C413CD5A301_TMaterialCHSFNoLightMapPolicy0_4_649C7469F69D94748CD03CCAD6CA2E54358B97E60E391E5BE017CDD28334F3F2DC73F6ED868BBD6234_FLandscapeGrassWeightVS0_0_0F0B65E856D91B69D2F10840CCC3A87C8537B08325D765E4AB6F013FCC9113B0C4C52053B0997C28A_TBasePassCSFNoLightMapPolicySkylight0_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C078B7605C6CDB6349B920FC8BF0385DD2E65DAFAA5_FHWRasterizeVS0_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS1_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS2_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS3_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS4_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS5_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS6_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS7_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS8_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS9_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS10_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS11_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS12_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS13_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS14_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS15_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS16_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS17_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS18_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS19_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS20_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS21_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS22_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS23_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS24_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS25_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS26_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS27_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS28_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS29_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS30_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS31_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS32_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS33_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS34_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS35_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS36_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS37_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS38_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS39_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS40_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS41_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS42_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS43_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS44_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS45_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS46_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS47_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS48_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS49_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS50_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS51_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS52_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS53_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS54_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS55_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS56_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS57_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS58_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS59_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS60_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS61_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS62_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS63_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS64_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS65_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS66_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS67_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS68_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS69_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS70_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS71_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS72_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS73_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS74_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS75_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS76_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS77_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS78_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS79_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS80_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS81_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS82_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS83_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS84_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS85_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS86_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS87_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS88_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS89_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS90_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS91_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS92_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS93_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS94_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS95_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS96_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS97_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS98_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS99_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS100_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS101_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS102_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS103_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS104_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS105_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS106_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS107_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS108_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS109_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS110_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS111_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS112_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS113_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS114_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS115_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS116_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS117_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS118_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS119_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS120_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS121_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS122_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS123_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS124_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS125_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS126_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS127_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS128_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS129_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS130_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS131_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS132_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS133_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS134_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS135_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS136_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS137_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS138_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS139_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS140_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS141_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS142_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS143_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS144_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS145_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS146_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS147_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS148_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS149_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS150_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS151_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS152_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS153_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS154_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS155_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS156_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS157_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS158_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS159_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS160_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS161_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS162_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS163_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS164_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS165_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS166_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS167_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS168_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS169_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS170_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS171_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS172_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS173_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS174_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS175_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS176_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS177_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS178_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS179_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS180_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS181_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS182_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS183_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS184_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS185_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS186_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS187_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS188_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS189_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS190_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS191_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS192_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS193_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS194_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS195_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS196_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS197_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS198_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS199_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS200_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS201_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS202_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS203_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS204_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS205_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS206_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS207_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS208_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS209_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS210_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS211_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS212_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS213_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS214_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS215_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS216_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS217_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS218_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS219_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS220_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS221_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS222_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS223_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS224_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS225_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS226_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS227_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS228_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS229_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS230_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS231_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS232_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS233_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS234_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS235_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS236_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS237_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS238_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS239_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS240_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS241_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS242_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS243_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS244_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS245_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS246_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS247_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS248_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS249_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS250_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS251_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS252_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS253_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS254_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHWRasterizeVS255_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf98875888266CB59E377FB7010718DA0E773BAC9B479_FHitProxyVS0_0_04767F40D785EC1E1E990936BF2440B6CFA2D85D18E04E0BA60765D932E2AA4DD276122726B4BC071_FHitProxyPS0_0_079B95618325675B077620A7117054661245787F362B61AE2B3E48A2B0AA490E47460DF1873751DAA_FLandscapeGrassWeightPS0_0_0F0B65E856D91B69D2F10840CCC3A87C8537B083270E70268B70E00EBC21537179388E9AC708E65D5_TBasePassPSFNoLightMapPolicy0_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C07BDE4294EC755250945CF2983C40A35A9B70FFDB3_TBasePassPSFNoLightMapPolicy1_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C07BDE4294EC755250945CF2983C40A35A9B70FFDB3_FHWRasterizePS0_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS1_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS2_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS3_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS4_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS5_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS6_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS7_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS8_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS9_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS10_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS11_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS12_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS13_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS14_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS15_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS16_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS17_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS18_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS19_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS20_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS21_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS22_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS23_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS24_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS25_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS26_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS27_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS28_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS29_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS30_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS31_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS32_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS33_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS34_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS35_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS36_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS37_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS38_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS39_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS40_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS41_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS42_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS43_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS44_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS45_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS46_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS47_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS48_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS49_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS50_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS51_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS52_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS53_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS54_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS55_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS56_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS57_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS58_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS59_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS60_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS61_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS62_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS63_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS64_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS65_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS66_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS67_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS68_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS69_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS70_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS71_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS72_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS73_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS74_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS75_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS76_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS77_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS78_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS79_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS80_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS81_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS82_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS83_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS84_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS85_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS86_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS87_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS88_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS89_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS90_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS91_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS92_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS93_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS94_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS95_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS96_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS97_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS98_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS99_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS100_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS101_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS102_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS103_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS104_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS105_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS106_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS107_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS108_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS109_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS110_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS111_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS112_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS113_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS114_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS115_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS116_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS117_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS118_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS119_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS120_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS121_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS122_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS123_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS124_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS125_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS126_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS127_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS128_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS129_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS130_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS131_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS132_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS133_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS134_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS135_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS136_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS137_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS138_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS139_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS140_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS141_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS142_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS143_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS144_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS145_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS146_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS147_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS148_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS149_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS150_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS151_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS152_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS153_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS154_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS155_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS156_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS157_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS158_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS159_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS160_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS161_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS162_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS163_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS164_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS165_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS166_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS167_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS168_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS169_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS170_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS171_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS172_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS173_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS174_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS175_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS176_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS177_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS178_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS179_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS180_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS181_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS182_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS183_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS184_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS185_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS186_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS187_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS188_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS189_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS190_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS191_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS192_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS193_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS194_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS195_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS196_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS197_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS198_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS199_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS200_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS201_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS202_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS203_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS204_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS205_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS206_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS207_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS208_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS209_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS210_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS211_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS212_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS213_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS214_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS215_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS216_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS217_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS218_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS219_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS220_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS221_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS222_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS223_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS224_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS225_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS226_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS227_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS228_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS229_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS230_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS231_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS232_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS233_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS234_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS235_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS236_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS237_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS238_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS239_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS240_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS241_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS242_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS243_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS244_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS245_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS246_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS247_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS248_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS249_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS250_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS251_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS252_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS253_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS254_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_FHWRasterizePS255_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf988D0F4180AAF0D1A959E34A925D42CCBE35844F0F3_TShadowDepthVSVertexShadowDepth_OutputDepth0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89FC1E995743FACF3C780748FD5EB2A75BD2D7843BE_TDepthOnlyVS0_0_069FBF6B780A201C08A39690B9EB9952950B278518ADE6F7F29B5656EE3E08DB8C5BED3FA828128DA_FLandscapePhysicalMaterialPS0_0_07FEEDB483878A0235A6D8CD3F5170C2FD6239A8CA15F15DC89A23CA6ADB1BF734EE6C552AFFECACC_FLumenCardVS0_0_04C4FA850FDCB6B90C41112AAABDC9D03DAD8A552CB2751564735928CBF358C6EFBA545FA041439A0_TShadowDepthPSPixelShadowDepth_VirtualShadowMap0_0_03581B2D06E1213FFEB0F086AC4A5BE8AE9C84C0BFBFBB8F1BCBEDF0B164BDDCF6A470343CF91ADD2_FPathTracingMaterialCHS_IS0_32_64488A829CE3C0C6C6AE53F5D02D91633ED7F30F28C81EAFA7D8FCC0CCD3880156ECEE9737BD952F94_FTranslucentLightingInjectPS0_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS1_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS2_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS3_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS4_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS5_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS6_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS7_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS8_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS9_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS10_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS11_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS12_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS13_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS14_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS15_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS16_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS17_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS18_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS19_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS20_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS21_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS22_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS23_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS24_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS25_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS26_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS27_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS28_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS29_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS30_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FTranslucentLightingInjectPS31_0_003501D4EA9968C7A4FDFB270B13B9DCB137D75F69298BFADDF322EAFDA0E335FC95C9E157B646419_FHWRasterizeMS0_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS1_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS2_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS3_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS4_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS5_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS6_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS7_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS8_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS9_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS10_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS11_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS12_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS13_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS14_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS15_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS16_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS17_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS18_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS19_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS20_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS21_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS22_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS23_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS24_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS25_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS26_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS27_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS28_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS29_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS30_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS31_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS32_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS33_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS34_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS35_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS36_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS37_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS38_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS39_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS40_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS41_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS42_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS43_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS44_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS45_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS46_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS47_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS48_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS49_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS50_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS51_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS52_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS53_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS54_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS55_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS56_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS57_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS58_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS59_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS60_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS61_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS62_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS63_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS64_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS65_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS66_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS67_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS68_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS69_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS70_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS71_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS72_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS73_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS74_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS75_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS76_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS77_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS78_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS79_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS80_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS81_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS82_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS83_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS84_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS85_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS86_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS87_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS88_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS89_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS90_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS91_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS92_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS93_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS94_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS95_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS96_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS97_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS98_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS99_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS100_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS101_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS102_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS103_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS104_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS105_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS106_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS107_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS108_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS109_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS110_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS111_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS112_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS113_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS114_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS115_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS116_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS117_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS118_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS119_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS120_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS121_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS122_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS123_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS124_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS125_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS126_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS127_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS128_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS129_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS130_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS131_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS132_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS133_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS134_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS135_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS136_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS137_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS138_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS139_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS140_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS141_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS142_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS143_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS144_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS145_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS146_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS147_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS148_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS149_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS150_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS151_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS152_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS153_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS154_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS155_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS156_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS157_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS158_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS159_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS160_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS161_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS162_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS163_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS164_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS165_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS166_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS167_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS168_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS169_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS170_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS171_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS172_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS173_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS174_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS175_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS176_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS177_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS178_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS179_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS180_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS181_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS182_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS183_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS184_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS185_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS186_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS187_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS188_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS189_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS190_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS191_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS192_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS193_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS194_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS195_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS196_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS197_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS198_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS199_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS200_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS201_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS202_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS203_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS204_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS205_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS206_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS207_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS208_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS209_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS210_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS211_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS212_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS213_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS214_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS215_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS216_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS217_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS218_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS219_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS220_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS221_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS222_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS223_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS224_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS225_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS226_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS227_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS228_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS229_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS230_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS231_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS232_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS233_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS234_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS235_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS236_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS237_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS238_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS239_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS240_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS241_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS242_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS243_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS244_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS245_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS246_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS247_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS248_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS249_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS250_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS251_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS252_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS253_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS254_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FHWRasterizeMS255_0_012A4A8D7A31BBB04D76625CA0D133A5E35DD56BASPM_1377062309e7e47f793e5923acaab6633e8a3e20f9b2a7a7673738eaf6aaf9887425B25BBF9A8914F428D767E0A54FD10BA42AC8_FVelocityPS0_0_09B20C33B72F80E20D898BD57C866FFFDE60116388F5A40A12D25A7645F81B664EC755F9183F65E2C_TShadowDepthVSVertexShadowDepth_PerspectiveCorrect0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89F08CD0C707472EB939106EA9F0B087612D75F8268_TBasePassCSFNoLightMapPolicy0_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C07E74FD5EDCED837B4EEB11F93B60317E50F4476CB_FLandscapePhysicalMaterialVS0_0_07FEEDB483878A0235A6D8CD3F5170C2FD6239A8C4D5B42CCFC0056DD05DC576AC7626AEB678DE93A_TBasePassPSFNoLightMapPolicySkylight0_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C0790DC26D215521B8990A4D8C2331D52B92FFE6611_TBasePassPSFNoLightMapPolicySkylight1_0_0EA3A4E0580D8DACB6B03516FCAF75B7925F81C0790DC26D215521B8990A4D8C2331D52B92FFE6611_TShadowDepthPSPixelShadowDepth_OnePassPointLight0_0_03581B2D06E1213FFEB0F086AC4A5BE8AE9C84C0B67FFBADCED2EEABBA7E306A2AE15090692383FD0_TShadowDepthVSVertexShadowDepth_PerspectiveCorrectPositionOnly0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89FFAB4C60423874B50A6BAC704A0BB43B843A64888_TShadowDepthVSVertexShadowDepth_VirtualShadowMap0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89F40E4BAEF73C8454E0FAB89C946352865DA77A8A4_FPathTracingMaterialCHS0_32_64488A829CE3C0C6C6AE53F5D02D91633ED7F30F28FA629A3B739B1ACAEF994ECD9F183C37EB551BF0_TShadowDepthVSVertexShadowDepth_OnePassPointLight0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89F3B1D63DC03AB0930FF4A66F570AD90D9CF68ED8B_TShadowDepthVSVertexShadowDepth_VirtualShadowMapPositionOnly0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89FB439A5C9BE9D7067547EB0ECB216199E50E1FDF9_FDebugViewModePS0_0_0891706BD1D857A137CF12E917D162FC9EBF6A3EA57DB13F78125CEDDA621EC9E27FD49A3D7F649D2_TDepthOnlyVS0_0_0A66D70B65D3CD613155777343054427D0B50664256427B37960E88D0CA8E64942C1E064EF04157D3_FVelocityVS0_0_09B20C33B72F80E20D898BD57C866FFFDE60116386EB92B4DD948FC931344240540361B99938DCCAF_FDebugViewModeVS0_0_0B21BFB6E17F7E6F136D6BEC9578A3E62964DC4537ACCC31E569010485380C30200922F864B7C954F_TMaterialCHS_IS_FNoLightMapPolicy0_4_649C7469F69D94748CD03CCAD6CA2E54358B97E60E237667DA4250F8121DFE0E344F2893CD9125C86F_TShadowDepthVSVertexShadowDepth_OnePassPointLightPositionOnly0_0_0AEA4E28B3E486D3264FBC2FB51E6829CBE0BB89FFD81D1095024C814F3EC3E8C4D92AC12C34F9EC0_TBasePassVSFNoLightMapPolicy0_0_04E727030044C36DC4B3DCA2407BAFD0409F964F42E57565D32F6E3FA279A9B6039A222F2D9A12C36_FLumenCardCS0_0_01D820D4A282FA05926D60E71C25DCB29114D8549167F50A8B7828FC04F1397353D12F19F9000B966_DepthPosOnlyNoPixelPipeline69FBF6B780A201C08A39690B9EB9952950B27851_VelocityPipelineD67B9D25E620CC2032BA2AD5ED2C246924297717_DepthNoPixelPipelineA66D70B65D3CD613155777343054427D0B506642_FGPUSpriteVertexFactory9780E26F1FE7A4B5ABE686B933D9A97A8D7F8E4D6F4AA5ED14228FB7E8DA60EA4B587BD3239FAD94B9CA513CCBA4F1E3AF7D9556DD0F2FF45E951E1A_FNiagaraRibbonVertexFactory908D5112541EC4DB99F4A66DE827A3EF5D497941A5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966DE03DD13CEAD2D60503F2AAC85D4762994EF4025A5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966A5C2BD7C8E1CB8C2C0438E13767AF67A0D5B5966_TGPUSkinAPEXClothVertexFactoryDefault48818F17651118E7E837001EAFCE26AAD95E1367865BAECC72718BD163211F688746A699B40529F3_FHairStrandsVertexFactory24E4705C23742D66D69A7C7ECA6A59A6167316ACD3E4E2A5E88CD68F0A272CC5E27AF3522F4CD35AD3E4E2A5E88CD68F0A272CC5E27AF3522F4CD35AD3E4E2A5E88CD68F0A272CC5E27AF3522F4CD35AD3E4E2A5E88CD68F0A272CC5E27AF3522F4CD35A_FParticleSpriteVertexFactoryDB22251BF125DDB5B991E72D328DBEFE0D4D303CF99E1B0FB635933CEEAC41CF9441DF5EA4A994CA9DAE5A7C55936FD50BC3B20BD063C1832A4D4247_TGPUSkinVertexFactoryUnlimited48818F17651118E7E837001EAFCE26AAD95E136731B36F6CBAFE9E8B4B5CD4C25AE5EC462AD5FA30_FVectorFieldVisualizationVertexFactoryE3D25522ED2F5E4ADF8DD062E119B7F24264AEE9CC854D8E74FEAEF90804D69AF6B78BD07A141ACC_FNiagaraMeshVertexFactory929D774F4E21EFBACB8FF2F47C282F56C2341FBD4B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9571BD81B2CBA1F364F28A837532353718EB814537B4B3A20E0CA93D5CA5A60C16EF2EB14EA073FC9574B3A20E0CA93D5CA5A60C16EF2EB14EA073FC957_FParticleBeamTrailVertexFactory0FC181943CF06399D466B7D27378D3B880536E47378BBDDEC2CEAC35A309C357B38D702E7981D5D3_FNaniteVertexFactoryA89E6321A3F9BDA38C5EB5D0C70671B25A927719_TGPUSkinVertexFactoryDefault48818F17651118E7E837001EAFCE26AAD95E136731B36F6CBAFE9E8B4B5CD4C25AE5EC462AD5FA30_TGPUSkinAPEXClothVertexFactoryUnlimited48818F17651118E7E837001EAFCE26AAD95E1367865BAECC72718BD163211F688746A699B40529F3_FGeometryCollectionVertexFactory45EBD0ED969855794C07B746085915151244C28D49D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC4149D716CAD02F0AC031CC93ACB2AFCB9C42E7DC41_FLandscapeXYOffsetVertexFactory3843D7D6B58270226AD53436E41481959D24CEBFB1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FMeshParticleVertexFactoryB8D545DD51C6AAE657B5E8BBD7461C3B837195D5F773920348F231C490A74B1A551F8CE3ABF04791_FInstancedStaticMeshVertexFactoryBBDA0E56AFD152AD4FFF64457FF5E7CF738BB32939A00A3AF8434811E9EA9890B934C37C364D15CD39A00A3AF8434811E9EA9890B934C37C364D15CD39A00A3AF8434811E9EA9890B934C37C364D15CD39A00A3AF8434811E9EA9890B934C37C364D15CD_FSplineMeshVertexFactoryBBDA0E56AFD152AD4FFF64457FF5E7CF738BB329A747D67BD07743C1BEA1DE549F682B82EB7B9965A747D67BD07743C1BEA1DE549F682B82EB7B9965A747D67BD07743C1BEA1DE549F682B82EB7B9965_FHairCardsVertexFactory41CF2FFA8640ACE78ECC156002F8A4B9E163A2CC0FC1BDC3DE4DEE8FD704597A0BE4E617A04B1D440FC1BDC3DE4DEE8FD704597A0BE4E617A04B1D440FC1BDC3DE4DEE8FD704597A0BE4E617A04B1D440FC1BDC3DE4DEE8FD704597A0BE4E617A04B1D44_FLocalVertexFactoryBBDA0E56AFD152AD4FFF64457FF5E7CF738BB32981418F8992AC49B8E2AFD31AF3B57530A23E085E81418F8992AC49B8E2AFD31AF3B57530A23E085E81418F8992AC49B8E2AFD31AF3B57530A23E085E_FLandscapeVertexFactory3843D7D6B58270226AD53436E41481959D24CEBFB1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCEB1684FBEF19B946A8709F4309D7CC4E5FC6044ADB1684FBEF19B946A8709F4309D7CC4E5FC6044AD_FNiagaraSpriteVertexFactory01EEAB84DCA197AB77AD6FB9C9A2EB55EC0069CD5957CFEE095AEFFBA7F83F09F020F15CF6555718EFF166204144512228FF7A163011544EEF3FD2265957CFEE095AEFFBA7F83F09F020F15CF65557185957CFEE095AEFFBA7F83F09F020F15CF6555718_FGeometryCacheVertexVertexFactoryBEFAF220B93F6E16E9FEB9242288A6A40747EDE476143182082C57C6F98756E7AE927ED26DD4479A76143182082C57C6F98756E7AE927ED26DD4479A_FLandscapeFixedGridVertexFactory3843D7D6B58270226AD53436E41481959D24CEBF3F5F45F5620EF6411E27211E3D675CEA50B38DFBEBA49461CECB1EA5D21E2BF8918B91C7C3994DCE3F5F45F5620EF6411E27211E3D675CEA50B38DFB3F5F45F5620EF6411E27211E3D675CEA50B38DFB_FLandscapeTileVertexFactory3843D7D6B58270226AD53436E41481959D24CEBFB1684FBEF19B946A8709F4309D7CC4E5FC6044ADEBA49461CECB1EA5D21E2BF8918B91C7C3994DCESPM_039985d77c1c1471b03049c2bf8ef2d29fea7464cb33519e9049b37ddcda731fSPM_117e6119542e172878eb8d8df821dc98b3b1a14df286a76bb6d7944757abb01cSPM_16580fe885dc965c263d5eaad54b525a074fe46b65804a2a9a8eeb6c60d81eccSPM_1abdcf528b27ee15ea112606f7deb0e2bf1615c76e72788521d73027ce1f58d5SPM_1abeee29937f4f1f7bcbd889e379941b812ccb972f89fc23883577de1d19934eSPM_1da6a996912903dde41c496fbb90ab8b7a56a37d91e64fd22c93b23c3291cf38SPM_1e6ef6ce4a605f410f9aec4fd01ef92ad8a5867ee2cbba70f58ef866a6d35e44SPM_212dd557778bf53736b95bebf4695b9895831af7743bf4f024d9b511e0c2d54bSPM_230d8da8241e98c69dad8a7a35f2fc46ee0ff945093d98e5ba0547349ba74dd9SPM_29949b2484738b64be730395ae2105942cf24097b2cba60e9272e2032ad0f401SPM_2c57d0a836509d36c7c166415bfeb15e0ef573dcd9b4603cf1538f7314f9243dSPM_320021edfcc2bcd72fca08109199a1610d3a17b7028937dd6dc8cd5fa10a0cc7SPM_35ddf07c29b7ba174b82f284a0659e75175dffbdb1e5bcfbb8be87ef8e1351f9SPM_36d1d796bf3fb73ccd892afb1b779f503d696f05fd480468b72f5ef66020825cSPM_38659b689b51ebeabfae361e2ad66fd26f87661e9af7d9b1b63086057dafbda6SPM_3b8fafd4358c1af5a086884104678b1dfd2e193bfae2d80ab85be9b6ad7bd2f2SPM_3ba288684ffb93db228ea912ad948e3e54a3d8432e19073d847bebd48be002b4SPM_4067e07356949e8d4adff0eb1025aa52e41013a0be9856ce34d05a5fde1156fcSPM_44cfd7856989e0d50b86ae467107f8cb1927d4c4ac69e4400cc83861f7c2587fSPM_48630cd959fe3e36f7956b88e42d315bae59f4c944e73ebc00038e7f30cdd0b2SPM_4a9d07239f86cc5310d60e8af0f25edf06a7d9ea4a2cac6d8cec6a1602c017a9SPM_4b9cb22c990eb09622d20b98f968916764f8d0bcc6db6efdc30e5b3579cc63d6SPM_4b9cb22c990eb09622d20b98f968916764f8d0bcc6db6efdc30e5b3579cc63d6SPM_4ef545431112644018dcf4d0ac99e9bbf7155b6eab8ec7dd1c7c6977d2e36f64SPM_52c75caf43763bb2148e279c64c8b7b94c825a422ba6b345ed680aee6f86564cSPM_54a1312cf73db2c90c5ed5f36724cf7f386b575e0cdac7da6333551840860f28SPM_558881d4ac12138fcbcdfe48514387b4d97e3917d7af9d06e82d66a738436156SPM_5ba0c5b7c5677cfc80f9c206abf3f2281b0c59cf7534bc2c0c3040647bc959d3SPM_729f279cb55c14a86674481c57e40fb61e9dd97072c662bfef60a2a568940f4eSPM_765b15d86082ee504b440e3c2d0324ff41e2225b135e65b22cd812bb5d002732SPM_7a8859af6bf08dbff30fc6fcf3aa44eae2b5708485554da1535146f5ab7d1e6cSPM_7bbfc7c01ccc8e5316674edccb233b351899a83a072057d55f1f13e9f6dabf0bSPM_7c9759a140fd9b6c0a2e98c5032aea17da6f52cc15bbf54ca405cf5011999bb0SPM_83dbf399e330e02ba06c94ef9626063f802e7dad4acecf70bd8dc6046d1c22bbSPM_867ae74dd318b000caff3295987e156421ebd86d8496633b53083cfc7021e6d1SPM_86d0c84beb6cce721197426e35f24a231b8d3b3dcfaad4ac7e7cb5869ec16cb2SPM_8917a03e1e52e3b2c09594c402821ccaaabba029aebfa0f444faeb2c184f9501SPM_89d2e11bbb81b3f9ca7deb28b92d425dba5b46b2826ca1b3f62062fb141a9055SPM_89e31fa6f0805c23f96342278a94953136932e9ae9bfe9e2388061dfb6d99bfcSPM_8aba731ad44e3a707b51569410dec477ae09100f5bc6b0ad01ae6ac470b3876aSPM_8f2515f426db488db7287a059c05dc2cec22cfd7015d224934fbfbdf45e2c2fdSPM_98e11b36ef3d6e4dc166bfc6020842cb5ad6481ef73003a086fd4cdf34885068SPM_9cdc2e108d4933f77f45b419a1ff9766781d1e07d02f2ea021820a33f42561adSPM_9fdfb43522201a4ec3dc6eb06a424d3e34dd4adb95a564f46658af413951ed29SPM_a2ca952d5d0c16a12b0eca91df068d9ce926000b17be062f97ba31ac64039a67SPM_a5a1ce022f71b2cc5cf17063563c3efe841ad032a217b7041fb1e7a4df0e6ecdSPM_a60f57014fe8c7f123a65a654ddc948a2fb49ceec2a165594a741d9992c32a53SPM_a68fdb6d5e80e61b3d234fd7c5316105848b72a268bf8b2098525266242da35dSPM_aa661c84dbf8f659fa074577f1cbf28605bf282f383c32fbea060da3d871c48bSPM_b3542671557be41970b9995405699d2482397b765c4f115d382f98344621b168SPM_b902cb58365a597ab0b6fe8cf87ae04d551e6747d32c37d928b8157fd3eba5c0SPM_c1b18e33b7dee0ef9484fb4cee1d3ba679afd1eda5bbd346e54a3cd3e78c744aSPM_c2a2b240af048794363faba0f253902e438dcfbf65f47b6264cd9bf2a693c42aSPM_c45875890e71aab6e2d0807e835fbfd472bbe81e263f68ff92d213c2d240e283SPM_c46055e23ccb2886879a3ceab438faea68caed033cb6498eec9d0ea6bfdaec6dSPM_c4fd33b245ca554105394a55a3b11ebe5ab14de075817620e79925a15f1d4e79SPM_c76011c68ce66df2e35a698ee51e6f07c3751a4d5d0ff44da30e405ef380e254SPM_c7d3ebcdbb426493c26dd74391f2021c3a8b4bdaa95725c5b46927d183fa57e3SPM_c9416f35c1f6e7134c0f829b5f21b92c170541a47c3f059d0d3252d8866c24aaSPM_c950e2748d33543963b877521828efae284bd631b6d3208cb86d15e3d6ac302fSPM_caf44f3686659bb5161b05d968c1b10a21cd0bf51ac06bc73dc9d1492630313bSPM_cb192099600d26b86e9ceb91b40924732c43c666b1a12f6c81e91bcb45468db2SPM_d00733585ab72c2d739fa4f7d6126118ffbb982772777f099915139a8769e871SPM_d27325dac607f77eed07b46cb6e487eca7d9580433e57020cf1eebbdb50d3d1bSPM_d6761171284797c9ef5948481dd2d26dcfbcadb52176c2bfa405b22de299f1e2SPM_d9d1370188d8a1460e8a5b2d14da50b1adcda241995c62cc82de0d369a75a944SPM_dab238b1b2d52a66c17a2ac261384aaf7ace7ffc6cecacd7b12495131d73b305SPM_dbe59f8b8fbec2d0e87d03cff9fa761d022674f87e806b5a682d93d3ab4e65ddSPM_debd3b9cc3bd312d9214df237fa1d9744029bd0edcad0840bb3b5c8029fcd238SPM_e2501dfb27c2094ff653cbbf6790afaf35eee7822e3385516d1ba91fb2edd578SPM_e99122b96c86762ba069e73393d36dd9e7886cd1e40a4c23c10949dc4144ff77SPM_eb0cd69841dc86d7631fb5a4516a6213cab0e3a32b5fecdde16d520f21bd6c23SPM_ec07400c5f585a12fbbee1746f1e938107aa08991ad06fe4df1ed33fdd9c6b73SPM_f53e16ff831c8a419ffe9cfa126170a5a47d6d5eb0fe324710950245f56d2518SPM_f6481c86c24d5e8e86b711ed96952ba756b1b40357dd9cadb41c22ae0d52834bSPM_f848405a4bb32d0fbb35c92b345a9c5ffbd711de556a9112d23792383b0ae532SPM_f8be583312bcf280a851fc3ff4a2ee3ca893e714fc8d65a88c47afed6791d1f7SPM_ff7b878748b7492a8bfbb1d213e0de922e7d1ad4e5c007d89539a25e116fe2a5433AFC833894B7681A1D3DDBA35F7F5A9509A899DA39A3EE5E6B4B0D3255BFEF95601890AFD807090000000000000000000000000000000000000000_EMH_74eb452c9d818b1dc5c2a6f8afda1570cf221592d0626c430304f8c03a43e483_B16891B64E73D31799119A5F96AE55C3ECD7EC39_000_100_5; +_MatTransl_ProjectFish0589879345473E44663D4D32541EBE5A583E1872_8498901AE9EDB19FAAC14B3F91765DA3_ \ No newline at end of file diff --git a/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json b/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json new file mode 100644 index 0000000..98e9622 --- /dev/null +++ b/ProjectFish/Saved/SourceControl/UncontrolledChangelists.json @@ -0,0 +1,113 @@ +{ + "version": 1, + "changelists": [ + { + "guid": "00000000000000000000000000000000", + "description": "Default Uncontrolled Changelist", + "files": [ + "G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Characters/BP_DeepFish.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Dabaza_GameMode.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Maps/TopDownMap.umap", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG.uasset", + "G:/TestForNPCAI/ProjectFish/Content/FIsh/NewBlueprint.uasset", + "G:/TestForNPCAI/ProjectFish/Content/LevelPrototyping/Materials/MI_PrototypeGrid_Gray1.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Gameplay/BP_Ready_GameMode.uasset", + "G:/TestForNPCAI/ProjectFish/Content/TopDown/Maps/TopDownMap.umap", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/YL/ZQP3QWKTM7L3X44SNP7R0R.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/D/K5/SN7K2XPUUGF6M3W8BM3PCO.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/Maps/Dabaza/8/AJ/X2E3Q1FHIRQBYURHER1BUJ.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/NH/Y5RTSRV8014ZJL5D4GEJU7.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/05/XU1B82C0LVTATGZJMQO9FL.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/UC/9S6IJ2W4D0R69960IS2HMT.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/35/8FA63W2Q3BNFGJPMRATRGR.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/2Q/Z66OB1GL7VDOJTTUPYDVXQ.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/4H/AMS8G54LQQE9D7ZNWLF43W.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/4/UT/FEKO080FGIN9QXC2ZDI4SH.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/6/NG/VZAM5JHOONFULW5A3H4EJ4.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/3/1U/OE33LO6CSWZC7O3F1J3Y7N.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/71/2X87XDDC2TTHX5M2097RWT.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/GX/KCVNFI6L6PBCQ844W3A926.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/E/6T/PAFZCSE925AZPVC0VM82V4.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/A/G6/8GWALNNV76626MRWOONQY4.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/AV/IRE4CM8TLG4MOLMVBSVN54.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/0/E6/3OG4RYQUJYDHKPCOYUPRJC.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/C/2U/PP2VN9RBLI9N68XKK8BX4N.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/1/GN/94PG2IOVNB9UKTR6O66NEY.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/5/3M/832RIQQK4NBG0FL5J0S94I.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Maps/Dabaza.umap", + "G:/TestForNPCAI/ProjectFish/Content/TopDown/Input/IMC_Default.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Characters/BP_TopCameraPawn.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Characters/BP_Dabaza_Pawn.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/9/KH/XN8E4TS3WX0Q56MUOGB9NB.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/Dabaza/8/VO/DV1AKH9EUYVRMVYP3DYZVH.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_EnduranceBar.uasset", + "G:/TestForNPCAI/ProjectFish/Content/DataTable/Skills.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/PowerPull.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/LivingWater.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/RapidCharge.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/FrostSlow.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/EnduranceMend.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/VortexDisturbance.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/ArmoredLine.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Textures/Skill/PrecisionBait.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillCard.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/Mats/M_SkillCard.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillContainer.uasset", + "G:/TestForNPCAI/ProjectFish/Content/DataTable/PawnSkills.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_GameEnd.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffect.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_SkillEffectText.uasset", + "G:/TestForNPCAI/ProjectFish/Content/Characters/BP_PawnEntity_Child.uasset", + "G:/TestForNPCAI/ProjectFish/Content/UI/WBP_Endurance.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/M5/2S0ICYCUTIK653O06ATB8T.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/EK/K75411SFI66JADVMYUHSE9.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/C/1E/4Y8WX2VBX0O2F29MA2EFQ3.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/Z5/CT51ZMVM45K0XE3H3IEN6E.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/B/6L/BX1MD4MTK46U2U5IL6VF4B.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/A/1B/Z9KIZN9Y2PXBVF0YBHFYTL.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/9/D3/60ORICH9SPD98P0GDB2WTP.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/UB/YOMIFUVSBFZCNAEZXLIK5N.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/8/R1/ENMI5ZSH5EMTVMF7P7JJ6A.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/EJ/7JCMZ75LZ4IDNH7SV7SZBW.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/EA/CFM5Q53S1WTXZE2D8WNZG3.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/7/7N/EXUVZTOOFW2W6GLQ3P3461.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/WX/5QM6K2GGCX5YO14Y6QBJ4C.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/R2/QH9S99IJ11XYP1Q6HIKILE.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/5/73/UVHWRURIUV7MNJFJVJ61SJ.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/4/DT/VK9K3LWM0J7UO8TVHOZPQ9.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/3/16/IU32BEDS8KCRBPZIQZ3317.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/2/PP/0FWE1XT4SIGHXZQ61E0BPN.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/WT/9EB3EM9K49XRZB2CEEEXNN.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/W3/RNMLH0LC92F4NQBRIDJWY9.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/MZ/J2Q7VJB341YVU7JLBCAH3B.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/E1/PV1E7L48T15IS72GGCGK5Y.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/TopDown/Maps/TopDownMap/0/DR/OCVU8YG3TFFGMMBMWTU7VI.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/E/60/LNW66FR8L07Y79WMADIAIZ.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/7/X0/PMOXL3SAM2HXQHUVR9J2AN.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/TopDown/Maps/TopDownMap/2/OD/JN9AMFHJ3BLRX4UL09MSAN.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/A/RN/FHX05LPSBNMAJG3SW97PS7.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/0/QS/8AKCSH4RXXQHHQMCR8GO6C.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/3/JQ/O3BQ2TUN2VQCVCL5OA4W7F.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/4/OB/UE797FL8JPMDZ27UFM0IFO.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/5/LH/V6N3G2I7QT53NAD6H1AD04.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/5/YN/TCNGOWDVRBFBJ5YZR7VI7S.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/6/BO/BYV4KSLUROOOL33DU1XUWQ.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/6/VI/ESHAVRHFZFA2JDR9ZAQIOE.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/7/WV/FF6LPDZ0FKKLS0GFFG7RY1.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/8/R7/0I68M8T0K5GQDUX5H3A9IO.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/8/YS/FOXTUL6MPN05XEWRDRZ58J.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/A/LM/VRK8UAZR3J2TAKS74SHCUD.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/B/AX/QD7MAQAIBJ16OYN5ZXXIUV.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/B/G0/ISLYFIMFWSWGJY6SPWE06D.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/B/PL/MYXGV0RBWT3ZBX00KVP1IE.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/C/JD/5BHFU0IH6WKMJJHSUWD35N.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/E/LR/47NTFRDFK6M7265A1UYTOW.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/E/SW/R38LZ3VU1OWS6QBVEOT0MO.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalActors__/Maps/TopDownMap/9/AQ/5WMQIL1ED2FF1GZMSJI2EG.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/Maps/TopDownMap/7/DJ/L93A9ROLR8G18PECTHQYXO.uasset", + "G:/TestForNPCAI/ProjectFish/Content/__ExternalObjects__/Maps/TopDownMap/C/WJ/1QDXSIZ1B1FX2WSR16OSS0.uasset" + ] + } + ] +} \ No newline at end of file diff --git a/ProjectFish/Saved/UnrealBuildTool/BuildConfiguration.xml b/ProjectFish/Saved/UnrealBuildTool/BuildConfiguration.xml new file mode 100644 index 0000000..261cb7a --- /dev/null +++ b/ProjectFish/Saved/UnrealBuildTool/BuildConfiguration.xml @@ -0,0 +1,3 @@ + + + diff --git a/ProjectFish/Source/ProjectFish.Target.cs b/ProjectFish/Source/ProjectFish.Target.cs new file mode 100644 index 0000000..3c1a480 --- /dev/null +++ b/ProjectFish/Source/ProjectFish.Target.cs @@ -0,0 +1,15 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +using UnrealBuildTool; +using System.Collections.Generic; + +public class ProjectFishTarget : TargetRules +{ + public ProjectFishTarget(TargetInfo Target) : base(Target) + { + Type = TargetType.Game; + DefaultBuildSettings = BuildSettingsVersion.V5; + IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5; + ExtraModuleNames.Add("ProjectFish"); + } +} diff --git a/ProjectFish/Source/ProjectFish/Definations.cpp b/ProjectFish/Source/ProjectFish/Definations.cpp new file mode 100644 index 0000000..47de135 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Definations.cpp @@ -0,0 +1,4 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "Definations.h" diff --git a/ProjectFish/Source/ProjectFish/Definations.h b/ProjectFish/Source/ProjectFish/Definations.h new file mode 100644 index 0000000..5e379a0 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Definations.h @@ -0,0 +1,141 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "GameplayTagContainer.h" +#include "PawnWithSkill.h" +#include "UObject/Object.h" +#include "Definations.generated.h" + +UENUM(BlueprintType) +enum class ESkillEffectType: uint8 +{ + Damage UMETA(DisplayName = "拉力", ToolTip = "对对方耐力造成损耗"), + Heal UMETA(DisplayName = "恢复", ToolTip = "对我方耐力进行恢复"), + ModifyCooldown UMETA(DisplayName = "技能冷却修改", ToolTip = "使技能冷却时间修改"), + Charge UMETA(DisplayName = "充能", ToolTip = "使技能的冷却进度加快"), + ModifySpeed UMETA(DisplayName = "速度修改", ToolTip = "使技能冷却进度倍率进展 持续指定时间"), + SkillEnduranceRestore UMETA(DisplayName = "技能耐久度恢复", ToolTip = "使技能耐久度恢复"), +}; + +//技能对象类型 +UENUM(BlueprintType) +enum class ESkillTargetType: uint8 +{ + Self UMETA(DisplayName = "自身"), + Other UMETA(DisplayName = "对方"), + AdjacentLeft UMETA(DisplayName = "左侧相邻"), + AdjacentRight UMETA(DisplayName = "右侧相邻"), + AllLeft UMETA(DisplayName = "左侧全部"), + AllRight UMETA(DisplayName = "右侧全部"), +}; +//随机对象类型 +UENUM(BlueprintType) +enum class ERandomTargetType: uint8 +{ + AllSelf UMETA(DisplayName = "我方全部"), + AllOther UMETA(DisplayName = "敌方全部"), +}; + +//技能选择器类型 +UENUM(BlueprintType) +enum class ETargetSelecterType: uint8 +{ + SkillPos UMETA(DisplayName = "根据技能位置选择"), + SkillTag UMETA(DisplayName = "根据技能Tag选择"), + RandomScope UMETA(DisplayName = "随机范围选择"), +}; + +USTRUCT(BlueprintType) +struct FSkillContext +{ + GENERATED_BODY() + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "敌人")) + class USkillManager* SkillManager; + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "自身")) + APawnWithSkill* Self; + +}; + + + +//技能选择器 +USTRUCT(BlueprintType) +struct FSkillTargetSelector +{ + GENERATED_BODY() + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能选择器类型")) + ETargetSelecterType SelecterType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能目标类型", + EditConditionHides, EditCondition = "SelecterType == ETargetSelecterType::SkillPos")) + ESkillTargetType TargetType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "应用的技能tag", + EditConditionHides, EditCondition = "SelecterType == ETargetSelecterType::SkillTag")) + FGameplayTagContainer ApplySkillTags; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "随机目标类型" + , EditConditionHides, EditCondition = "SelecterType == ETargetSelecterType::RandomScope")) + ERandomTargetType RandomType; +}; + +//技能效果 +USTRUCT(BlueprintType) +struct FSkillEffectData +{ + GENERATED_BODY() + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能类型")) + ESkillEffectType EffectType; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能值")) + float EffectValue; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能配置补充,不需要为空")) + FString ParamAddition; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能选择器")) + FSkillTargetSelector SkillSelecter; +}; + + + +USTRUCT(BlueprintType) +struct FSkillData: public FTableRowBase +{ + GENERATED_BODY() + public: + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能名称")) + FText SkillName; + + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (AllowedClasses = "Texture2D", ToolTip = "技能图片")) + FSoftObjectPath SkillTexture; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能CD")) + float CD; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能CD速度")) + float Speed = 1.0f; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能耐久度")) + int32 Endurance; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能Tag")) + FGameplayTag SkillTag; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "背包占用")) + int32 WeightLimit; + + UPROPERTY(EditAnywhere, BlueprintReadWrite, meta = (ToolTip = "技能效果组")) + TArray SkillEffects; +}; +/** + * + */ +UCLASS() +class PROJECTFISH_API UDefinations : public UObject +{ + GENERATED_BODY() + +}; diff --git a/ProjectFish/Source/ProjectFish/PawnWithSkill.cpp b/ProjectFish/Source/ProjectFish/PawnWithSkill.cpp new file mode 100644 index 0000000..d787302 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/PawnWithSkill.cpp @@ -0,0 +1,37 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "PawnWithSkill.h" + + +// Sets default values +APawnWithSkill::APawnWithSkill() +{ + // Set this pawn to call Tick() every frame. You can turn this off to improve performance if you don't need it. + PrimaryActorTick.bCanEverTick = true; +} + +void APawnWithSkill::ApplyyEndurance_Implementation(float enduranceOffset) +{ + CurrentEndurance += enduranceOffset;; +} + +// Called when the game starts or when spawned +void APawnWithSkill::BeginPlay() +{ + Super::BeginPlay(); + CurrentEndurance = MaxEndurance; +} + +// Called every frame +void APawnWithSkill::Tick(float DeltaTime) +{ + Super::Tick(DeltaTime); +} + +// Called to bind functionality to input +void APawnWithSkill::SetupPlayerInputComponent(UInputComponent* PlayerInputComponent) +{ + Super::SetupPlayerInputComponent(PlayerInputComponent); +} + diff --git a/ProjectFish/Source/ProjectFish/PawnWithSkill.h b/ProjectFish/Source/ProjectFish/PawnWithSkill.h new file mode 100644 index 0000000..89f78d9 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/PawnWithSkill.h @@ -0,0 +1,35 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "GameFramework/Pawn.h" +#include "PawnWithSkill.generated.h" + +UCLASS() +class PROJECTFISH_API APawnWithSkill : public APawn +{ + GENERATED_BODY() + +public: + // Sets default values for this pawn's properties + APawnWithSkill(); + UFUNCTION(BlueprintCallable, BlueprintNativeEvent) + void ApplyyEndurance(float enduranceOffset); +protected: + // Called when the game starts or when spawned + virtual void BeginPlay() override; + +public: + // Called every frame + virtual void Tick(float DeltaTime) override; + + // Called to bind functionality to input + virtual void SetupPlayerInputComponent(class UInputComponent* PlayerInputComponent) override; + + UPROPERTY(BlueprintReadWrite, meta = (ToolTip = "当前耐久度")) + float CurrentEndurance; + + UPROPERTY(BlueprintReadWrite, EditAnywhere, Category= Default, meta = (DisplayPriority = 0, ToolTip = "最大耐久度")) + float MaxEndurance; +}; diff --git a/ProjectFish/Source/ProjectFish/ProjectFish.Build.cs b/ProjectFish/Source/ProjectFish/ProjectFish.Build.cs new file mode 100644 index 0000000..144f1bd --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFish.Build.cs @@ -0,0 +1,13 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +using UnrealBuildTool; + +public class ProjectFish : ModuleRules +{ + public ProjectFish(ReadOnlyTargetRules Target) : base(Target) + { + PCHUsage = PCHUsageMode.UseExplicitOrSharedPCHs; + + PublicDependencyModuleNames.AddRange(new string[] { "Core", "CoreUObject", "Engine", "InputCore", "NavigationSystem", "AIModule", "Niagara", "EnhancedInput", "GameplayTags" }); + } +} diff --git a/ProjectFish/Source/ProjectFish/ProjectFish.cpp b/ProjectFish/Source/ProjectFish/ProjectFish.cpp new file mode 100644 index 0000000..fb19e5d --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFish.cpp @@ -0,0 +1,9 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#include "ProjectFish.h" +#include "Modules/ModuleManager.h" + +IMPLEMENT_PRIMARY_GAME_MODULE( FDefaultGameModuleImpl, ProjectFish, "ProjectFish" ); + +DEFINE_LOG_CATEGORY(LogProjectFish) + \ No newline at end of file diff --git a/ProjectFish/Source/ProjectFish/ProjectFish.h b/ProjectFish/Source/ProjectFish/ProjectFish.h new file mode 100644 index 0000000..be86297 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFish.h @@ -0,0 +1,7 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include "CoreMinimal.h" + +DECLARE_LOG_CATEGORY_EXTERN(LogProjectFish, Log, All); diff --git a/ProjectFish/Source/ProjectFish/ProjectFishCharacter.cpp b/ProjectFish/Source/ProjectFish/ProjectFishCharacter.cpp new file mode 100644 index 0000000..0bc84b9 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishCharacter.cpp @@ -0,0 +1,51 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#include "ProjectFishCharacter.h" +#include "UObject/ConstructorHelpers.h" +#include "Camera/CameraComponent.h" +#include "Components/DecalComponent.h" +#include "Components/CapsuleComponent.h" +#include "GameFramework/CharacterMovementComponent.h" +#include "GameFramework/PlayerController.h" +#include "GameFramework/SpringArmComponent.h" +#include "Materials/Material.h" +#include "Engine/World.h" + +AProjectFishCharacter::AProjectFishCharacter() +{ + // Set size for player capsule + GetCapsuleComponent()->InitCapsuleSize(42.f, 96.0f); + + // Don't rotate character to camera direction + bUseControllerRotationPitch = false; + bUseControllerRotationYaw = false; + bUseControllerRotationRoll = false; + + // Configure character movement + GetCharacterMovement()->bOrientRotationToMovement = true; // Rotate character to moving direction + GetCharacterMovement()->RotationRate = FRotator(0.f, 640.f, 0.f); + GetCharacterMovement()->bConstrainToPlane = true; + GetCharacterMovement()->bSnapToPlaneAtStart = true; + + // Create a camera boom... + CameraBoom = CreateDefaultSubobject(TEXT("CameraBoom")); + CameraBoom->SetupAttachment(RootComponent); + CameraBoom->SetUsingAbsoluteRotation(true); // Don't want arm to rotate when character does + CameraBoom->TargetArmLength = 800.f; + CameraBoom->SetRelativeRotation(FRotator(-60.f, 0.f, 0.f)); + CameraBoom->bDoCollisionTest = false; // Don't want to pull camera in when it collides with level + + // Create a camera... + TopDownCameraComponent = CreateDefaultSubobject(TEXT("TopDownCamera")); + TopDownCameraComponent->SetupAttachment(CameraBoom, USpringArmComponent::SocketName); + TopDownCameraComponent->bUsePawnControlRotation = false; // Camera does not rotate relative to arm + + // Activate ticking in order to update the cursor every frame. + PrimaryActorTick.bCanEverTick = true; + PrimaryActorTick.bStartWithTickEnabled = true; +} + +void AProjectFishCharacter::Tick(float DeltaSeconds) +{ + Super::Tick(DeltaSeconds); +} diff --git a/ProjectFish/Source/ProjectFish/ProjectFishCharacter.h b/ProjectFish/Source/ProjectFish/ProjectFishCharacter.h new file mode 100644 index 0000000..6d7d6f9 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishCharacter.h @@ -0,0 +1,34 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include "CoreMinimal.h" +#include "GameFramework/Character.h" +#include "ProjectFishCharacter.generated.h" + +UCLASS(Blueprintable) +class AProjectFishCharacter : public ACharacter +{ + GENERATED_BODY() + +public: + AProjectFishCharacter(); + + // Called every frame. + virtual void Tick(float DeltaSeconds) override; + + /** Returns TopDownCameraComponent subobject **/ + FORCEINLINE class UCameraComponent* GetTopDownCameraComponent() const { return TopDownCameraComponent; } + /** Returns CameraBoom subobject **/ + FORCEINLINE class USpringArmComponent* GetCameraBoom() const { return CameraBoom; } + +private: + /** Top down camera */ + UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera, meta = (AllowPrivateAccess = "true")) + class UCameraComponent* TopDownCameraComponent; + + /** Camera boom positioning the camera above the character */ + UPROPERTY(VisibleAnywhere, BlueprintReadOnly, Category = Camera, meta = (AllowPrivateAccess = "true")) + class USpringArmComponent* CameraBoom; +}; + diff --git a/ProjectFish/Source/ProjectFish/ProjectFishGameMode.cpp b/ProjectFish/Source/ProjectFish/ProjectFishGameMode.cpp new file mode 100644 index 0000000..eaa7012 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishGameMode.cpp @@ -0,0 +1,26 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#include "ProjectFishGameMode.h" +#include "ProjectFishPlayerController.h" +#include "ProjectFishCharacter.h" +#include "UObject/ConstructorHelpers.h" + +AProjectFishGameMode::AProjectFishGameMode() +{ + // use our custom PlayerController class + PlayerControllerClass = AProjectFishPlayerController::StaticClass(); + + // set default pawn class to our Blueprinted character + static ConstructorHelpers::FClassFinder PlayerPawnBPClass(TEXT("/Game/TopDown/Blueprints/BP_TopDownCharacter")); + if (PlayerPawnBPClass.Class != nullptr) + { + DefaultPawnClass = PlayerPawnBPClass.Class; + } + + // set default controller to our Blueprinted controller + static ConstructorHelpers::FClassFinder PlayerControllerBPClass(TEXT("/Game/TopDown/Blueprints/BP_TopDownPlayerController")); + if(PlayerControllerBPClass.Class != NULL) + { + PlayerControllerClass = PlayerControllerBPClass.Class; + } +} \ No newline at end of file diff --git a/ProjectFish/Source/ProjectFish/ProjectFishGameMode.h b/ProjectFish/Source/ProjectFish/ProjectFishGameMode.h new file mode 100644 index 0000000..6c2af1a --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishGameMode.h @@ -0,0 +1,19 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include "CoreMinimal.h" +#include "GameFramework/GameModeBase.h" +#include "ProjectFishGameMode.generated.h" + +UCLASS(minimalapi) +class AProjectFishGameMode : public AGameModeBase +{ + GENERATED_BODY() + +public: + AProjectFishGameMode(); +}; + + + diff --git a/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.cpp b/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.cpp new file mode 100644 index 0000000..83a6a75 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.cpp @@ -0,0 +1,125 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#include "ProjectFishPlayerController.h" +#include "GameFramework/Pawn.h" +#include "Blueprint/AIBlueprintHelperLibrary.h" +#include "NiagaraSystem.h" +#include "NiagaraFunctionLibrary.h" +#include "ProjectFishCharacter.h" +#include "Engine/World.h" +#include "EnhancedInputComponent.h" +#include "InputActionValue.h" +#include "EnhancedInputSubsystems.h" +#include "Engine/LocalPlayer.h" + +DEFINE_LOG_CATEGORY(LogTemplateCharacter); + +AProjectFishPlayerController::AProjectFishPlayerController() +{ + bShowMouseCursor = true; + DefaultMouseCursor = EMouseCursor::Default; + CachedDestination = FVector::ZeroVector; + FollowTime = 0.f; +} + +void AProjectFishPlayerController::BeginPlay() +{ + // Call the base class + Super::BeginPlay(); +} + +void AProjectFishPlayerController::SetupInputComponent() +{ + // set up gameplay key bindings + Super::SetupInputComponent(); + + // Add Input Mapping Context + if (UEnhancedInputLocalPlayerSubsystem* Subsystem = ULocalPlayer::GetSubsystem(GetLocalPlayer())) + { + Subsystem->AddMappingContext(DefaultMappingContext, 0); + } + + // Set up action bindings + if (UEnhancedInputComponent* EnhancedInputComponent = Cast(InputComponent)) + { + // Setup mouse input events + EnhancedInputComponent->BindAction(SetDestinationClickAction, ETriggerEvent::Started, this, &AProjectFishPlayerController::OnInputStarted); + EnhancedInputComponent->BindAction(SetDestinationClickAction, ETriggerEvent::Triggered, this, &AProjectFishPlayerController::OnSetDestinationTriggered); + EnhancedInputComponent->BindAction(SetDestinationClickAction, ETriggerEvent::Completed, this, &AProjectFishPlayerController::OnSetDestinationReleased); + EnhancedInputComponent->BindAction(SetDestinationClickAction, ETriggerEvent::Canceled, this, &AProjectFishPlayerController::OnSetDestinationReleased); + + // Setup touch input events + EnhancedInputComponent->BindAction(SetDestinationTouchAction, ETriggerEvent::Started, this, &AProjectFishPlayerController::OnInputStarted); + EnhancedInputComponent->BindAction(SetDestinationTouchAction, ETriggerEvent::Triggered, this, &AProjectFishPlayerController::OnTouchTriggered); + EnhancedInputComponent->BindAction(SetDestinationTouchAction, ETriggerEvent::Completed, this, &AProjectFishPlayerController::OnTouchReleased); + EnhancedInputComponent->BindAction(SetDestinationTouchAction, ETriggerEvent::Canceled, this, &AProjectFishPlayerController::OnTouchReleased); + } + else + { + UE_LOG(LogTemplateCharacter, Error, TEXT("'%s' Failed to find an Enhanced Input Component! This template is built to use the Enhanced Input system. If you intend to use the legacy system, then you will need to update this C++ file."), *GetNameSafe(this)); + } +} + +void AProjectFishPlayerController::OnInputStarted() +{ + StopMovement(); +} + +// Triggered every frame when the input is held down +void AProjectFishPlayerController::OnSetDestinationTriggered() +{ + // We flag that the input is being pressed + FollowTime += GetWorld()->GetDeltaSeconds(); + + // We look for the location in the world where the player has pressed the input + FHitResult Hit; + bool bHitSuccessful = false; + if (bIsTouch) + { + bHitSuccessful = GetHitResultUnderFinger(ETouchIndex::Touch1, ECollisionChannel::ECC_Visibility, true, Hit); + } + else + { + bHitSuccessful = GetHitResultUnderCursor(ECollisionChannel::ECC_Visibility, true, Hit); + } + + // If we hit a surface, cache the location + if (bHitSuccessful) + { + CachedDestination = Hit.Location; + } + + // Move towards mouse pointer or touch + APawn* ControlledPawn = GetPawn(); + if (ControlledPawn != nullptr) + { + FVector WorldDirection = (CachedDestination - ControlledPawn->GetActorLocation()).GetSafeNormal(); + ControlledPawn->AddMovementInput(WorldDirection, 1.0, false); + } +} + +void AProjectFishPlayerController::OnSetDestinationReleased() +{ + // If it was a short press + if (FollowTime <= ShortPressThreshold) + { + // We move there and spawn some particles + UAIBlueprintHelperLibrary::SimpleMoveToLocation(this, CachedDestination); + UNiagaraFunctionLibrary::SpawnSystemAtLocation(this, FXCursor, CachedDestination, FRotator::ZeroRotator, FVector(1.f, 1.f, 1.f), true, true, ENCPoolMethod::None, true); + } + + FollowTime = 0.f; +} + +// Triggered every frame when the input is held down +void AProjectFishPlayerController::OnTouchTriggered() +{ + bIsTouch = true; + OnSetDestinationTriggered(); +} + +void AProjectFishPlayerController::OnTouchReleased() +{ + bIsTouch = false; + OnSetDestinationReleased(); +} diff --git a/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.h b/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.h new file mode 100644 index 0000000..cfd76e8 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/ProjectFishPlayerController.h @@ -0,0 +1,68 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +#pragma once + +#include "CoreMinimal.h" +#include "Templates/SubclassOf.h" +#include "GameFramework/PlayerController.h" +#include "ProjectFishPlayerController.generated.h" + +/** Forward declaration to improve compiling times */ +class UNiagaraSystem; +class UInputMappingContext; +class UInputAction; + +DECLARE_LOG_CATEGORY_EXTERN(LogTemplateCharacter, Log, All); + +UCLASS() +class AProjectFishPlayerController : public APlayerController +{ + GENERATED_BODY() + +public: + AProjectFishPlayerController(); + + /** Time Threshold to know if it was a short press */ + UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input) + float ShortPressThreshold; + + /** FX Class that we will spawn when clicking */ + UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = Input) + UNiagaraSystem* FXCursor; + + /** MappingContext */ + UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=Input, meta=(AllowPrivateAccess = "true")) + UInputMappingContext* DefaultMappingContext; + + /** Jump Input Action */ + UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=Input, meta=(AllowPrivateAccess = "true")) + UInputAction* SetDestinationClickAction; + + /** Jump Input Action */ + UPROPERTY(EditAnywhere, BlueprintReadOnly, Category=Input, meta=(AllowPrivateAccess = "true")) + UInputAction* SetDestinationTouchAction; + +protected: + /** True if the controlled character should navigate to the mouse cursor. */ + uint32 bMoveToMouseCursor : 1; + + virtual void SetupInputComponent() override; + + // To add mapping context + virtual void BeginPlay(); + + /** Input handlers for SetDestination action. */ + void OnInputStarted(); + void OnSetDestinationTriggered(); + void OnSetDestinationReleased(); + void OnTouchTriggered(); + void OnTouchReleased(); + +private: + FVector CachedDestination; + + bool bIsTouch; // Is it a touch device + float FollowTime; // For how long it has been pressed +}; + + diff --git a/ProjectFish/Source/ProjectFish/Skill/Skill.cpp b/ProjectFish/Source/ProjectFish/Skill/Skill.cpp new file mode 100644 index 0000000..9859c17 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/Skill.cpp @@ -0,0 +1,108 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "Skill.h" + +#include "SkillEffects/SkillEffect_Charge.h" +#include "SkillEffects/SkillEffect_Damage.h" +#include "SkillEffects/SkillEffect_Heal.h" +#include "SkillEffects/SkillEffect_ModifyCD.h" +#include "SkillEffects/SkillEffect_ModifySpeed.h" +#include "SkillEffects/SkillEffect_SER.h" + +void USkill::InitSkill(APawnWithSkill* owner, USkillManager* skillManager, FSkillData skillData) +{ + this->Owner = owner; + this->SkillManager = skillManager; + this->SkillData = skillData; + this->RemainingTime = SkillData.CD; + this->RemainingEndurance = SkillData.Endurance; + for (auto effectData: skillData.SkillEffects) + { + USkillEffect* skillEffect = nullptr ; + switch (effectData.EffectType) + { + case ESkillEffectType::Damage: + skillEffect = NewObject(this, USkillEffect_Damage::StaticClass()); + break; + case ESkillEffectType::Heal: + skillEffect = NewObject(this, USkillEffect_Heal::StaticClass()); + break; + case ESkillEffectType::ModifyCooldown: + skillEffect = NewObject(this, USkillEffect_ModifyCD::StaticClass()); + break; + case ESkillEffectType::Charge: + skillEffect = NewObject(this, USkillEffect_Charge::StaticClass()); + break; + case ESkillEffectType::ModifySpeed: + skillEffect = NewObject(this, USkillEffect_ModifySpeed::StaticClass()); + break; + case ESkillEffectType::SkillEnduranceRestore: + skillEffect = NewObject(this, USkillEffect_SER::StaticClass()); + break; + } + if (IsValid(skillEffect)) + { + skillEffect->InitSkillEffect(this, effectData); + this->SkillEffects.Add(skillEffect); + } + + } +} + +void USkill::TickSkill(float deltaTime) +{ + RemainingTime -= deltaTime * SkillData.Speed; + if (RemainingTime <= 0 && RemainingEndurance >0) + { + RemainingTime = 0; + --RemainingEndurance; + FSkillContext context; + context.Self = Owner; + context.SkillManager = SkillManager; + for (auto Effect: SkillEffects) + { + Effect->Execute(context); + } + if (RemainingEndurance > 0) + RemainingTime = SkillData.CD; + } + if (RemainingEndurance == 0) + { + for (auto Effect: SkillEffects) + { + Effect->EffectEnded(); + } + } +} + +FString USkill::GetSkillName() const +{ + return SkillData.SkillName.ToString();; +} + +FSkillData& USkill::GetSkillData() +{ + return SkillData; +} + +void USkill::SetSkillData(FSkillData data) +{ + SkillData = data; + OnSkillUpdate.Broadcast(); +} + +void USkill::ApplyRemainingTimeOffset(int timeOffset) +{ + this->RemainingTime += timeOffset; +} + +void USkill::ApplyRemainingRemainingEnduranceOffset(int Offset) +{ + this->RemainingEndurance = FMath::Max(this->RemainingEndurance + Offset, SkillData.Endurance); +} + +class APawnWithSkill* USkill::GetOwner() +{ + return Owner; +} diff --git a/ProjectFish/Source/ProjectFish/Skill/Skill.h b/ProjectFish/Source/ProjectFish/Skill/Skill.h new file mode 100644 index 0000000..f17fdd5 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/Skill.h @@ -0,0 +1,47 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" + +#include "SkillEffect.h" +#include "ProjectFish/Definations.h" +#include "UObject/Object.h" +#include "Skill.generated.h" + +DECLARE_DYNAMIC_MULTICAST_DELEGATE(FSkillUpdate); + +/** + * + */ +UCLASS(BlueprintType) +class PROJECTFISH_API USkill : public UObject +{ + GENERATED_BODY() +public: + void InitSkill(class APawnWithSkill* owner, USkillManager* skillManager, FSkillData SkillData); + void TickSkill(float deltaTime); + + FString GetSkillName() const; + class APawnWithSkill* GetOwner(); + + FSkillData& GetSkillData(); + void SetSkillData( FSkillData SkillData); + void ApplyRemainingTimeOffset(int timeOffset); + void ApplyRemainingRemainingEnduranceOffset(int Offset); +protected: + UPROPERTY(BlueprintAssignable) + FSkillUpdate OnSkillUpdate; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "技能效果")) + FSkillData SkillData; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "技能效果")) + USkillManager* SkillManager; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "技能效果")) + TArray SkillEffects; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "技能所有者")) + class APawnWithSkill* Owner; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "剩余冷却时间")) + float RemainingTime; + UPROPERTY(BlueprintReadWrite, EditAnywhere, meta = (ToolTip = "剩余耐久度")) + int32 RemainingEndurance; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffect.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffect.cpp new file mode 100644 index 0000000..2353f08 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffect.cpp @@ -0,0 +1,171 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect.h" + +#include "AsyncTreeDifferences.h" +#include "Skill.h" +#include "SkillManager.h" + + +void USkillEffect::InitSkillEffect(class USkill* skill, FSkillEffectData data) +{ + this->OwnerSkill = skill; + this->effectData = data; +} + +// Add default functionality here for any ISkillEffect functions that are not pure virtual. +void USkillEffect::Execute(const FSkillContext& context) +{ + TArray targets= GetApplyTargets(context); + FString strTargets; + for (auto target: targets) + { + strTargets += "|" + target->GetName(); + } + const UEnum* EnumPtr = StaticEnum(); + FString type = EnumPtr->GetNameStringByValue(static_cast(effectData.EffectType)) ; + UE_LOG(LogTemp, Log, TEXT("针对目标 %s 释放技能效果%s"), *strTargets, *type); +} + +void USkillEffect::EffectEnded() +{ +} + +TArray USkillEffect::GetApplyTargets(const FSkillContext& context) +{ + TArray result; + switch (effectData.SkillSelecter.SelecterType) + { + case ETargetSelecterType::SkillPos: + { + GetEffectTargetsByTargetType(context, result); + + break;; + } + case ETargetSelecterType::SkillTag: + { + //根据Tag 决定应用对象 + for (auto skill: context.SkillManager->GetAllSkills()) + { + + if (effectData.SkillSelecter.ApplySkillTags.HasTag(skill->GetSkillData().SkillTag)) + { + result.Add(skill); + } + } + break;; + } + case ETargetSelecterType::RandomScope: + { + //应用到随机技能 + switch (effectData.SkillSelecter.RandomType) + { + case ERandomTargetType::AllSelf: + { + //所有我方的技能 + for (auto skill: context.SkillManager->GetAllSkills()) + { + if (OwnerSkill->GetOwner() == skill->GetOwner()) + { + result.Add(skill); + } + } + break; + } + case ERandomTargetType::AllOther: + { + //所有地方的技能 + for (auto skill: context.SkillManager->GetAllSkills()) + { + if (OwnerSkill->GetOwner() != skill->GetOwner()) + { + result.Add(skill); + } + } + break; + } + } + break; + } + + } + return result; +} + +FString USkillEffect::GetSkillEffectDes() +{ + return FString(); +} + +void USkillEffect::GetEffectTargetsByTargetType(const FSkillContext& context, TArray& result) +{ + //根据位置决定应用对象 + ESkillTargetType targetType = effectData.SkillSelecter.TargetType; + switch (targetType) + { + case ESkillTargetType::Self: + { + result.Add(OwnerSkill->GetOwner()); + break; + } + case ESkillTargetType::Other: + { + for (auto pawn: context.SkillManager->GetAllPawns()) + { + if (pawn != OwnerSkill->GetOwner()) + { + result.Add(pawn); + } + } + break; + } + case ESkillTargetType::AdjacentLeft: + { + //技能左侧的技能 + TArray< USkill*> allSkills = context.SkillManager->GetAllSkills(); + int32 index = allSkills.Find(OwnerSkill); + if ((index - 1) >= 0) + { + result.Add(allSkills[index - 1]); + } + break;; + } + case ESkillTargetType::AdjacentRight: + { + //技能右侧的技能 + TArray< USkill*> allSkills = context.SkillManager->GetAllSkills(); + int32 index = allSkills.Find(OwnerSkill); + if ((index + 1) < allSkills.Num()) + { + result.Add(allSkills[index + 1]); + } + break;; + } + case ESkillTargetType::AllLeft: + { + //所有当前技能左侧的技能 + TArray< USkill*> allSkills = context.SkillManager->GetAllSkills(); + int32 index = allSkills.Find(OwnerSkill); + for (int i = 0; i < index; ++i) + { + if (allSkills[i]->GetOwner() == OwnerSkill->GetOwner()) + result.Add(allSkills[i]); + } + break; + } + + case ESkillTargetType::AllRight: + { + //所有当前技能右侧的技能 + TArray< USkill*> allSkills = context.SkillManager->GetAllSkills(); + int32 index = allSkills.Find(OwnerSkill); + for (int i = index; i < allSkills.Num(); ++i) + { + if (allSkills[i]->GetOwner() == OwnerSkill->GetOwner()) + result.Add(allSkills[i]); + } + break; + } + } +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffect.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffect.h new file mode 100644 index 0000000..548024b --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffect.h @@ -0,0 +1,34 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "UObject/Interface.h" +#include "SkillEffect.generated.h" + + + +// This class does not need to be modified. +UCLASS(BlueprintType) +class USkillEffect : public UObject +{ + GENERATED_BODY() + +public: + void InitSkillEffect(class USkill* skill, FSkillEffectData data); + virtual void Execute(const FSkillContext& context) ; + virtual void EffectEnded(); + TArray GetApplyTargets(const FSkillContext& context); + + UFUNCTION(BlueprintPure) + virtual FString GetSkillEffectDes(); + +private: + void GetEffectTargetsByTargetType(const FSkillContext& context, TArray& result); +protected: + UPROPERTY() + class USkill* OwnerSkill; + FSkillEffectData effectData; +}; + diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.cpp new file mode 100644 index 0000000..25acf79 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.cpp @@ -0,0 +1,35 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_Charge.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "Kismet/KismetStringLibrary.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_Charge::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(USkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a skill"), *(OwnerSkill->GetSkillName())); + } + else + { + //修改技能的冷却时间 + USkill* skill = Cast(target); + skill->ApplyRemainingTimeOffset(effectData.EffectValue); + } + } +} + + + +FString USkillEffect_Charge::GetSkillEffectDes() +{ + return FString::Printf(TEXT("使指定位置的技能冷却进度加快 %d 秒"), (int32)(effectData.EffectValue)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.h new file mode 100644 index 0000000..c1fe6d9 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Charge.h @@ -0,0 +1,23 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_Charge.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_Charge : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + FString GetSkillEffectDes() override; +private: + FTimerHandle TimerHandle; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.cpp new file mode 100644 index 0000000..3b0d005 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.cpp @@ -0,0 +1,35 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_Damage.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_Damage::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(APawnWithSkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a pawn"), *(OwnerSkill->GetSkillName())); + } + else + { + //对方消耗耐力 + if (target != OwnerSkill->GetOwner()) + { + Cast(target)->ApplyyEndurance(-effectData.EffectValue); + } + + } + } +} + +FString USkillEffect_Damage::GetSkillEffectDes() +{ + return FString::Printf(TEXT("对对方耐力造成 %d点损耗"), (int32)(effectData.EffectValue)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.h new file mode 100644 index 0000000..5fcf98d --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Damage.h @@ -0,0 +1,21 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_Damage.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_Damage : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + FString GetSkillEffectDes() override; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.cpp new file mode 100644 index 0000000..2bbf653 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.cpp @@ -0,0 +1,35 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_Heal.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_Heal::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(APawnWithSkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a pawn"), *(OwnerSkill->GetSkillName())); + } + else + { + //我方恢复耐力 + if (target == OwnerSkill->GetOwner()) + { + Cast(target)->ApplyyEndurance(effectData.EffectValue); + } + + } + } +} + +FString USkillEffect_Heal::GetSkillEffectDes() +{ + return FString::Printf(TEXT("对我方耐力造成 %d点恢复"), (int32)(effectData.EffectValue)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.h new file mode 100644 index 0000000..317cb2d --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_Heal.h @@ -0,0 +1,21 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_Heal.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_Heal : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + FString GetSkillEffectDes() override; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.cpp new file mode 100644 index 0000000..e2eea7b --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.cpp @@ -0,0 +1,34 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_ModifyCD.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_ModifyCD::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(USkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a skill"), *(OwnerSkill->GetSkillName())); + } + else + { + //修改技能的冷却时间 + USkill* skill = Cast(target); + skill->GetSkillData().CD = FMath::Max(1, skill->GetSkillData().CD + effectData.EffectValue); + skill->ApplyRemainingTimeOffset(effectData.EffectValue); + + } + } +} + +FString USkillEffect_ModifyCD::GetSkillEffectDes() +{ + return FString::Printf(TEXT("对指定位置的技能冷却时间在正常战斗中增加 %d秒"),(int32)(effectData.EffectValue)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.h new file mode 100644 index 0000000..33080fb --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifyCD.h @@ -0,0 +1,21 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_ModifyCD.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_ModifyCD : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + FString GetSkillEffectDes() override; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.cpp new file mode 100644 index 0000000..91626b4 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.cpp @@ -0,0 +1,48 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_ModifySpeed.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "Kismet/KismetStringLibrary.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_ModifySpeed::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(USkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a skill"), *(OwnerSkill->GetSkillName())); + } + else + { + //修改技能的冷却倍率 + USkill* skill = Cast(target); + skill->GetSkillData().Speed = effectData.EffectValue; + //延时结束效果 + GetWorld()->GetTimerManager().SetTimer(TimerHandle, [&]() + { + + UE_LOG(LogTemp, Warning, TEXT("取消CD充能效果!")); + skill->GetSkillData().Speed = 1; + + }, UKismetStringLibrary::Conv_StringToInt(effectData.ParamAddition), false); // 单次触发 + + } + } +} + +void USkillEffect_ModifySpeed::EffectEnded() +{ + Super::EffectEnded(); + //GetWorld()->GetTimerManager().ClearTimer(TimerHandle); +} + +FString USkillEffect_ModifySpeed::GetSkillEffectDes() +{ + return FString::Printf(TEXT("对指定位置的技能冷却进度以 %f 倍率进展,持续 %d 秒"), effectData.EffectValue, UKismetStringLibrary::Conv_StringToInt(effectData.ParamAddition)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.h new file mode 100644 index 0000000..7f549c0 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_ModifySpeed.h @@ -0,0 +1,24 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_ModifySpeed.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_ModifySpeed : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + void EffectEnded() override; + FString GetSkillEffectDes() override; +private: + FTimerHandle TimerHandle; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.cpp new file mode 100644 index 0000000..11327fd --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.cpp @@ -0,0 +1,35 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillEffect_SER.h" + +#include "Chaos/Deformable/MuscleActivationConstraints.h" +#include "Kismet/KismetStringLibrary.h" +#include "ProjectFish/PawnWithSkill.h" +#include "ProjectFish/Skill/Skill.h" + +void USkillEffect_SER::Execute(const FSkillContext& context) +{ + Super::Execute(context); + TArray targets = GetApplyTargets(context); + for (auto target: targets) + { + if (!target->GetClass()->IsChildOf(USkill::StaticClass())) + { + UE_LOG(LogTemp, Error, TEXT("skill %s apply target is not a skill"), *(OwnerSkill->GetSkillName())); + } + else + { + //修改技能的冷却时间 + USkill* skill = Cast(target); + skill->ApplyRemainingRemainingEnduranceOffset(effectData.EffectValue); + } + } +} + + + +FString USkillEffect_SER::GetSkillEffectDes() +{ + return FString::Printf(TEXT("使指定位置的技能耐久度回复 %d点耐久度 "), (int32)(effectData.EffectValue)); +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.h b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.h new file mode 100644 index 0000000..9fc1a1c --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillEffects/SkillEffect_SER.h @@ -0,0 +1,23 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" +#include "ProjectFish/Skill/SkillEffect.h" +#include "UObject/Object.h" +#include "SkillEffect_SER.generated.h" + +/** + * + */ +UCLASS() +class PROJECTFISH_API USkillEffect_SER : public USkillEffect +{ + GENERATED_BODY() +public: + void Execute(const FSkillContext& context) override; + FString GetSkillEffectDes() override; +private: + FTimerHandle TimerHandle; +}; diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillManager.cpp b/ProjectFish/Source/ProjectFish/Skill/SkillManager.cpp new file mode 100644 index 0000000..1b8bef9 --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillManager.cpp @@ -0,0 +1,53 @@ +// Fill out your copyright notice in the Description page of Project Settings. + + +#include "SkillManager.h" +#include "Skill.h" + +void USkillManager::Tick(float DeltaTime) +{ + for (auto Skill : Skills) + { + Skill->TickSkill(DeltaTime); + } +} + +bool USkillManager::IsTickable() const +{ + return !bGameEnd; +} + +TStatId USkillManager::GetStatId() const +{ + return Super::GetStatID(); +} + +void USkillManager::InitPawns(TArray Pawns) +{ + this->SkillPawns = Pawns; +} + +USkill* USkillManager::CreateSkill(FSkillData data, APawnWithSkill* Pawn) +{ + USkill* skill = NewObject(this); + skill->InitSkill(Pawn, this, data); + Skills.Add(skill); + return skill; +} + + + +void USkillManager::RemoveSkill(USkill* Skill) +{ + Skills.Remove(Skill); +} + +TArray USkillManager::GetAllPawns() +{ + return SkillPawns; +} + +TArray< USkill*> USkillManager::GetAllSkills() +{ + return Skills; +} diff --git a/ProjectFish/Source/ProjectFish/Skill/SkillManager.h b/ProjectFish/Source/ProjectFish/Skill/SkillManager.h new file mode 100644 index 0000000..0f19f5a --- /dev/null +++ b/ProjectFish/Source/ProjectFish/Skill/SkillManager.h @@ -0,0 +1,44 @@ +// Fill out your copyright notice in the Description page of Project Settings. + +#pragma once + +#include "CoreMinimal.h" +#include "ProjectFish/Definations.h" + +#include "UObject/Object.h" +#include "SkillManager.generated.h" + +/** + * + */ +UCLASS(BlueprintType) +class PROJECTFISH_API USkillManager : public UObject, public FTickableGameObject +{ + GENERATED_BODY() +public: + virtual void Tick(float DeltaTime) override; + virtual bool IsTickable() const override; + virtual TStatId GetStatId() const override; + + UFUNCTION(BlueprintCallable) + void InitPawns(TArray Pawns); + UFUNCTION(BlueprintCallable) + USkill* CreateSkill(FSkillData data, APawnWithSkill* Pawn); + + + UFUNCTION(BlueprintCallable) + void RemoveSkill(class USkill *Skill); + + UFUNCTION(BlueprintCallable) + TArray GetAllPawns(); + + UFUNCTION(BlueprintCallable) + TArray GetAllSkills(); +protected: + UPROPERTY(BlueprintReadWrite) + TArray Skills; + UPROPERTY(BlueprintReadWrite) + TArray SkillPawns; + UPROPERTY(BlueprintReadWrite) + bool bGameEnd = false; +}; diff --git a/ProjectFish/Source/ProjectFishEditor.Target.cs b/ProjectFish/Source/ProjectFishEditor.Target.cs new file mode 100644 index 0000000..d69b068 --- /dev/null +++ b/ProjectFish/Source/ProjectFishEditor.Target.cs @@ -0,0 +1,15 @@ +// Copyright Epic Games, Inc. All Rights Reserved. + +using UnrealBuildTool; +using System.Collections.Generic; + +public class ProjectFishEditorTarget : TargetRules +{ + public ProjectFishEditorTarget(TargetInfo Target) : base(Target) + { + Type = TargetType.Editor; + DefaultBuildSettings = BuildSettingsVersion.V5; + IncludeOrderVersion = EngineIncludeOrderVersion.Unreal5_5; + ExtraModuleNames.Add("ProjectFish"); + } +}